:root {
  --navbar-bg-color: hsl(0, 0%, 15%);
  --navbar-text-color: hsl(0, 0%, 85%);
  --navbar-text-color-focus: white;
  --navbar-bg-contrast: hsl(0, 0%, 25%);
  --navbar-height: 71px;
}

/* CircularStd Font */

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularSpotifyText-Light.woff2") format("woff2"),
    url("../fonts/CircularSpotifyText-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularSpotifyText-LightItalic.woff2") format("woff2"),
    url("../fonts/CircularSpotifyText-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Book.woff2") format("woff2"),
    url("../fonts/CircularStd-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-BookItalic.woff2") format("woff2"),
    url("../fonts/CircularStd-BookItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Medium.woff2") format("woff2"),
    url("../fonts/CircularStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Bold.woff2") format("woff2"),
    url("../fonts/CircularStd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-BoldItalic.woff2") format("woff2"),
    url("../fonts/CircularStd-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-Black.woff2") format("woff2"),
    url("../fonts/CircularStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CircularStd";
  src: url("../fonts/CircularStd-BlackItalic.woff2") format("woff2"),
    url("../fonts/CircularStd-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Helper css */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  font-family: "CircularStd";
}

body {
  height: 100vh;
  font-family: "CircularStd";
  line-height: 1.6;
}

ul li {
  list-style: none;
}

button {
  cursor: pointer;
}

button span {
  margin-right: 10px;
}

img {
  max-width: 100%;
  width: 100%;
}

/* All flex utility */

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.align-item-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Responsive grid */

.container {
  max-width: 1200px;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12,
.col-6,
.col-4,
.col-3 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12,
.col-6,
.col-4,
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* section title */
.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  color: #151826;
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
}

.section-title h3 {
  color: #151826;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
}

/* All color code */

.bg-primary {
  background-color: #5f63f2;
}

.color-primary {
  color: #5f63f2;
}

.color-secondary {
  color: #834eff;
}

.bg-secondary {
  background-color: #834eff;
}

.color-info {
  color: #0090fd;
}

.bg-info {
  background-color: #0090fd;
}

.color-success {
  color: #00af41;
}

.bg-success {
  background-color: #00af41;
}

.bg-warning {
  background-color: #f57b00;
}

.color-warning {
  color: #f57b00;
}

.color-danger {
  color: #5f63f2;
}

/* Navbar */

.header-transparent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 988;
}

#navbar {
  position: fixed;
  height: var(--navbar-height);
  left: 0;
  right: 0;
  background: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#navbar.header-sticky {
  -webkit-box-shadow: 0 2px 30px #9299b81a;
  box-shadow: 0 2px 30px #9299b81a;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-item {
  margin: 0 6px;
  width: 100%;
}

.navbar-menu .dropdown .navbar-link {
  background-color: unset;
  color: #3f455d;
}

.navbar-menu .dropdown .navbar-link:hover {
  background: unset;
  color: unset;
}

.navbar-menu .dropdown:hover .navbar-link {
  color: #5f63f2;
}

.navbar-menu .dropdown .sub-menu {
  position: absolute;
  top: 70px;
  background: #ffffff;
  display: block;
  padding: 15px 0;
  margin: 0;
  min-width: 12.5rem;
  border-radius: 0 0 3px 3px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 0 none;
  box-shadow: 0 5px 15px rgba(39, 43, 65, 0.1);
  list-style: none;
}

