/**=====================
     landing page css start
==========================**/
:root {
  --theme-color: #C5D696;
  --new-blc: #001D3C;
  --blueviolet: #8000CB;
}

.theme-color2 {
  --theme-color: #094380;
}

.theme-color3 {
  --theme-color: #7520dd;
}

.theme-color4 {
  --theme-color: #e87316;
}

.theme-color5 {
  --theme-color: #df4246;
}

.theme-color6 {
  --theme-color: #51983c;
}

.text-color {
  color: #6d6d6d;
}

/**=====================
    breakpoint mixins css start
==========================**/
body {
  font-family: Rubik, sans-serif, sans-serif;
  position: relative;
  font-size: 14px;
  color: #232323;
  margin: 0;
  background-color: #fff;
}
body.landing-body h2 {
  font-size: calc(24px + 8 * (100vw - 320px) / 1600);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  display: inline-block;
  font-size: 14px;
}

p {
  font-size: 14px;
  line-height: 18px;
}

a {
  color: var(--theme-color);
  transition: 0.5s ease;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  transition: 0.5s ease;
}
a:focus {
  outline: none;
}

.fz-16 {
  font-size: 16px;
}

button:focus {
  outline: none;
}

.btn-close:focus {
  box-shadow: none;
}

:focus {
  outline: none;
}

.form-control {
  background-color: #fff;
}
.form-control:focus {
  box-shadow: none;
}