.navbar-menu .dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.navbar-menu .dropdown .sub-menu .sub-menu-item a {
  width: 100%;
  display: inline-block;
  color: #3f455d;
  font-size: 14px;
  padding: 5px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-menu .dropdown .sub-menu .sub-menu-item a:hover {
  color: #5f63f2;
}

.home-link,
.navbar-link {
  color: var(--navbar-text-color);
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.home-link:focus,
.home-link:hover {
  color: var(--navbar-text-color-focus);
}

.navbar-link {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 1.5em 0.8em;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  color: #3f455d;
}

.navbar-link:focus,
.navbar-link:hover {
  color: #5f63f2;
}

.navbar-logo {
  width: 130px;
}

.navbar-toggle {
  cursor: pointer;
  border: none;

  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  -webkit-transition: background-color 0.2s ease-in-out,
    opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, opacity 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  background-color: var(--navbar-text-color);
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: var(--navbar-text-color-focus);
}

#navbar.opened .navbar-toggle .icon-bar:first-child,
#navbar.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px;
}

#navbar.opened .navbar-toggle .icon-bar:first-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}

#navbar.opened .navbar-toggle .icon-bar:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-menu {
  position: fixed;
  top: var(--navbar-height);
  bottom: 0;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
}

#navbar.opened .navbar-menu {
  background-color: rgba(21, 24, 38, 0.7);
  opacity: 1;
  visibility: visible;
}

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  right: 0;
  margin: 1.4rem;
}

#navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
}

@media screen and (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }

  #navbar .navbar-menu,
  #navbar.opened .navbar-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    display: block;
    height: 100%;
  }

  #navbar .navbar-links,
  #navbar.opened .navbar-links {
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    list-style-type: none;
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
    width: 100%;
    height: 100%;
  }

  #navbar .navbar-link:last-child {
    margin-right: 0;
  }
}

/* Section 1 */
/* Banner area */

.banner-area {
  position: relative;
  border-radius: 20px;
  margin: 0 60px;
  margin-top: var(--navbar-height);
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#fffcfc),
    color-stop(#fefdfe),
    color-stop(#fefafc),
    color-stop(#fff7f9),
    to(#fff5f5)
  );
  background-image: -o-linear-gradient(
    bottom,
    #fffcfc,
    #fefdfe,
    #fefafc,
    #fff7f9,
    #fff5f5
  );
  background-image: linear-gradient(
    to top,
    #fffcfc,
    #fefdfe,
    #fefafc,
    #fff7f9,
    #fff5f5
  );
}

.hero-caption {
  padding-top: 87px;
  padding-bottom: 90px;
}

.hero-caption h2 {
  color: #151826;
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  margin: 0 22%;
  margin-bottom: 40px;
}

.hero-caption h2 span {
  display: block;
  color: #5f63f2;
  margin-bottom: 8px;
}

.categories-pages {
  margin-bottom: 40px;
}

.categories-pages ul {
  margin: -3px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.categories-pages__item {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: white;
  padding: 2px 11px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: center;
  margin: 3px;
}

.total-techknowlogy {
  margin: 18px 80px 40px;
}

.total-techknowlogy ul {
  margin: -7.5px;
  justify-content: center;
}

.total-techknowlogy ul li {
  margin: 7.5px;
}

.total-techknowlogy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 122px;
  min-height: 122px;
  padding: 15px;
  line-height: 1;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(197, 161, 187, 0.1);
  gap: 10px;
}

.upcoming-templates .total-techknowlogy__item {
  filter: grayscale(1);
  opacity: 0.6;
}

.total-techknowlogy__item--title {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1;
  color: #000;
}

.total-techknowlogy ul li img {
  height: 30px;
  width: auto;
}

.hero-feature-img {
  padding: 0 67px;
}

.hero-feature-img img {
  box-shadow: 0 10px 50px rgba(146, 155, 177, 0.25);
}

.hero-btnGroups {
  margin: -5px;
}

.hero-btnGroups a {
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  padding: 13px 25px;
  margin: 5px;
  height: 50px;
  text-decoration: none;
}

.hero-btnGroups a span {
  font-size: 20px;
  margin-right: 8px;
}

.hero-btnGroups .view-more {
  border: 1px solid transparent;
  background: #5f63f2;
  color: white;
  -webkit-box-shadow: 0 10px 15px rgba(252, 54, 140, 0.15);
  box-shadow: 0 10px 15px rgba(252, 54, 140, 0.15);
}

.hero-btnGroups .buy-now {
  border: 1px solid #5f63f2;
  color: #5f63f2;
  background: transparent;
  transition: 0.3s;
}

.hero-btnGroups .buy-now:hover {
  color: #fff;
  background-color: #5f63f2;
}

/* background shape */
.shape1 {
  position: absolute;
  top: 0;
  left: 0;
}

.shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* section 2 */

@media (min-width: 768px) {
  .demo-section .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .app-section .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

.app-section {
  padding: 40px 0 70px;
}

.demo-section {
  padding: 100px 0 70px;
}

.demo-section .section-title {
  margin-bottom: 43px;
}

.demo-img-card {
  padding: 28px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 15px 30px rgba(146, 155, 177, 0.2);
  box-shadow: 0 15px 30px rgba(146, 155, 177, 0.2);
}

.demo-img-card img {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 130px rgba(146, 155, 177, 0.1);
  box-shadow: 0 10px 10px rgba(146, 155, 177, 0.1);
}

.demo-img-card p {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #151826;
  margin-top: 28px;
}

.demo-img-card .demo-title {
  font-size: 20px;
  font-weight: 700;
}

.demo-img-card .demo-pages {
  margin: 16px 0 20px;
}

.demo-img-card .demo-pages ul {
  margin: -3px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.demo-img-card .demo-pages .demo-version {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: unset;
  color: #5f63f2;
  padding: 2px 11px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: center;
  margin: 3px;
  background-color: #ffffff;
  border: 2px solid #5f63f2;
  transition: all ease 0.3s;
}

.demo-img-card .demo-pages .demo-version:hover,
.demo-img-card .demo-pages .demo-version.active {
  color: #fff;
  background-color: #5f63f2;
}

.dark-demos .demo-img-card {
  background-color: #03050d;
}

.dark-demos .demo-img-card .demo-title {
  color: #fff;
}

.dark-demos .demo-img-card .demo-pages .demo-version {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.dark-demos .demo-img-card .demo-pages .demo-version:hover,
.dark-demos .demo-img-card .demo-pages .demo-version.active {
  color: #5c637e;
  background-color: #ebeef5;
}

/* Section 3 */

@media (min-width: 768px) {
  .features-section .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 991px) {
  .features-section .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 1199px) {
  .features-section .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.features-section {
  padding: 100px 0 70px;
  background-color: #f8f9fa;
}

/* card */

.feature-card {
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: white;
  -webkit-box-shadow: 0 10px 30px rgba(151, 155, 190, 0.1);
  box-shadow: 0 10px 30px rgba(151, 155, 190, 0.1);
}

.feature-body {
  padding: 35px 20px 50px;
  text-align: center;
}

.feature-icon {
  margin-bottom: 30px;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: white;
  border-radius: 50px;
  -webkit-box-shadow: 0 20px 60px rgba(99, 106, 168, 0.15);
  box-shadow: 0 20px 60px rgba(99, 106, 168, 0.15);
}

.feature-icon img {
  padding: 25px;
  width: 100%;
}

.feature-icon.gulp-icon img {
  max-width: 80px;
}

.feature-body h4 {
  color: #151826;
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
}

.feature-body p {
  color: #424465;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

/* Section 3 */

@media (min-width: 768px) {
  .moreFeatures-section .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 991px) {
  .moreFeatures-section .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 1199px) {
  .moreFeatures-section .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.moreFeatures-section {
  padding: 100px 0 70px;
}

.moreFeatures-section .section-title {
  margin-bottom: 48px;
}

.moreFeatures-section .feature-icon {
  margin-bottom: 20px;
  -webkit-box-shadow: 0 10px 40px rgba(115, 99, 168, 0.1);
  box-shadow: 0 10px 40px rgba(115, 99, 168, 0.1);
}

.moreFeature-card {
  border-radius: 6px;
  background: #fbf6f8;
  margin-bottom: 30px;
}

.moreFeature-body {
  padding: 35px 18px;
  text-align: center;
}

.moreFeature-body p {
  font-size: 19px;
  font-weight: 500;
  line-height: 26px;
  color: #151826;
}

/* Section 4 */

.cta-section {
  padding: 100px 0;
  background: #0e153a;
}

.cta-wrapper h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  color: white;
  margin: 0 18%;
  margin-bottom: 32px;
}

.cta-wrapper h1 span {
  color: #ffad1e;
}

.cta-button a {
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  padding: 14px 25px;
  border: 1px solid transparent;
  background: #5f63f2;
  color: white;
  -webkit-box-shadow: 0 10px 15px rgba(252, 54, 140, 0.15);
  box-shadow: 0 10px 15px rgba(252, 54, 140, 0.15);
  height: 50px;
  text-decoration: none;
}

.cta-button a span {
  font-size: 20px;
  margin-right: 8px;
}

/* Demo Card Box */
.demo-box-card {
  margin-bottom: 30px;
  text-align: center;
}

.demo-box-card:hover .demo-box-card__content:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  transform: scale(1);
}

.demo-box-card:hover .demo-box-card__btn {
  opacity: 1;
  visibility: visible;
}

.demo-box-card .demo-box-card__content {
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(146, 155, 177, 0.2);
  position: relative;
}

.demo-box-card .demo-box-card__content img {
  box-shadow: 0 10px 10px rgba(146, 155, 177, 0.1);
}

.demo-box-card .demo-box-card__label {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-top: 18px;
  color: #151826;
}

.demo-box-card .demo-box-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 25px;
  border-radius: 7px;
  min-height: 50px;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 101;
  background-color: #5f63f2;
}

.demo-box-card .demo-box-card__content:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  content: "";
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in;
  background-color: rgba(21, 24, 38, 0.3);
}

/* Responsive */

@media (max-width: 1365.98px) {
  .navbar-menu .dropdown .sub-menu {
    right: 35px;
  }
}

@media (max-width: 991.98px) {
  .banner-area {
    margin-left: 15px;
    margin-right: 15px;
  }

  .hero-caption h2,
  .cta-wrapper h1 {
    font-size: 35px;
    line-height: 42px;
  }

  .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .demo-section,
  .features-section,
  .moreFeatures-section {
    padding: 80px 0 50px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .section-title,
  .demo-section .section-title,
  .moreFeatures-section .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .hero-caption h2,
  .cta-wrapper h1 {
    margin-left: 0;
    margin-right: 0;
    font-size: 32px;
    line-height: 38px;
  }

  .hero-caption {
    padding-bottom: 50px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .navbar-links {
    background: white;
    border-radius: 4px;
  }

  .navbar-toggle {
    background-color: #424465;
    border-radius: 4px;
    outline: none;
  }

  .navbar-toggle:focus {
    border: none;
    outline: none;
  }

  .hero-feature-img {
    padding: 0;
  }

  .navbar-menu .dropdown .sub-menu {
    position: unset;
    height: 0;
    padding: 0;
  }

  .navbar-menu .dropdown:hover .sub-menu {
    visibility: unset;
    opacity: unset;
    transform: unset;
  }

  .navbar-menu .dropdown .navbar-link[aria-label="opened"] {
    color: #5f63f2;
  }

  .navbar-menu .dropdown .sub-menu.opened {
    height: auto;
    visibility: visible;
    opacity: 1;
    padding: 15px 0;
    transform: translateY(0);
  }

  .navbar-menu .dropdown .sub-menu .sub-menu-item {
    display: none;
  }

  .navbar-menu .dropdown .sub-menu.opened .sub-menu-item {
    display: block;
  }
}

@media (max-width: 479.98px) {
  .hero-caption h2,
  .cta-wrapper h1 {
    font-size: 25px;
    line-height: 32px;
  }

  .section-title h2 {
    font-size: 23px;
    line-height: 30px;
  }

  .demo-img-card .demo-title,
  .moreFeature-body p {
    font-size: 18px;
    line-height: 25px;
  }

  .feature-body h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