h1 {
  font-size: calc(40px + 30 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  margin: 0;
}

h2 {
  font-size: calc(22px + 6 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  margin: 0;
}

h3 {
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

h4 {
  font-size: calc(17px + 1 * (100vw - 320px) / 1600);
  line-height: 1.2;
  margin: 0;
  font-weight: 400;
}

h5 {
  font-size: calc(15px + 1 * (100vw - 320px) / 1600);
  line-height: 1.2;
  margin: 0;
  font-weight: 400;
}

h6 {
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  line-height: 1.2;
  margin: 0;
  font-weight: 400;
}

span {
  display: inline-block;
}

.theme-color {
  color: var(--theme-color) !important;
}

.theme-bg-color {
  background-color: var(--theme-color);
}

.fw-600 {
  font-weight: 600;
}

.container-fluid-lg {
  padding: 0 112px;
}
@media (max-width: 1460px) {
  .container-fluid-lg {
    padding: 0 60px;
  }
}
@media (max-width: 1366px) {
  .container-fluid-lg {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .container-fluid-lg {
    padding: 0 12px;
  }
}

section,
.section-t-space {
  padding-top: 80px;
}
@media (max-width: 1460px) {
  section,
  .section-t-space {
    padding-top: 70px;
  }
}
@media (max-width: 1199px) {
  section,
  .section-t-space {
    padding-top: 60px;
  }
}
@media (max-width: 991px) {
  section,
  .section-t-space {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  section,
  .section-t-space {
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  section,
  .section-t-space {
    padding-top: 30px;
  }
}

.section-b-space {
  padding-bottom: 80px;
}
@media (max-width: 1460px) {
  .section-b-space {
    padding-bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .section-b-space {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .section-b-space {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .section-b-space {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .section-b-space {
    padding-bottom: 30px;
  }
}

.media .media-body {
  flex: 1;
}

.rating li i.orange {
  color: #facc21;
}

.g-18 {
  margin: -18px;
}
.g-18 > div {
  padding: 18px;
}

.custom-gy-5 {
  margin: calc(-16px + -4 * (100vw - 320px) / 1600) 0;
}
.custom-gy-5 > div {
  margin: calc(16px + 4 * (100vw - 320px) / 1600) 0;
}

.light-gray-bg {
  background-color: #eff2f7;
}

@keyframes bounceLeft {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(2px);
  }
}
@keyframes up-down {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes spinner {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}
.btn {
  position: relative;
  padding: calc(6px + 8 * (100vw - 320px) / 1600) calc(12px + 18 * (100vw - 320px) / 1600);
  font-weight: 600;
  z-index: 1;
  transition: all 0.5s;
  border-radius: 0;
  font-weight: bold;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  text-transform: capitalize;
}
.btn:focus {
  box-shadow: none;
}
.btn-white {
  background-color: #fff;
  color: #212529;
}

.buy-button {
  border-radius: 5px;
}

.heading-title {
  text-align: center;
  width: 53%;
  margin: 0 auto 16px;
}
.heading-title h5 {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .heading-title {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .heading-title {
    width: 100%;
  }
}
.heading-title h5 {
  line-height: 1.6;
  margin: 15px 0 calc(15px + 25 * (100vw - 320px) / 1600);
  opacity: 0.6;
}
.heading-title h5 span {
  color: #212529;
  font-weight: 600;
  text-decoration: underline;
  margin: 0 3px;
}

.tap-to-top {
  background-color: var(--theme-color);
  position: fixed;
  bottom: 15px;
  right: -60px;
  border-radius: 5px;
  overflow: hidden;
  width: calc(35px + 10 * (100vw - 320px) / 1600);
  height: calc(35px + 10 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  box-shadow: 0 3px 8px rgba(33, 37, 41, 0.35);
  z-index: 3;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
}
.tap-to-top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: #212529;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.5s;
}
.tap-to-top:hover::before {
  height: 100%;
}
.tap-to-top.show {
  right: 15px;
  transition: all 0.5s ease;
  opacity: 1;
}
.tap-to-top a {
  color: #fff;
  width: calc(35px + 5 * (100vw - 320px) / 1600);
  height: calc(35px + 5 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  z-index: 3;
}
@media (max-width: 575px) {
  .tap-to-top a {
    bottom: 75px;
  }
}

header .main-menu {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header .main-menu {
    padding: 10px 0;
  }
}

.brand-logo .svg-icon {
  width: 25px;
  height: 25px;
  margin-right: 5px;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  transform-style: preserve-3d;
}
.brand-logo .svg-icon .fill-color {
  fill: var(--theme-color);
}

.close-btn {
  padding: 20px;
  font-size: 18px;
  color: #232323;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid #ced4da;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.close-btn i {
  font-size: 14px;
}

.landing-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.landing-header.nav-up .navbar-searchbar {
  top: 0 !important;
}
.landing-header.nav-up .navabar {
  padding: 10px 0;
}
.landing-header.nav-up .navbar-searchbar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  margin-top: 0;
  background-color: #212529;
  box-shadow: 0px 4px 10px rgba(23, 32, 90, 0.15);
  transition: all 0.5s ease;
  z-index: 6;
}
.landing-header .navbar {
  margin-top: 12px;
}
.landing-header .navbar.navbar-dark .navbar-brand img {
  width: calc(90px + 20 * (100vw - 320px) / 1600);
}
.landing-header .navbar .navbar-toggler {
  color: transparent;
  border-color: transparent;
}
@media (max-width: 991px) {
  .landing-header .navbar .navbar-toggler {
    margin-left: auto;
    margin-right: 10px;
  }
}
@media (max-width: 360px) {
  .landing-header .navbar .navbar-toggler {
    margin-right: 0;
  }
}
.landing-header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .landing-header .navbar .navbar-collapse {
    background-color: #1a1d20;
    border-radius: 8px;
    padding: 10px 30px 25px;
    box-shadow: 0 10px 20px rgba(22, 22, 22, 0.1), 0 6px 6px rgba(120, 120, 120, 0.15);
    position: absolute;
    left: 0px;
    top: 65px;
    width: calc(100% - 12px);
  }
}
.landing-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  letter-spacing: 1px;
}
.landing-header .navbar .navbar-collapse .navbar-nav .nav-item + .nav-item {
  margin-left: 18px;
}
@media (max-width: 991px) {
  .landing-header .navbar .navbar-collapse .navbar-nav .nav-item + .nav-item {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .landing-header .navbar .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
    padding-bottom: 0;
  }
}

.home-landing {
  height: auto;
  position: relative;
  z-index: 0;
  background-image: url(/images/landing-image/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: floating 110s linear infinite reverse;
  background-repeat: repeat-x !important;
}
@keyframes floating {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1920px;
  }
}
@media (max-width: 991px) {
  .home-landing {
    height: auto;
    display: flex;
    align-items: center;
    padding: 110px 0 65px;
  }
}
.home-landing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 37, 41, 0.97);
  z-index: -1;
}
.home-landing .demo-images {
  position: absolute;
  bottom: -700px;
  left: 0;
}
.home-landing .demo-image {
  position: relative;
  margin-bottom: -120px;
  margin-top: calc(20px + 60 * (100vw - 320px) / 1600);
  padding: 0;
}
.home-landing .left-sidebar {
  color: #fff;
  text-align: center;
  position: relative;
  margin-top: calc(0px + 70 * (100vw - 320px) / 1600);
}
.home-landing .left-sidebar .heading {
  font-size: calc(20px + 30 * (100vw - 320px) / 1600);
  line-height: 1.4;
}
.home-landing .left-sidebar .detail {
  width: 25%;
  font-size: calc(14px + 1 * (100vw - 320px) / 1600);
  margin: calc(10px + 10 * (100vw - 320px) / 1600) auto 0;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1660px) {
  .home-landing .left-sidebar .detail {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .home-landing .left-sidebar .detail {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .home-landing .left-sidebar .detail {
    width: 65%;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .home-landing .left-sidebar .detail {
    width: 100%;
  }
}
.home-landing .left-sidebar .change-name {
  color: var(--theme-color);
  display: inline-block;
  margin: 10px 0;
}
.home-landing .left-sidebar .change-name h3 {
  font-size: calc(30px + 15 * (100vw - 320px) / 1600);
}
.home-landing .left-sidebar .landing-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(15px + 15 * (100vw - 320px) / 1600);
}
.home-landing .left-sidebar .landing-list li + li {
  margin-left: calc(40px + 30 * (100vw - 320px) / 1600);
}
.home-landing .left-sidebar .landing-list li h4 {
  font-size: calc(18px + 12 * (100vw - 320px) / 1600);
}
.home-landing .left-sidebar .landing-list li p {
  margin-bottom: 0;
  color: #fefefe;
}
.home-landing .right-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.home-landing .right-sidebar h2 {
  font-size: calc(30px + 30 * (100vw - 320px) / 1600);
}
.home-landing .right-sidebar .svg-icon {
  width: calc(30px + 20 * (100vw - 320px) / 1600);
  height: calc(30px + 20 * (100vw - 320px) / 1600);
  margin-right: 20px;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  transform-style: preserve-3d;
}
.home-landing .right-sidebar .svg-icon .fill-color {
  fill: var(--theme-color);
}

.features-section.features-landing-section {
  margin: calc(30px + 120 * (100vw - 320px) / 1600) 0 0;
}
.features-section .custome-nav-pills {
  justify-content: center;
  padding-bottom: calc(28px + 20 * (100vw - 320px) / 1600);
  margin: calc(-4px + -4 * (100vw - 320px) / 1600) !important;
}
.features-section .custome-nav-pills .nav-item {
  margin: calc(4px + 4 * (100vw - 320px) / 1600);
}
.features-section .custome-nav-pills .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 2px solid transparent;
  background-color: #eff2f7;
  font-weight: 300;
  color: #7e7e7e;
  border-radius: 5px;
  text-transform: capitalize;
  letter-spacing: 0.6px;
}
.features-section .custome-nav-pills .nav-item .nav-link.active {
  background-color: var(--theme-color);
  color: #fff;
}
.features-section .nav-demos {
  width: 100%;
}
.features-section .nav-demos:hover .demos-name .circle-shape {
  transform: scale(2);
  left: -180px;
  width: 100%;
  height: 100%;
}
.features-section .nav-demos:hover .demos-name .demos-text {
  opacity: 1;
}
.features-section .nav-demos .demos-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px #e5e5e5;
  margin-bottom: 15px;
}
.features-section .nav-demos .demos-image img {
  width: 100%;
}
.features-section .nav-demos .demos-image a {
  display: block;
}
.features-section .nav-demos .demos-image a img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}
.features-section .nav-demos .demos-name .circle-shape {
  position: absolute;
  background-color: var(--theme-color);
  top: -80px;
  left: -80px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 0;
  transform: scale(0);
  transition: 0.6s ease;
  transform-origin: top left;
}
.features-section .nav-demos .demos-name .demos-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  opacity: 0;
  color: #fff;
}
.features-section .nav-demos .demos-name .demos-text h3 {
  font-weight: 400;
  letter-spacing: 1.1px;
}
.features-section .nav-demos .demos-name .demos-text h3 .feather {
  width: 20px;
}
.features-section .nav-demos .demo-heading {
  letter-spacing: 0.6px;
  text-align: center;
  text-transform: capitalize;
}
.features-section .nav-demos .demo-heading h3 {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
}

.feature-section {
  background-image: url(/images/landing-image/future-bg.jpg);
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-color: #212529;
  color: #fff;
  position: relative;
}
@media (max-width: 991px) {
  .feature-section {
    background-image: none;
  }
}
.feature-section .feature-box {
  position: sticky;
  top: 280px;
  width: 100%;
  margin-top: 100px;
}
@media (max-width: 1366px) {
  .feature-section .feature-box {
    top: 40px;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .feature-section .feature-box {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 0 10px;
  }
}
.feature-section .feature-box .power-box {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.feature-section .feature-box .power-box h5 {
  letter-spacing: 1.5px;
}
.feature-section .feature-box h2 {
  font-size: calc(24px + 20 * (100vw - 320px) / 1600);
}
.feature-section .feature-box p {
  margin: calc(10px + 15 * (100vw - 320px) / 1600) 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  font-weight: 400;
  color: #c7c7c5;
}
.feature-section .feature-box .feature-detail {
  margin-bottom: 30px;
}
.feature-section .feature-box .feature-detail li {
  display: flex;
  align-items: center;
}
.feature-section .feature-box .feature-detail li .check-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(25px + 5 * (100vw - 320px) / 1600);
  height: calc(25px + 5 * (100vw - 320px) / 1600);
  border-radius: 50%;
  background-color: #c7c7c5;
}
.feature-section .feature-box .feature-detail li .check-box .feather {
  stroke: #212529;
  width: 15px;
  stroke-width: 3;
}
.feature-section .feature-box .feature-detail li h5 {
  color: #c7c7c5;
  margin-left: calc(10px + 8 * (100vw - 320px) / 1600);
  letter-spacing: 1.2px;
}
.feature-section .feature-box .feature-detail li + li {
  margin-top: 15px;
}
.feature-section .feature-box button {
  border: none;
  padding: 15px 28px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  position: relative;
}
.feature-section .feature-box button::after {
  content: "";
  position: absolute;
}
.feature-section .features-image {
  position: relative;
  margin-bottom: calc(50px + 70 * (100vw - 320px) / 1600);
}
.feature-section .features-image:last-child {
  margin-bottom: 0%;
}
.feature-section .features-image img {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .feature-section .features-image img {
    width: 80%;
  }
}
.feature-section .features-image .releted-image img {
  position: absolute;
}
.feature-section .features-image .releted-image img.image-1 {
  bottom: 175px;
  left: -70px;
}
.feature-section .features-image .releted-image img.image-2 {
  bottom: 175px;
  right: -70px;
}
.feature-section .features-image .releted-image img.image-3 {
  bottom: 225px;
  left: -70px;
}
.feature-section .features-image .releted-image img.image-4 {
  bottom: 283px;
  right: -70px;
}
.feature-section .features-image .releted-image img.image-5 {
  bottom: 270px;
  left: -100px;
}
.feature-section .features-image .releted-image img.image-6 {
  bottom: 180px;
  right: -40px;
}
.feature-section .features-image .releted-image img.image-7 {
  top: 10px;
}
.feature-section .features-image .releted-image img.image-8 {
  top: 10px;
  right: -80px;
}
.feature-section .features-image .features-details {
  margin: calc(20px + 60 * (100vw - 320px) / 1600) auto 0;
}
.feature-section .features-image .features-details h3 {
  font-size: calc(24px + 4 * (100vw - 320px) / 1600);
  line-height: calc(30px + 10 * (100vw - 320px) / 1600);
}
.feature-section .features-image .features-details p {
  margin: calc(3px + 7 * (100vw - 320px) / 1600) 0 0;
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  line-height: 1.6;
  color: #c7c7c5;
}

.pages-section {
  background-color: #eff2f7;
}
.pages-section .pages-box:hover .page-image .demo-live {
  bottom: 0;
  opacity: 1;
}
.pages-section .pages-box:hover .page-image .demo-live h5 .feather {
  animation: bounceLeft 2s infinite;
}
.pages-section .pages-box .page-image {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(33, 37, 41, 0.2);
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
}
.pages-section .pages-box .page-image a {
  display: block;
  position: relative;
}
.pages-section .pages-box .page-image a img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}
.pages-section .pages-box .page-image .demo-live {
  position: absolute;
  bottom: -70px;
  left: 0;
  background-color: var(--theme-color);
  width: 100%;
  padding: 20px 35px;
  color: #fff;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.pages-section .pages-box .page-image .demo-live h5 .feather {
  width: 20px;
  margin-left: 5px;
}
.pages-section .pages-box .page-name {
  margin-top: 20px;
  text-align: center;
  color: var(--theme-color);
  display: block;
  text-transform: capitalize;
}

.dark-section {
  background-color: #212529;
  color: #fff;
  position: relative;
}
.dark-section .show-future {
  background-color: #2a2f35;
  padding: calc(22px + 8 * (100vw - 320px) / 1600);
  border-radius: 22px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: 0.4s ease-in;
}
.dark-section .show-future:hover {
  box-shadow: 0 10px 20px rgba(22, 22, 22, 0.1), 0 6px 6px rgba(120, 120, 120, 0.15);
}
.dark-section .show-future .dark-image {
  margin-top: calc(20px + 20 * (100vw - 320px) / 1600);
}
.dark-section .show-future .dark-contain {
  margin-top: calc(20px + 10 * (100vw - 320px) / 1600);
}
.dark-section .show-future .dark-contain h3 {
  margin-bottom: 8px;
  font-size: 20px;
}
.dark-section .show-future .dark-contain p {
  color: #c7c7c5;
  font-size: 14px;
  line-height: 21.21px;
  margin-bottom: 0;
}

.core-feature-section {
  background-color: #212429;
  color: #fff;
}
.core-feature-section .core-contain:hover .core-image {
  box-shadow: 0 10px 20px rgba(22, 22, 22, 0.1), 0 6px 6px rgba(120, 120, 120, 0.15);
}
.core-feature-section .core-contain:hover .core-image img {
  filter: grayscale(0);
}
.core-feature-section .core-contain .core-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #2a2f35;
  border-radius: 10px;
  padding: calc(30px + 20 * (100vw - 320px) / 1600);
}
.core-feature-section .core-contain .core-image img {
  filter: grayscale(1);
  transition: 0.4s ease-in;
}
.core-feature-section .core-contain h5 {
  margin: 20px 0 0;
  letter-spacing: 1.1px;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
}

.footer-section {
  text-align: center;
}
.footer-section .brand-logo {
  text-align: center;
}
.footer-section .brand-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1d;
}
.footer-section .brand-logo a .svg-icon {
  width: calc(25px + 20 * (100vw - 320px) / 1600);
  height: calc(25px + 20 * (100vw - 320px) / 1600);
  margin-right: 5px;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  transform-style: preserve-3d;
}
.footer-section .brand-logo a .svg-icon .fill-color {
  fill: var(--theme-color);
}
.footer-section .brand-logo a h2 {
  font-size: calc(25px + 25 * (100vw - 320px) / 1600);
  margin-left: calc(5px + 3 * (100vw - 320px) / 1600);
}
.footer-section .brand-logo img {
  width: calc(80px + 70 * (100vw - 320px) / 1600);
}
.footer-section .footer-contain {
  width: 50%;
  text-align: center;
  margin: calc(10px + 20 * (100vw - 320px) / 1600) auto;
}
@media (max-width: 767px) {
  .footer-section .footer-contain {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .footer-section .footer-contain {
    width: 90%;
  }
}
.footer-section .footer-contain h3 {
  font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  color: #696969;
}
.footer-section .footer-contain h2 {
  font-size: calc(20px + 25 * (100vw - 320px) / 1600);
  line-height: calc(30px + 30 * (100vw - 320px) / 1600);
}

/**=====================
     landing page css end
==========================**/