:root {
  --text-color: #2f4358;
  --secondary-color: #233242;
  --primary-color: #39689c;
  --white: #fff;
  --transparent: rgba(0, 0, 0, 0);
  --white-2: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous, .w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--text-color);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.66;
}

h1 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.25;
}

h2 {
  color: var(--secondary-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.24;
}

h3 {
  color: var(--secondary-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

p {
  color: var(--text-color);
  margin-bottom: 10px;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

figure {
  margin-bottom: 10px;
}

.main-wrapper {
  color: var(--secondary-color);
}

.container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 990px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

.section-gap-y-axis {
  padding-top: 100px;
  padding-bottom: 100px;
}

.button-primary {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  border-radius: 10px;
  min-height: 48px;
  max-height: 48px;
  margin-top: 0;
  padding: 12px 24px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
}

.button-primary:hover {
  background-color: #2b4f77;
}

.button-primary.footer-btn {
  border-radius: 5px;
}

.button-primary.footer-btn:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

.button-primary.m-40 {
  margin-top: 40px;
}

.button-primary.mt-32 {
  max-height: none;
  margin-top: 32px;
}

.button-outline {
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  background-color: #e8edf3;
  border-radius: 10px;
  min-height: 48px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: color .3s, background-color .3s;
}

.button-outline:hover {
  color: #2b4f77;
  background-color: #e8edf3;
}

.menu-link {
  color: var(--secondary-color);
  letter-spacing: .25px;
  padding: 5px 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.menu-link:hover, .menu-link.w--current {
  color: var(--primary-color);
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.menu-text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: color .3s;
}

.mobile-logo-wrap {
  display: none;
}

.getstart-button-wrap {
  border-radius: 4px;
  margin-left: 40px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  border-radius: 0;
  min-width: 220px;
  padding-top: 10px;
  padding-bottom: 10px;
  top: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  border-radius: 5px;
  margin-top: 15px;
}

.header-nav-inner-block {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}

.logo {
  min-width: 104px;
}

.menu-list {
  margin-left: 0;
  margin-right: 5px;
}

.nav-dropdown-link {
  color: var(--secondary-color);
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  transition: color .3s;
}

.nav-dropdown-link:hover {
  color: var(--primary-color);
}

.nav-dropdown-link.w--current {
  color: var(--primary-color);
  margin-bottom: 0;
}

.header-section {
  z-index: 10000;
  background-color: #fff;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.header-section.two {
  position: static;
}

.nav-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: var(--primary-color);
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle.preview {
  color: var(--white);
  transition: color .3s;
}

.nav-dropdown-toggle.preview:hover {
  color: #c7c7c7;
}

.header-navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-address {
  color: var(--white);
  max-width: 270px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.footer-block-wrapper {
  padding-top: 32px;
  position: relative;
}

.brandbes-link {
  color: var(--white);
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.brandbes-link:hover {
  color: var(--primary-color);
}

.brandbes-link.footer-two:hover {
  color: #c7c7c7;
}

.copy-right-block {
  z-index: 3;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  position: relative;
}

.footer-content {
  flex-flow: row;
}

.footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-section {
  background-color: #f7f8fa;
}

.footer-block {
  flex-flow: row;
  display: flex;
}

.webflow-link {
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.webflow-link:hover {
  color: var(--primary-color);
}

.webflow-link.footer-two:hover {
  color: #c7c7c7;
}

.footer-link {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.footer-link:hover {
  color: var(--primary-color);
}

.logo-image {
  width: 88px;
}

.location-block {
  margin-bottom: 10px;
}

.footer-logo-link-block {
  margin-bottom: 20px;
}

.footer-logo-link-block.w--current {
  margin-bottom: 10px;
}

.location {
  color: var(--white);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.phone-number-link {
  color: var(--white);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

.phone-number-link:hover {
  color: var(--primary-color);
}

.phone-number-link.footer-two:hover {
  color: #c7c7c7;
}

.email-link {
  color: var(--white);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

.email-link:hover {
  color: var(--primary-color);
}

.email-link.footer-two:hover {
  color: #c7c7c7;
}

.footer-dotted-shape-left {
  position: absolute;
  top: auto;
  bottom: 15px;
  left: 10px;
  right: auto;
}

.footer-dotted-shape-left.remove {
  display: none;
}

.footer-dotted-shape-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: absolute;
  top: auto;
  bottom: 15px;
  left: auto;
  right: 10px;
}

.footer-dotted-shape-right.remove {
  display: none;
}

.footer-right-dotted-shape {
  transform-style: preserve-3d;
  display: none;
}

.footer-dropdown-shape-left {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
  position: absolute;
  top: 50px;
  bottom: auto;
  left: 30px;
  right: auto;
}

.footer-dropdown-shape-left.remove {
  display: none;
}

.footer-dropdown-shape-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
  position: absolute;
  top: auto;
  bottom: 50px;
  left: auto;
  right: 50px;
}

.dreopdown-image-right {
  transform-style: preserve-3d;
  transform: rotateX(137deg)rotateY(137deg)rotateZ(0);
}

.footer-copy-right-text {
  color: var(--text-color);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.solid-border {
  border-top: 2px solid var(--white);
  opacity: .3;
  -webkit-text-stroke-width: 10px;
  margin-top: 24px;
}

.home-one-hero-section {
  overflow: hidden;
}

.home-one-hero-section.section-gap-y-axis {
  margin-bottom: 72px;
  padding-top: 104px;
  padding-bottom: 0;
}

.home-one-hero-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
}

.home-one-hero-content-wrap {
  max-width: 475px;
}

.home-one-hero-image {
  width: 400px;
}

.hero-titile {
  display: inline;
}

.hero-titile.font-blod {
  font-weight: 700;
}

.hero-one-title-block {
  margin-bottom: 15px;
}

.inner-text-image {
  margin-top: -20px;
  padding-left: 5px;
}

.hero-one-title-descrption {
  max-width: 438px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
}

.hero-one-button-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.fun-fact-section {
  background-color: var(--secondary-color);
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
}

.fun-fact-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  justify-items: center;
  display: grid;
}

.funfact-content-title {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 800;
}

.plus-yellow {
  color: #eab621;
}

.funfact-text {
  color: var(--white);
  line-height: 1.66;
}

.funfact-text.text-black {
  color: var(--text-color);
  white-space: nowrap;
}

.plus-meron {
  color: #a05eda;
}

.plus-green {
  color: #22af88;
}

.plus-blue {
  color: #1b5be5;
}

.funfact-dotted-shape-left {
  display: none;
  position: absolute;
  top: 15px;
  bottom: auto;
  left: 10px;
  right: auto;
}

.funfact-left-dotted-shape {
  width: 80px;
}

.funfact-dotted-shape-right {
  display: none;
  position: absolute;
  top: auto;
  bottom: 15px;
  left: auto;
  right: 10px;
}

.funfact-right-dotted-shape {
  width: 80px;
}

.funfact-dropdown-shape-left {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 10px;
  right: auto;
}

.funfact-dreopdown-left {
  width: 50px;
  transform: rotate(-136deg);
}

.funfact-dropdown-shape-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: auto;
  right: 10px;
}

.funfact-dreopdown-right {
  width: 50px;
}

.blog-quites-wrap {
  margin-bottom: 40px;
  padding-left: 20px;
}

.style-gudie-buttons-secction {
  padding-top: 60px;
}

.style-guide-sidebar {
  z-index: 1;
  min-width: 300px;
  height: 100%;
  min-height: 96vh;
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}

.style-gudie-menu {
  color: #565555;
  border-radius: 5px;
  align-self: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  font-size: 20px;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.style-gudie-menu:hover {
  background-color: #eef0ff;
}

.style-gudie-menu.w--current {
  color: var(--white);
  background-color: rgba(83, 103, 254, .7);
}

.color-title {
  color: var(--white);
  background-color: rgba(83, 103, 254, .7);
  border-radius: 10px;
  padding: 30px 20px;
}

.primary-color-wrap, .secondary-color-wrap {
  width: 230px;
  margin-bottom: 40px;
}

.breadcumb-title-description {
  max-width: 800px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.breadcumb-title-description.changelog {
  max-width: 400px;
}

.breadcumb-title-description.licenses {
  max-width: 570px;
}

.body-color-wrap {
  width: 230px;
  margin-bottom: 40px;
}

.primary-color-block {
  background-color: var(--primary-color);
  height: 100px;
}

.secondary-color-block {
  background-color: var(--secondary-color);
  height: 100px;
}

.style-gudie-menu-text {
  font-size: 20px;
  font-weight: 500;
}

.list-item {
  margin-top: 10px;
  margin-left: 20px;
}

.style-guide-content {
  width: 100%;
  padding-left: 20px;
}

.list-item-title {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.button-default {
  background-color: var(--primary-color);
  text-transform: uppercase;
  border-radius: 10px;
  align-self: center;
  min-height: 48px;
  padding: 14px 24px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color .3s, color .3s;
}

.button-default:hover, .button-default:lang(en) {
  background-color: #2b4f77;
}

.style-menu {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.heading-two-wrap {
  margin-bottom: 40px;
  padding-left: 20px;
}

.paragraph-defult-text-details {
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.typography-title {
  color: var(--white);
  background-color: rgba(83, 103, 254, .7);
  border-radius: 10px;
  margin-top: 0;
  padding: 30px 20px;
}

.body-color {
  color: #1b3764;
  margin-bottom: 20px;
  font-size: 24px;
}

.heading-three-wrap, .paragraph-detail-wrap, .paragraph-small-wrap {
  margin-bottom: 40px;
  padding-left: 20px;
}

.paragraph-small-text {
  color: var(--text-color);
  text-align: left;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.paragraph-small-text.text-white {
  color: var(--white);
}

.paragraph-small-text.text-white.center-text {
  color: var(--white);
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.paragraph-small-text-details {
  color: #565555;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.button-titile {
  color: #1b3764;
  background-color: rgba(83, 103, 254, .7);
  padding: 30px 20px;
  font-size: 40px;
}

.blog-quites-text-details {
  color: #565555;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.primary-color {
  margin-bottom: 20px;
}

.paragraph-default-title {
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.paragraph-default-title.text-center {
  color: #a6b9cf;
  text-align: center;
}

.paragraph-default-title.text-center.text-white {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-default-title.text-primary {
  color: #a6b9cf;
  margin-bottom: 0;
}

.color-block-details {
  background-color: #f6f6fc;
}

.blog-quites-text {
  background-color: var(--primary-color);
  color: #fff;
  margin-left: 20px;
  padding: 10px 10px 10px 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.color-details {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

.style-guide-title-block {
  margin-bottom: 5px;
}

.heading-three {
  font-family: Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.style-guide-breadcumb-section {
  background-color: #eef0ff;
}

.list {
  background-image: url('../images/Wavy_Check-mark.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 5px;
  padding-left: 30px;
  font-family: Montserrat, sans-serif;
}

.paragraph-default-text {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.paragraph-default-text.medium {
  color: var(--text-color);
  margin-top: 24px;
  font-weight: 500;
}

.paragraph-default-text.text-medium {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.paragraph-default-text.text-medium.italic {
  margin-bottom: 12px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.paragraph-small-title {
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.defult-socila-icons-block {
  margin-bottom: 20px;
}

.breadcrumb-title {
  max-width: 630px;
}

.breadcrumb-title.text-center {
  text-align: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.color-section {
  margin-top: 20px;
}

.style-guide-breadcrumb {
  padding-top: 140px;
}

.color-list-wrapper {
  padding-left: 20px;
}

.secondary-color {
  color: #1b3764;
  margin-bottom: 20px;
  font-size: 24px;
}

.button-variation {
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.style-gudie-sub-titile {
  color: #121212;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.list-items-text-details {
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.breadcrumb-content-block {
  text-align: center;
}

.heading-one-wrap {
  margin-bottom: 40px;
  padding-left: 20px;
}

.blog-quites-title {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.heading-two {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.heading-two.two {
  font-weight: 500;
}

.heading-two.text-center {
  text-align: center;
  margin-top: 0;
}

.heading-two.white {
  color: var(--white);
}

.heading-two.white.m-40, .heading-two.m-40 {
  margin-bottom: 40px;
}

.button-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.icons-title {
  color: var(--white);
  background-color: rgba(83, 103, 254, .7);
  border-radius: 10px;
  padding: 30px 20px;
}

.style-guide-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: relative;
}

.heading-one {
  font-family: Montserrat, sans-serif;
  font-size: 49px;
  font-weight: 700;
}

.heading-one.two {
  font-weight: 500;
}

.body-color-block {
  background-color: var(--text-color);
  height: 100px;
}

.colonnine-intelligenti {
  margin-top: 72px;
  margin-bottom: 72px;
}

.colonnine-intelligenti.section-gap-y-axis {
  background-color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 72px;
  padding-bottom: 72px;
}

.colonnine-intelligenti.section-gap-y-axis.background-2 {
  background-color: #f7f8fa;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 72px;
  padding-bottom: 72px;
}

.colonnine-intelligenti.section-gap-y-axis.p-88 {
  padding-top: 88px;
  padding-bottom: 88px;
}

.colonnine-intelligenti.servizio-1 {
  background-color: #f7f8fa;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 72px;
  padding-bottom: 72px;
}

.choice-us-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
  justify-items: stretch;
  display: grid;
}

.choice-us-wrapper.one-column {
  grid-template-columns: 1fr;
}

.choice-us-image-block-one.section-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: start;
  max-width: 100%;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.choice-us-content-block-one {
  max-width: 80%;
}

.choice-us-image-one {
  border-radius: 20px;
  max-width: 100%;
  margin-top: 40px;
}

.section-title {
  margin-top: 0;
}

.section-title.bold {
  max-width: 350px;
  margin-bottom: 15px;
  font-weight: 800;
}

.section-title.text-center {
  text-align: center;
  margin-bottom: 15px;
}

.section-title.text-center.blod {
  font-weight: 700;
}

.section-titile-description {
  max-width: 470px;
  margin-bottom: 20px;
}

.section-titile-description.text-center {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.section-titile-description.choise-us {
  max-width: 370px;
}

.features-section-one {
  background-color: rgba(238, 240, 255, .75);
}

.features-one-card-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 40px;
  display: grid;
}

.features-one-card-wrapper.syle-2 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 0;
}

.features-one-card-wrapper.style-1 {
  grid-template-columns: 1fr 1fr;
}

.features-one-card-wrapper.pt-0 {
  grid-template-columns: 1fr 1fr;
  padding-top: 0;
}

.features-one-card-wrapper.pt-0.mw-70 {
  max-width: 70%;
}

.features-card-one {
  background-color: var(--white);
  border: 1px solid #dde1ff;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.features-card-one:hover {
  background-color: var(--white);
}

.features-card-one.style-2 {
  background-color: var(--text-color);
  border-width: 0;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.features-card-one.style-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding: 24px;
}

.features-card-one.style-1 {
  flex-flow: row;
}

.feature-title {
  color: var(--secondary-color);
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.feature-title.text-left {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.feature-title.style-3 {
  margin-bottom: 12px;
  padding-left: 0;
}

.feature-title.style-3.pt-40 {
  padding-top: 40px;
}

.feature-description {
  text-align: left;
  margin-bottom: 0;
  margin-left: 16px;
  font-family: Montserrat, sans-serif;
}

.feature-description.text-left {
  text-align: left;
}

.feature-description.style-2 {
  color: var(--white);
  text-align: left;
  margin-left: 0;
}

.feature-description.style-3 {
  margin-left: 0;
}

.feature-description.style-4 {
  font-size: 18px;
  font-weight: 500;
}

.vantaggi-fiscali.section-gap-y-axis {
  padding-top: 72px;
  padding-bottom: 72px;
}

.vantaggi-fiscali.section-gap-y-axis.p-88 {
  padding-top: 88px;
  padding-bottom: 88px;
}

.crypto-market-title-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
  justify-items: start;
  display: grid;
}

.crypto-market-table-wrapper {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.crypto-market-table-header {
  background-color: #dde1ff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  justify-content: space-between;
  width: 100%;
  padding: 15px 10px 15px 30px;
  display: flex;
}

.crypto-market-table-content {
  border-bottom: 1px solid rgba(126, 124, 124, .3);
  border-left: 1px solid rgba(126, 124, 124, .3);
  border-right: 1px solid rgba(126, 124, 124, .3);
  justify-content: space-between;
  width: 100%;
  padding: 15px 10px 15px 30px;
  display: flex;
}

.crypto-market-table-content.border-radious {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.crypto-table-header {
  font-weight: 600;
  line-height: 1.44;
}

.table-data-wrap {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  width: 130px;
  display: flex;
}

.table-data-wrap.width-230 {
  width: 190px;
}

.table-data-text {
  color: #353535;
  line-height: 1.5;
}

.crypto-table-data-wrap {
  width: 130px;
}

.crypto-table-data-wrap.width-230 {
  width: 190px;
}

.crypto-table-description {
  max-width: 470px;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.section-titile-block {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.getstart-section-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
}

.feature-section-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 800;
}

.feature-section-title.three {
  text-align: left;
  font-weight: 700;
}

.getstart-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.getstart-content-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column wrap;
  align-items: stretch;
  padding-top: 20px;
  display: flex;
}

.getstart-image-wrap {
  position: relative;
}

.getstart-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid #eef0ff;
  border-radius: 10px;
  align-items: center;
  padding: 15px 30px 15px 20px;
  transition: background-color .3s;
  display: flex;
}

.getstart-card:hover {
  background-color: #eef0ff;
}

.getstart-card-title-image.style-3 {
  margin-bottom: 20px;
  padding-bottom: 0;
}

.getstart-card-title-image.style-3.mb-0 {
  margin-bottom: 0;
}

.getstart-cart-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.getstart-card-description {
  max-width: 300px;
  margin-top: 5px;
  margin-bottom: 0;
  line-height: 1.5;
}

.padding-bottom-130px {
  padding-bottom: 100px;
}

.guida-la-rivoluzione {
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 72px;
  padding-top: 0;
  padding-bottom: 0;
}

.our-app-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: start;
  display: grid;
}

.our-app-content-block {
  max-width: 480px;
}

.our-app-image-wrap {
  position: relative;
}

.our-app-banner-bg {
  opacity: 0;
  width: 400px;
  overflow: visible;
}

.our-app-banner-image-one {
  z-index: 1;
  border-radius: 20px;
  width: auto;
  position: static;
  top: 100px;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.our-app-banner-image-two {
  width: 250px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 200px;
  right: 0%;
}

.our-app-banner-image-two.style-2 {
  width: 200px;
  max-width: 80%;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 15%;
}

.our-app-section-title {
  margin-bottom: 20px;
  font-weight: 800;
}

.our-app-section-title.three {
  margin-top: 0;
  font-size: 37px;
  font-weight: 700;
}

.ourapp-titile-description {
  max-width: 100%;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  line-height: 1.5;
}

.our-app-button-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.client-slider-section.padding-top-130px {
  overflow: hidden;
}

.client-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  display: flex;
}

.client-content-block {
  white-space: nowrap;
  max-width: 270px;
}

.testimonial-one-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: relative;
}

.testimonial-slider-one-wrap {
  max-width: 355px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.testimonial-one-title {
  max-width: 330px;
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 800;
  position: absolute;
}

.testimonial-details {
  max-width: 399px;
  padding-top: 15px;
}

.rateing-image {
  margin-bottom: 5px;
}

.client-name {
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.44;
}

.client-compay-name {
  color: #7e7c7c;
  line-height: 1.5;
}

.testimonial-one-image-wrapper {
  position: relative;
}

.testimonial-one-image {
  border-radius: 300px;
}

.testimonial-one-image-block {
  background-color: #cbd1ff;
  border-radius: 300px;
  align-items: flex-end;
  width: 400px;
  height: 480px;
  display: flex;
}

.bitcoin-rate-sticker-one {
  position: absolute;
  top: auto;
  bottom: 12%;
  left: -66px;
  box-shadow: 0 4px 20px rgba(83, 103, 254, .25);
}

.bitcoin-sticker-one {
  width: 110px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0%;
}

.person-stciker-one-wrap {
  background-color: #bac2ff;
  border: 2px solid #bac2ff;
  border-radius: 63px;
  width: 63px;
  height: 63px;
  position: absolute;
  top: 8%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.chouce-us-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 800;
}

.testimonial-slider-one-block {
  position: relative;
}

.testimonial-slider-one {
  background-color: var(--transparent);
  height: auto;
}

.testimonial-slider-mask-one {
  margin-top: -50px;
}

.testimonial-slider-one-slide {
  background-color: var(--transparent);
}

.testimonial-slider-one-slide-nav {
  display: none;
}

.slider-one-left-arrow {
  border: 2px solid #98a4fe;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  left: 445px;
}

.slider-one-right-arrow {
  border: 2px solid #98a4fe;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  top: 0;
  bottom: 0;
  right: 30px;
}

.testimonial-one-slider-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  display: grid;
}

.client-slider-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.client-slider-description {
  color: #7e7c7c;
}

.client-logo-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  overflow: hidden;
}

.client-logo-inner {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  justify-content: space-between;
  padding-bottom: 0;
  display: flex;
}

.single-logo {
  flex: none;
  grid-template: "."
                 "."
                 / 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.single-client-logo {
  justify-content: center;
  align-items: center;
  transition: background-color .3s;
  display: flex;
  position: relative;
}

.padding-top-130px {
  padding-top: 100px;
}

.newsletter-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.newsletter-content-block {
  max-width: 370px;
}

.newsletter-section-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 800;
}

.newsletter-section-title.three {
  font-weight: 700;
}

.newsletter-description {
  max-width: 350px;
  margin-bottom: 30px;
}

.newsletter-input-block {
  position: relative;
}

.newsletter-input-field {
  color: #7e7c7c;
  background-color: #e7e9ff;
  border: 0 #000;
  border-radius: 50px;
  min-height: 46px;
  padding: 14px 153px 14px 16px;
  line-height: 1.5;
}

.subscribe-button {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  background-image: url('../images/getstart-btn-arow.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50px;
  padding: 11px 48px 11px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: background-color .3s;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0%;
}

.subscribe-button:hover {
  background-color: var(--secondary-color);
}

.hero-wrapper-two {
  padding-top: 40px;
}

.hero-two-image-wrap {
  border-radius: 10px;
  margin-top: 40px;
}

.hero-image-two {
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(83, 103, 254, .15);
}

.hero-two-title-block {
  text-align: left;
  margin: 0;
}

.inner-text-image-two {
  max-width: 80px;
  margin-top: -27px;
  margin-left: 16px;
  padding-left: 10px;
}

.hero-title-two {
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 49px;
  font-weight: 700;
  display: inline;
}

.hero-two-description {
  text-align: center;
  max-width: 440px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.hero-two-button-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  display: flex;
}

.choice-us-wrapper-two {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  justify-items: start;
  display: grid;
}

.choice-us-image-block-two {
  position: relative;
}

.choice-us-content-block-two {
  max-width: 390px;
}

.chouce-us-title-two {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 800;
}

.ethereum {
  z-index: -1;
  position: absolute;
  top: 10px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.premium {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 195px;
  right: auto;
}

.yuan {
  z-index: -1;
  position: absolute;
  top: 190px;
  bottom: auto;
  left: 116px;
  right: auto;
}

.features-section-two {
  background-color: rgba(238, 240, 255, .75);
}

.features-card {
  border: 1px solid #dde1ff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 15px 15px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.features-card:hover {
  background-color: #dde1ff;
}

.features-image-two-wrap {
  margin-bottom: 15px;
  position: relative;
}

.features-image-two {
  position: absolute;
}

.get-start-section-two.section-gap-y-axis {
  background-color: #f7f8fa;
  background-image: linear-gradient(rgba(245, 248, 250, .5), rgba(245, 248, 250, .5)), url('../images/ivana-cajina-LlDQPnErFxo-unsplash.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  padding-top: 72px;
  padding-bottom: 72px;
}

.get-start-section-two.section-gap-y-axis.p-88 {
  padding-top: 88px;
  padding-bottom: 88px;
}

.getstart-block-two {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.getstart-content-wrap-two {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column wrap;
  margin-left: 0;
  display: flex;
}

.getstart-card-two {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid #eef0ff;
  border-radius: 10px;
  align-items: center;
  padding: 15px 20px;
  transition: background-color .3s;
  display: flex;
}

.getstart-card-two:hover {
  background-color: #eef0ff;
}

.getstart-banner-two {
  width: 450px;
}

.getstart-card-description-two {
  max-width: 300px;
  margin-top: 5px;
  margin-bottom: 0;
  line-height: 1.5;
}

.getstart-titile-description {
  text-align: center;
  max-width: 470px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.our-app-section-two {
  background-color: rgba(238, 240, 255, .75);
  padding-top: 40px;
  padding-bottom: 35px;
}

.our-app-wrapper-two {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: start;
  display: grid;
}

.our-app-content-block-two {
  max-width: 480px;
  position: relative;
}

.ellipse-wrap {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: auto;
  right: -15px;
}

.ellipse-two {
  position: absolute;
  top: -55%;
  bottom: auto;
  left: 24px;
  right: auto;
}

.our-app-image-wrap-two {
  position: relative;
}

.testimonial-two-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: relative;
}

.testimonial-two-title {
  z-index: 2;
  max-width: 330px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 800;
  position: absolute;
  top: 80px;
  left: 55%;
}

.bitcoin-sticker-two {
  width: 100px;
  position: absolute;
  top: 0%;
  bottom: auto;
  right: auto;
}

.testimonial-slider-two {
  background-color: var(--transparent);
  height: auto;
}

.testimonial-slider-two-slide {
  background-color: var(--transparent);
}

.slider-two-left-arrow {
  border: 2px solid #98a4fe;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  left: 35px;
}

.slider-two-right-arrow {
  border: 2px solid #98a4fe;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  top: 0;
  bottom: 0;
  left: 35px;
}

.testimonial-two-slider-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-two-content-wrap {
  align-self: flex-end;
  max-width: 355px;
  padding-bottom: 15px;
}

.testimonial-two-image-block {
  justify-content: center;
  align-items: flex-end;
}

.person-stciker-two-wrap {
  transform-style: preserve-3d;
  background-color: #bac2ff;
  border: 2px solid #bac2ff;
  border-radius: 63px;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 13%;
  bottom: auto;
  left: 43%;
  right: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.bitcoin-rate-sticker-two {
  position: absolute;
  top: auto;
  bottom: 12%;
  left: 10px;
  box-shadow: 0 4px 20px rgba(83, 103, 254, .25);
}

.newsletters-content-wrap-two {
  background-color: #dde1ff;
  border-radius: 15px;
  padding-top: 80px;
  padding-bottom: 85px;
}

.newsletter-title-two {
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 800;
}

.newsletter-description-two {
  text-align: center;
  max-width: 450px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input-field-two {
  color: #7e7c7c;
  background-color: #fff;
  border: 0 #000;
  border-radius: 50px;
  min-height: 46px;
  padding: 14px 125px 14px 16px;
  line-height: 1.5;
}

.newsletter-input-block-two {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.subscribe-button-two {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  min-height: 46px;
  padding: 11px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: background-color .3s;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0%;
}

.subscribe-button-two:hover {
  background-color: var(--secondary-color);
}

.newsletter-two-wrapper {
  position: relative;
}

.newsletter-ellipse-bock-one {
  display: inline-block;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: 10px;
  right: auto;
}

.newsletter-ellipse-bock-two {
  position: absolute;
  top: auto;
  bottom: 31px;
  left: auto;
  right: 25px;
}

.dropped-shape-one {
  position: absolute;
  top: auto;
  bottom: 34px;
  left: 30px;
  right: auto;
}

.dropped-shape-two {
  position: absolute;
  top: 40px;
  bottom: auto;
  left: auto;
  right: 29px;
}

.hero-wrapper-three {
  padding-top: 40px;
}

.hero-three-title-block {
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.hero-three-description {
  text-align: left;
  max-width: 443px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  line-height: 1.5;
  display: inline-block;
}

.hero-three-button {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-title-three {
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.5;
  display: inline;
}

.hero-three-title-wrap {
  max-width: 690px;
}

.hero-squre-title-shape {
  align-items: center;
  display: flex;
  position: relative;
}

.hero-three-squre-one {
  background-color: #98a4fe;
  border-radius: 50px;
  width: 50px;
  height: 50px;
}

.hero-three-squre-two {
  background-color: #5367fe;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  transform: translate(-25px);
}

.hero-arrow-image {
  position: absolute;
  left: 45px;
}

.hero-three-title-shape-wrap {
  margin-left: 10px;
  display: inline-block;
}

.hero-three-bottom-content-wrap {
  z-index: -2;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: minmax(306px, .25fr) 300px 150px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: end;
  justify-items: baseline;
  margin-top: -85px;
  display: grid;
  position: relative;
}

.hero-three-subtitle-block {
  z-index: 99;
}

.hero-three-subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  display: inline;
}

.hero-three-subtitle-wrap {
  max-width: 382px;
  margin-top: 60px;
}

.hero-three-star-shape {
  margin-top: -25px;
  margin-left: 10px;
}

.currency-card {
  border-radius: 20px;
  margin-top: 20px;
}

.hero-three-image-wrap {
  margin-right: -15px;
  display: inline-block;
  position: relative;
}

.hero-three-image-block {
  background-color: #eef0ff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  width: 332px;
  height: 470px;
  position: relative;
}

.bitcoin-apps-image {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  position: absolute;
  top: 28px;
  right: 28px;
}

.hero-hightlight-shape {
  position: absolute;
  top: -50px;
  bottom: auto;
  left: auto;
  right: -50px;
}

.hero-three-funfact-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hero-funfact-title {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-three-shape {
  position: absolute;
  top: 100px;
  bottom: auto;
  left: auto;
  right: 50px;
}

.choice-us-wraper-three {
  position: relative;
}

.choice-us-three-video-wrap {
  padding-top: 20px;
  position: relative;
}

.choice-us-title-three {
  text-align: center;
  max-width: 602px;
  margin: 0 auto 15px;
  font-weight: 700;
}

.choice-us-three-description {
  text-align: center;
  max-width: 400px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.choice-us-three-banner-image {
  border-radius: 15px;
}

.video-button {
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0%;
  transform: translate(0, -50%);
}

.watch-button-icon {
  text-align: center;
  width: 25px;
}

.video-lightbox-block {
  -webkit-text-stroke-color: #0160ff;
  background-color: rgba(83, 103, 254, .4);
  border: 2px solid rgba(1, 96, 255, 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 103px;
  height: 103px;
  margin-left: auto;
  margin-right: auto;
  transition: transform .3s, box-shadow .3s;
  display: flex;
}

.video-lightbox-block:hover {
  transform: translate(0, -3px)scale(1.01);
  box-shadow: 0 4px 30px #2c3dc2;
}

.features-two-block {
  margin-top: -10px;
}

.features-three-block {
  position: relative;
}

.features-three-card-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  display: grid;
}

.features-image-three-wrap {
  margin-bottom: 15px;
  margin-left: 0;
  margin-right: auto;
  position: relative;
}

.features-titile-description {
  text-align: center;
  max-width: 420px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.choice-us-shape-one {
  position: absolute;
  top: 20px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.choice-us-shape-two {
  position: absolute;
  top: 75px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.hight-light-shape {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 60px;
}

.getstart-block-three {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.getstart-banner-three {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.getstart-content-wrap-three {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column wrap;
  margin-left: 0;
  padding-top: 40px;
  display: flex;
}

.getstart-card-three {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid #eef0ff;
  border-radius: 10px;
  align-items: center;
  padding: 15px 20px;
  transition: background-color .3s;
  display: flex;
}

.getstart-card-three:hover {
  background-color: #eef0ff;
}

.getstart-image-wrap-three {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  position: relative;
}

.getstart-description {
  max-width: 360px;
  margin-bottom: 15px;
}

.client-slider-section-three {
  overflow: hidden;
}

.client-wrapper-three {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--primary-color);
  align-items: center;
  padding-top: 27px;
  padding-bottom: 27px;
}

.client-slider-block-three {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.client-logo-three {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  justify-content: space-between;
  padding-bottom: 0;
  display: flex;
}

.single-logo-three {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  grid-template: "."
                 "."
                 / 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.our-app-section-three {
  background-color: rgba(238, 240, 255, .75);
  padding-top: 40px;
  padding-bottom: 35px;
}

.our-app-wrapper-three {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  display: grid;
}

.our-app-content-block-three {
  max-width: 520px;
  position: relative;
}

.newsletter-section-three.section-gap-y-axis {
  overflow: hidden;
}

.newsletter-wrapper-three {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  justify-items: stretch;
  display: flex;
  position: relative;
}

.newsletter-image-block-three {
  border-radius: 15px;
}

.newsletter-image-three {
  border-radius: 15px;
  width: 420px;
}

.spark-shape {
  position: absolute;
  top: -45px;
  bottom: auto;
  left: 0;
  right: auto;
}

.hight-light-shape-newsletter {
  position: absolute;
  top: -14%;
  bottom: auto;
  left: auto;
  right: 0;
}

.newsletter-content-block-three {
  max-width: 390px;
}

.testimonial-three-wrapper {
  position: relative;
}

.testimonial-three-slide-block {
  margin-top: 45px;
}

.testimonial-three-title {
  text-align: center;
  margin: 0 auto 15px;
  font-weight: 700;
}

.testimonial-title-desc {
  text-align: center;
  max-width: 420px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-three-slider-wrap {
  background-color: var(--transparent);
  height: auto;
}

.testimonial-three-slider-mask {
  width: 100%;
  height: auto;
}

.slide-nav {
  display: none;
}

.slider-three-right-arrow {
  border: 2px solid #98a4fe;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  right: -20px;
}

.slider-three-left-arrow {
  border: 2px solid #98a4fe;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  left: -20px;
}

.testimonial-three-slide {
  width: 100%;
  height: auto;
  margin-right: 20px;
  padding-top: 30px;
}

.testimonial-three-slide.small-device {
  width: 32%;
}

.testimonial-three-content-one {
  background-color: #eef0ff;
  border-radius: 20px;
  justify-content: space-between;
  padding: 31px 18px 13px 23px;
}

.testimonial-three-content-one.small-device {
  width: 100%;
}

.features-card-two-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  display: grid;
}

.features-card-two {
  border: 1px solid #dde1ff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 15px 25px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.features-card-two:hover {
  background-color: #dde1ff;
}

.testimonial-profile-wrap {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 21px;
  display: flex;
  position: relative;
}

.tetimonial-user-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.user-designation {
  line-height: 1.5;
}

.profile-star-image-wrap {
  background-color: #171717;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 48px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: 0%;
}

.profile-star-image-wrap.primary-color-bg {
  background-color: var(--primary-color);
}

.star-image-default {
  position: absolute;
}

.testimonial-content-desc {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.testimonial-three-link-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.template-link-wrap {
  background-color: var(--secondary-color);
  border-radius: 50px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: background-color .3s;
  display: flex;
}

.template-link-wrap:hover {
  background-color: var(--primary-color);
}

.template-link {
  color: var(--secondary-color);
  line-height: 1.44;
  text-decoration: underline;
  transition: color .3s;
}

.template-link:hover {
  color: var(--primary-color);
}

.testimonial-three-content-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: flex-end;
  display: flex;
}

.testimonial-three-content-two {
  z-index: 2;
  background-color: #eef0ff;
  border-radius: 20px;
  justify-content: space-between;
  padding: 31px 18px 13px 23px;
  position: relative;
}

.testimonial-three-content-three {
  background-color: #eef0ff;
  border-radius: 20px;
  justify-content: space-between;
  padding: 31px 18px 13px 23px;
}

.testimonial-three-slider-wrap-phone {
  background-color: var(--transparent);
  height: auto;
  display: none;
}

.about-hero-wrapper {
  padding-top: 40px;
}

.about-hero-content-wrap {
  z-index: 1;
  position: relative;
}

.about-title-block {
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.about-title-description {
  text-align: left;
  max-width: 443px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: auto;
  display: inline-block;
}

.about-title-shape-wrap {
  margin-left: 10px;
  display: inline-block;
}

.about-hero-image-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: -50px;
  display: flex;
}

.about-funfact-wrapper {
  padding-bottom: 60px;
}

.about-image-wrap {
  flex: 0 auto;
  position: relative;
}

.fun-fact-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  justify-content: space-around;
  align-items: center;
  justify-items: stretch;
  display: grid;
}

.funfact-title {
  color: var(--secondary-color);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.about-bg-image {
  border-radius: 15px;
  width: 90%;
}

.about-title-block-shape {
  width: 80px;
  position: absolute;
  top: 80px;
  bottom: auto;
  left: auto;
  right: 150px;
}

.about-image-highlight-shape {
  position: absolute;
  top: -11%;
  bottom: auto;
  left: auto;
  right: 1%;
}

.our-mission-title-wrap {
  padding-top: 32px;
  position: relative;
}

.our-mission-titile {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}

.our-mission-content-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 30px;
  display: grid;
}

.our-mission-image-block {
  border-radius: 15px;
  display: inline-block;
  position: relative;
}

.our-mission-vector-two {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.our-mission-vector-two.rotate-animation {
  display: none;
}

.ourmisson-banner {
  border-radius: 15px;
  position: absolute;
  top: auto;
  bottom: -28px;
  left: auto;
  right: -40px;
  transform: rotate(-5deg);
}

.ourmission-banner-bg {
  border-radius: 15px;
}

.our-mission-content {
  margin-top: 40px;
}

.our-mission-content-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.our-mission-description {
  margin-bottom: 0;
}

.our-vission-content {
  margin-top: 60px;
  padding-left: 20px;
}

.ourmissson-highlight-shape {
  position: absolute;
  top: -10%;
  bottom: auto;
  left: -11.5%;
  right: auto;
}

.ourmissson-highlight-shape.spark-one-animation {
  display: none;
}

.client-slider-section-about.padding-bottom-130px {
  overflow: hidden;
}

.our-app-section-about {
  background-color: rgba(238, 240, 255, .75);
  padding-top: 40px;
  padding-bottom: 35px;
}

.secure-wrapper {
  position: relative;
}

.secure-title-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.secure-title {
  max-width: 390px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 700;
}

.secure-description {
  max-width: 420px;
  margin-bottom: 0;
}

.secure-content-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  display: grid;
}

.secure-content-card {
  border: 1px solid #dde1ff;
  border-radius: 10px;
  padding: 45px 20px;
}

.secure-icon {
  position: absolute;
}

.secure-card-image-wrap {
  margin-bottom: 20px;
  position: relative;
}

.secure-cart-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.secure-card-description {
  margin-bottom: 0;
}

.our-team-section {
  overflow: hidden;
}

.our-team-title-block {
  position: relative;
}

.our-team-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}

.our-team-description {
  text-align: center;
  max-width: 420px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.our-team-slider-wrap {
  background-color: var(--transparent);
  height: auto;
  margin-top: 40px;
}

.our-team-slider-mask {
  width: 300px;
  overflow: visible;
}

.our-team-slider {
  width: 100%;
  margin-right: 30px;
}

.our-team-slider-left-arrow {
  display: none;
}

.our-team-slider-right-arrow {
  display: none;
  right: 30%;
}

.slide-nav-team-sider {
  display: none;
}

.member-image {
  border-radius: 10px;
}

.member-details-wrap {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.member-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
}

.job-title {
  color: #7e7c7c;
  line-height: 1.57;
}

.member-social-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  display: flex;
}

.social-link-wrap {
  background-color: #eef0ff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  position: relative;
}

.social-icon {
  width: 18px;
  height: 18px;
  position: absolute;
}

.social-icon-white {
  width: 18px;
  height: 18px;
}

.our-team-slider-block {
  position: relative;
}

.spark-shape-image {
  z-index: 1;
  position: absolute;
  top: -12%;
  bottom: auto;
  left: -5%;
  right: auto;
}

.ourteam-shape {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.secure-bottom-shape {
  display: none;
  position: absolute;
  top: auto;
  bottom: -18%;
  left: -100px;
  right: auto;
}

.ourmission-vector-one {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0;
  right: auto;
}

.footer-section-two {
  background-color: var(--primary-color);
  background-image: linear-gradient(#5367fe, #4a2dcc);
}

.logo-image-two {
  width: 116px;
}

.feature-hero-wrapper {
  padding-top: 40px;
}

.feature-hero-content-wrap {
  position: relative;
}

.feature-title-block {
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.feature-title-description {
  text-align: left;
  max-width: 443px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: auto;
  display: inline-block;
}

.feature-hero-button-wrap {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.feature-hero-image-block {
  z-index: -1;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: -200px;
  display: flex;
  position: relative;
}

.feature-funfact-wrapper {
  padding-bottom: 40px;
}

.feature-fun-fact-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  justify-content: space-around;
  align-items: center;
  justify-items: stretch;
  display: grid;
}

.feature-image-wrap {
  border-radius: 15px;
  flex: 0 auto;
  position: relative;
}

.feature-bg-image {
  border-radius: 15px;
}

.feature-image-highlight-shape {
  position: absolute;
  top: -10%;
  bottom: auto;
  left: auto;
  right: -10%;
}

.feature-image-highlight-shape.spark-two-animation {
  display: none;
}

.feature-hero-title {
  text-align: left;
  font-size: 54px;
  line-height: 1.5;
  display: inline;
}

.feature-hero-title-wrap {
  max-width: 557px;
}

.feature-title-shape-wrap {
  margin-left: 10px;
  display: inline-block;
}

.get-start-button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.get-start-button-primary:hover {
  background-color: var(--secondary-color);
}

.feature-hero-shape-two {
  position: absolute;
  top: auto;
  bottom: 180px;
  left: 310px;
  right: auto;
}

.feature-hero-shape-one {
  position: absolute;
  top: auto;
  bottom: 166px;
  left: 0;
  right: auto;
}

.footer-link-two {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.footer-link-two:hover {
  color: #c7c7c7;
}

.our-app-section-feature {
  background-color: rgba(238, 240, 255, .75);
  padding-top: 40px;
  padding-bottom: 35px;
}

.feature-bitcon-sticker {
  border-radius: 10px;
  position: absolute;
  top: auto;
  bottom: 15px;
  left: auto;
  right: 16px;
  box-shadow: 0 4px 25px rgba(83, 103, 254, .25);
}

.features-section {
  background-color: rgba(238, 240, 255, .75);
}

.features-section.remove-bg {
  background-color: rgba(255, 255, 255, 0);
}

.features-block {
  position: relative;
}

.feautre-section-shape-one {
  position: absolute;
  top: -23px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.feautre-section-shape-two {
  position: absolute;
  top: 28px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.feautre-section-shape-two.high-light-one-animation {
  width: 80px;
}

.explore-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.explore-image-wrap {
  border-radius: 15px;
  position: relative;
}

.explore-banner-image {
  border-radius: 15px;
}

.explore-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
}

.explore-description {
  max-width: 445px;
  margin-bottom: 25px;
}

.explore-service-list-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.explore-service-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.wavy-check-mark {
  align-self: flex-start;
  margin-top: 2px;
}

.explore-service {
  color: #353535;
  line-height: 1.5;
}

.explore-button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.explore-button-primary:hover {
  background-color: var(--secondary-color);
}

.explore-button-wrap {
  margin-top: 30px;
  display: inline-block;
}

.explore-image-shape {
  display: none;
  position: absolute;
  top: -8%;
  bottom: auto;
  left: -9%;
  right: auto;
}

.priceing-breadcrumb-title-wrap {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  max-width: 570px;
  display: flex;
}

.breadcrumb-description {
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.price-breadcrumb-shape-one {
  position: absolute;
  top: 88px;
  bottom: auto;
  left: 2%;
  right: auto;
}

.price-breadcrumb-shape-two {
  position: absolute;
  top: auto;
  bottom: -34px;
  left: auto;
  right: 2%;
}

.priceing-breadcrumb-wrapper {
  padding-top: 65px;
  position: relative;
}

.pricing-plan-section {
  background-color: rgba(238, 240, 255, .75);
}

.priceing-plan-wrapper {
  padding-top: 60px;
}

.pricine-plan-button-wrap {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  justify-content: center;
  display: flex;
  position: relative;
}

.pricine-plan-wrap {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 29px 32px 35px;
}

.pricine-plan-wrap.standard {
  border: 0px none var(--transparent);
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.price-leavel {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.price-wrap {
  flex-direction: row;
  align-items: flex-end;
  display: flex;
}

.price-range {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.25;
}

.days {
  align-self: flex-end;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.business-quality {
  color: var(--secondary-color);
  margin-top: 7px;
  margin-bottom: 23px;
  line-height: 1.5;
}

.business-quality.text-white {
  color: var(--white);
}

.price-plan-list-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.price-plan-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.price-plan {
  line-height: 1.5;
}

.priceing-button-outline {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  color: var(--primary-color);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color .3s, background-color .3s;
  display: flex;
}

.priceing-button-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.creadit-card-text {
  color: #7e7c7c;
  text-align: center;
  line-height: 1.5;
}

.creadit-card-text.text-white {
  color: var(--white);
}

.popular-banner {
  z-index: 1;
  text-align: center;
  background-color: #fbce3c;
  justify-content: center;
  align-items: center;
  width: 178px;
  height: 44px;
  display: flex;
  position: absolute;
  top: 17px;
  bottom: auto;
  right: -35px;
  transform: rotate(39.77deg);
}

.populer-banner-text {
  color: var(--secondary-color);
}

.priceing-button-secondary {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  color: var(--primary-color);
  text-align: center;
  border-radius: 50px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.priceing-button-secondary:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white);
}

.monhtly-priceing-plan-block, .annual-priceing-plan-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  display: grid;
}

.switch-wrap {
  border: 2px solid var(--secondary-color);
  border-radius: 34px;
  align-items: center;
  width: 55px;
  height: 32px;
  display: flex;
}

.swith {
  background-color: var(--secondary-color);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  margin-right: 6px;
}

.discount-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
  position: absolute;
  top: -50%;
  bottom: auto;
  left: 61%;
  right: auto;
}

.discount-text {
  color: var(--primary-color);
  font-family: Coveredbyyourgrace, sans-serif;
  font-size: 22px;
  line-height: 1.63;
}

.our-app-section-price {
  background-color: rgba(238, 240, 255, .75);
  padding-top: 40px;
  padding-bottom: 35px;
}

.priceing-faq-section.section-gap-y-axis {
  overflow: hidden;
}

.pricing-faq-wrapper, .priceing-faq-title-block {
  position: relative;
}

.priceing-faq-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 400px 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  padding-top: 58px;
  display: grid;
}

.price-faq-question-wrap {
  background-color: rgba(221, 225, 255, .25);
  border: 1px solid rgba(221, 225, 255, .25);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  padding: 80px 21px 66px;
  display: flex;
}

.faq-section-shape {
  position: absolute;
  top: -50px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.pricing-faq-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}

.faq-title-description {
  text-align: center;
  max-width: 360px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.inbox-image {
  margin-bottom: 25px;
}

.price-faq-qesction {
  text-align: center;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 10px;
}

.faq-qesction-description {
  text-align: center;
  max-width: 300px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.arrow-button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.arrow-button-primary:hover {
  background-color: var(--secondary-color);
}

.arrow-button-primary-wrap {
  display: inline-block;
}

.faq-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
  position: relative;
}

.faq-title {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.icon-block {
  justify-content: center;
  align-items: center;
  min-width: 15px;
  min-height: 11px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  position: relative;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #dde1ff;
  border-radius: 10px;
  display: block;
}

.accordion-item-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding: 15px;
  display: flex;
  position: relative;
}

.add-icon {
  position: absolute;
}

.faq-shape {
  position: absolute;
  top: -47px;
  bottom: auto;
  left: auto;
  right: -45px;
}

.faq-shape.spark-two-animation {
  display: none;
}

.blog-breadcrumb-title-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 45px;
  display: grid;
}

.blog-search {
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.blog-search-input {
  color: #7e7c7c;
  border: 0 solid #000;
  border-bottom: 2px solid #e7e9ff;
  flex: 1;
  align-self: center;
  height: 52px;
  margin-bottom: 20px;
  padding: 0 103px 0 0;
  line-height: 1.5;
}

.blog-search-button {
  background-color: var(--primary-color);
  background-image: url('../images/search-normal.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50px;
  align-self: flex-start;
  padding: 8px 10px 8px 38px;
  line-height: 1.5;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.serach-block-description {
  color: var(--text-color);
}

.blog-breadcrumb-title {
  max-width: 470px;
  font-size: 54px;
}

.feature-blog-section {
  background-color: rgba(238, 240, 255, .75);
}

.feature-blog-section.section-gap-y-axis {
  overflow: hidden;
}

.feature-blog-wrapper {
  position: relative;
}

.feature-blog-list {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: row-reverse;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.feature-blog-item {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.feature-blog-image-link {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.blog-image {
  border-radius: 10px;
}

.feature-blog-meta-wrap {
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
}

.category {
  color: #7e7c7c;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

.category:hover {
  color: var(--primary-color);
}

.meta-date {
  color: #7e7c7c;
  line-height: 1.5;
}

.feature-blog-title {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.feature-blog-title:hover {
  color: var(--primary-color);
}

.read-more-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #5367fe;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
}

.feature-blog-shape-one {
  position: absolute;
  top: -80px;
  bottom: auto;
  left: 0;
  right: auto;
}

.feature-blog-shape-spark {
  position: absolute;
  top: -50px;
  bottom: auto;
  left: auto;
  right: -50px;
}

.feature-blog-shape-spark.spark-one-animation {
  display: none;
}

.blogs-section-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 700;
}

.blogs-collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  margin-top: 30px;
  display: grid;
}

.blogs-item {
  padding-bottom: 10px;
}

.blog-image-link {
  border-radius: 10px;
  overflow: hidden;
}

.feature-blog-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.blog-meta-wrap {
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
}

.blog-title {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.blog-title:hover {
  color: var(--primary-color);
}

.all-blog-tab-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  display: flex;
}

.all-blog-tab-link {
  background-color: var(--transparent);
  color: var(--primary-color);
  border: 1px solid #5367fe;
  border-radius: 50px;
  padding: 7px 20px;
}

.all-blog-tab-link.w--current {
  background-color: var(--primary-color);
  color: var(--white);
}

.blog-tab-content {
  padding-top: 40px;
}

.pagination {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 20px;
}

.primary-next-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.primary-next-button:hover {
  background-color: var(--secondary-color);
}

.primary-previous-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  align-items: center;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.primary-previous-button:hover {
  background-color: var(--secondary-color);
}

.our-app-section-blog {
  background-color: rgba(238, 240, 255, .75);
  padding-top: 40px;
  padding-bottom: 35px;
}

.previous-button-icon {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.blog-details-section {
  padding-top: 65px;
}

.blog-details-content-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 550px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-details-image-link, .blog-details-image {
  border-radius: 10px;
}

.blog-detail-meta-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
}

.blog-detail-category {
  color: #7e7c7c;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

.blog-detail-category:hover {
  color: var(--primary-color);
}

.blog-detail-meta-date {
  color: #7e7c7c;
  line-height: 1.5;
}

.blog-detail-title {
  margin-bottom: 25px;
  font-size: 40px;
  line-height: 1.24;
}

.blog-rich-text {
  color: var(--text-color);
  max-width: 550px;
}

.blog-rich-text h2 {
  margin-top: 60px;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

.blog-rich-text p {
  margin-bottom: 20px;
}

.blog-rich-text ul {
  margin-bottom: 60px;
}

.blog-side-bar-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.recent-blog-collection-list-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
}

.recent-blog-collection-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.recent-blog-item-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: rgba(238, 240, 255, .75);
  border-radius: 10px;
  flex-direction: row;
  align-items: center;
  padding: 17px 15px;
  display: flex;
}

.recent-blog-image-wrap {
  object-fit: cover;
  flex: none;
  width: 100px;
  height: 100px;
}

.recent-blog-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.recent-blog-image-link {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.recent-blog-title {
  color: var(--secondary-color);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.blog-short-description {
  color: var(--text-color);
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.5;
}

.recent-blog-block {
  margin-bottom: 40px;
}

.blog-tag-block {
  margin-bottom: 60px;
}

.blog-tag-collection-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.blog-tag {
  color: var(--primary-color);
  line-height: 1.5;
}

.blog-tag-link {
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 5px 15px;
  text-decoration: none;
}

.join-naw-block {
  background-color: rgba(238, 240, 255, .75);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  padding: 50px 60px 40px;
  display: flex;
  position: relative;
}

.join-naw-image-wrap {
  background-color: var(--primary-color);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 21px;
  display: inline-block;
}

.join-now-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.join-naw-description {
  text-align: center;
  max-width: 250px;
  margin-bottom: 24px;
}

.join-button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.join-button-primary:hover {
  background-color: var(--secondary-color);
}

.join-now-spark-shape {
  position: absolute;
  top: -50px;
  bottom: auto;
  left: auto;
  right: -50px;
}

.join-now-spark-shape.spark-two-animation {
  display: none;
}

.related-blogs-list-wrapper {
  margin-top: 40px;
}

.related-blog-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.related-blogs-item {
  padding-bottom: 10px;
}

.related-blog-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}

.ourrelated-blog-section {
  padding-top: 70px;
}

.ourrelated-blog-title-description {
  max-width: 400px;
  margin-bottom: 0;
}

.breadcrumb-wrapper {
  padding-top: 65px;
  position: relative;
}

.breadcrumb-shape-one {
  position: absolute;
  top: 88px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.breadcrumb-shape-two {
  position: absolute;
  top: auto;
  bottom: -34px;
  left: auto;
  right: 0%;
}

.breadcrumb-link-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.breadcrumb-link {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb-link:hover {
  color: var(--primary-color);
}

.breadcrumb-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.category-breadcrumb-title {
  text-align: center;
  margin-top: 10px;
}

.category-blog-section {
  background-color: rgba(238, 240, 255, .75);
}

.blog-category-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-tag-section {
  background-color: rgba(238, 240, 255, .75);
}

.blog-tag-detail-collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-hero-section {
  padding-top: 65px;
}

.contact-hero-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-title-wrap {
  padding-bottom: 40px;
  position: relative;
}

.contact-image-wrap {
  border-radius: 10px;
  display: inline-block;
  position: relative;
}

.contact-title-desc {
  max-width: 350px;
  margin-bottom: 0;
}

.contact-form {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.input-text-field {
  color: var(--secondary-color);
  border: 0 solid #000;
  border-bottom: 1px solid #7e7c7c;
  margin-bottom: 22px;
  padding: 8px 15px 8px 0;
}

.input-text-field::placeholder {
  color: var(--secondary-color);
}

.text-aria {
  border: 0 solid #000;
  border-bottom: 1px solid #7e7c7c;
  min-height: 100px;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 8px 15px 0 0;
  display: flex;
}

.text-aria::placeholder {
  color: var(--secondary-color);
}

.contact-input-group {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.submitted-button {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  background-image: url('../images/getstart-btn-arow.svg');
  background-position: 80%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50px;
  margin-top: 30px;
  padding: 9px 60px 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
}

.submitted-button:hover {
  background-color: var(--secondary-color);
}

.contact-banner-image {
  border-radius: 10px;
}

.contact-title-shape {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: auto;
  right: 0%;
}

.contact-banner-shape {
  display: none;
  position: absolute;
  top: -55px;
  bottom: auto;
  left: auto;
  right: -45px;
}

.contact-section {
  background-color: var(--primary-color);
}

.contact-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
}

.contact-email-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.contact-info-image-wrap {
  background-color: var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  display: flex;
}

.contact-info-title {
  color: #f5f5f5;
  margin-bottom: 5px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-info {
  color: #f5f5f5;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
}

.contact-info:hover {
  color: #c7c7c7;
}

.contact-phone-block, .contact-location-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.contact-faq-wrapper {
  position: relative;
}

.faq-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 400px;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  padding-top: 58px;
  display: grid;
}

.faq-question-wrap {
  background-color: rgba(221, 225, 255, .25);
  border: 1px solid rgba(221, 225, 255, .25);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  padding: 80px 21px 66px;
  display: flex;
}

.faq-qesction {
  text-align: center;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-faq-shape {
  position: absolute;
  top: -45px;
  bottom: auto;
  left: -45px;
  right: auto;
}

.contact-faq-section-shape {
  position: absolute;
  top: -50px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.varifiacation-section {
  margin-top: 50px;
  position: relative;
}

.varifiacation-section.padding-bottom-130px.extra-padding-530 {
  padding-bottom: 150px;
}

.varification-wrapper {
  justify-content: flex-end;
  display: flex;
}

.varification-wrapper.forgot {
  justify-content: flex-end;
  padding-right: 20px;
}

.varification-image-wrap {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 45%;
  position: absolute;
  top: 0;
  left: 0;
}

.varification-content-wrap {
  width: 450px;
  max-width: 490px;
  padding-top: 20px;
  padding-right: 50px;
}

.varification-content-wrap.forgot {
  flex-direction: column;
  padding-top: 80px;
}

.varification-banner-image {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.varification-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.24;
}

.varification-title-desc {
  color: var(--text-color);
  text-align: center;
}

.varification-title-desc.max-width {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.autometic-varifaction-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 25px;
  display: flex;
}

.autometic-varifaction-wrap.two {
  margin-bottom: 15px;
}

.auto-varivation-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white);
  border: 1px solid #cbd1ff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.auto-varivation-wrap:hover {
  background-color: rgba(83, 103, 254, .5);
}

.verify-id {
  color: var(--secondary-color);
  font-weight: 500;
  line-height: 1.44;
}

.continew-with-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.solid-border-divider {
  background-color: #e1e4eb;
  width: 100px;
  height: 1px;
}

.continew-with-text {
  color: #4a4a4a;
}

.validation-input-form-block {
  margin-top: 15px;
}

.validation-input-form {
  flex-direction: column;
  display: flex;
}

.validation-input-form.two {
  margin-top: 25px;
}

.validation-input-field-level {
  color: #000;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.44;
}

.varidation-form-text-field {
  border: 1px solid #cbd1ff;
  border-radius: 10px;
  height: 52px;
  margin-bottom: 15px;
  padding: 10px 10px 12px;
}

.varidation-form-text-field::placeholder {
  color: #7e7c7c;
}

.validation-checkbox {
  color: #7e7c7c;
  margin-bottom: 0;
  padding-left: 5px;
  line-height: 1.5;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.checkbox {
  width: 16px;
  height: 16px;
  margin-top: 0;
}

.validation-form-condition-wrap {
  justify-content: space-between;
  margin-top: -5px;
  margin-bottom: 15px;
  display: flex;
}

.validation-form-condition-wrap.two {
  margin-top: 0;
  margin-bottom: 27px;
}

.forgot-link {
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.login-condition-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.login-condition-block.two {
  margin-bottom: 20px;
}

.login-conditon-title {
  color: #353535;
}

.register-link {
  color: var(--text-color);
  text-decoration: none;
  transition: color .3s;
}

.register-link:hover {
  color: var(--primary-color);
}

.sing-in-button {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  padding: 12px 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
}

.sing-in-button:hover {
  background-color: var(--secondary-color);
}

.varification-image-shape {
  display: none;
  position: absolute;
  top: -55px;
  bottom: auto;
  left: auto;
  right: -50px;
}

.validation-form-name-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.terms-of-service-link, .privacy-policy-link {
  color: var(--primary-color);
  text-decoration: none;
}

.sing-up-button {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  padding: 12px 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
}

.sing-up-button:hover {
  background-color: var(--secondary-color);
}

.login-link {
  color: var(--text-color);
  text-decoration: none;
  transition: color .3s;
}

.login-link:hover {
  color: var(--primary-color);
}

.subbmit-button {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  margin-top: 15px;
  padding: 12px 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
}

.subbmit-button:hover {
  background-color: var(--secondary-color);
}

._404-image {
  margin-bottom: 35px;
}

._404-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.24;
}

._404-page-description {
  color: var(--text-color);
  max-width: 420px;
}

.back-to-home-btn {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.back-to-home-btn:hover {
  background-color: var(--secondary-color);
}

.back-to-home-btn-wrap {
  margin-top: 25px;
}

.breadcrumb-section-title {
  font-size: 40px;
}

.breadcrumb-section-title.blod {
  font-weight: 700;
}

.breadcumb-section {
  background-color: #eef0ff;
}

.content-title {
  font-size: 22px;
  font-weight: 500;
}

.changlelog-breadcrumb-wrapper {
  align-items: center;
}

.changelog-content {
  flex-direction: column;
  align-items: center;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
}

.initial-released-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.date {
  font-weight: 500;
}

.changlelog-content-sub-title {
  text-align: center;
  padding-top: 15px;
  font-weight: 500;
}

.initial-text {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 7px;
  display: inline-block;
}

.license-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: grid;
}

.license-inner {
  flex: 0 auto;
}

.license-single-item {
  background-color: #fff;
  border: 1px solid rgba(83, 103, 254, .4);
  border-radius: 10px;
  padding: 40px;
  transition: box-shadow .3s;
}

.license-single-item:hover {
  box-shadow: 0 4px 10px rgba(83, 103, 254, .4);
}

.licenses-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 26px;
}

.license-details {
  color: #565555;
  font-size: 16px;
}

.license-link {
  color: #121212;
  text-transform: capitalize;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
}

.license-link:hover {
  color: var(--primary-color);
}

.reset-input-form {
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.search-section.padding-bottom-130px {
  margin-top: 40px;
}

.search-result-link {
  color: var(--primary-color);
}

.title-shape-span {
  font-size: 30px;
}

.lates-blog-section.padding-bottom-130px {
  padding-bottom: 90px;
}

.lates-blog-title-wrap.two {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.lates-blog-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 800;
}

.lates-blog-title.two {
  text-align: left;
  max-width: 300px;
  margin-bottom: 0;
}

.lates-blog-title.three {
  font-weight: 700;
}

.lates-title-description {
  text-align: center;
  max-width: 400px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.lates-title-description.two {
  text-align: left;
  max-width: 390px;
  margin-right: 50px;
}

.spark-image-home-three {
  position: absolute;
  top: -45px;
  bottom: auto;
  left: -40px;
  right: auto;
}

.getstart-shape {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.slider-three-shape-one {
  position: absolute;
  top: -35px;
  left: 0%;
  right: auto;
}

.slider-three-shape-two {
  position: absolute;
  top: 80px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.preview-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
}

.preview-title.text-white {
  color: #fff;
  max-width: 740px;
}

.preview-video-lightbox-block {
  box-shadow: none;
  color: #01001a;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow .3s, transform .3s;
  display: flex;
}

.preview-video-lightbox-block:hover {
  transform: translate(0, -3px);
  box-shadow: 0 20px 94px rgba(10, 66, 167, .55);
}

.preview-hero-excerpt {
  color: var(--white);
  text-align: center;
  max-width: 505px;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 18px;
}

.preview-heading {
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 600;
}

.badge {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
}

.preview-feature-item {
  border: 1px dashed #fff;
  border-radius: 8px;
}

.preview-section-title-block {
  max-width: 940px;
}

.preview-section-title-block.text-center {
  text-align: center;
}

.preview-section-title-block.text-center.preview-margin-bottom-50 {
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.preview-feature-icon {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 10px;
}

.preview-feature-icon.light-blue-color {
  background-color: #f1f2ff;
  border-radius: 8px;
}

.preview-feature-icon.light-orange-color {
  background-color: #fff2e7;
}

.preview-feature-icon.light-green-color {
  background-color: #defcff;
}

.preview-feature-grid-box {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.preview-feature-excerpt {
  color: #333;
}

.preview-title-8 {
  font-size: 18px;
}

.preview-title-8.font-weight-500 {
  font-weight: 500;
}

.preview-single-template-feature {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 8px;
  padding: 35px 20px;
  box-shadow: 8px 0 25px rgba(0, 0, 0, .05);
}

.preview-single-template-feature.text-center {
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.template-feature-icon-block {
  text-align: center;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 10px;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  line-height: 100px;
  box-shadow: 0 10px 45px rgba(0, 0, 0, .08);
}

.preview-essential-features-grid-box {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.preview-page-name {
  z-index: 3;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  width: 200px;
  padding: 8px 20px;
  font-size: 18px;
  position: absolute;
  top: auto;
  bottom: 15px;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.preview-single-page-block {
  border: 1px #000;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.template-showcase-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.preview-thumb.comming-soon {
  position: relative;
}

.preview-page-overlay {
  z-index: 1;
  background-image: linear-gradient(rgba(196, 196, 196, 0), rgba(7, 6, 40, .65));
  width: 100%;
  height: 60%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.preview-page-overlay.coming-soon {
  background-image: linear-gradient(rgba(7, 6, 40, .75), rgba(7, 6, 40, .65));
  height: 100%;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.preview-image {
  width: 100%;
}

.template-showcase-section {
  position: relative;
}

.preview-single-page {
  cursor: pointer;
  border-radius: 5px;
  transition: all .3s;
  display: block;
  position: relative;
  overflow: hidden;
}

.preview-surprises-image-block.postition {
  position: relative;
}

.surprises-image {
  z-index: 1;
}

.surprises-image.heder {
  width: 100%;
  padding-right: 60px;
}

.preview-surprises-content-block {
  max-width: 370px;
}

.preview-surprises-content-block.blog {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.preview-surprises-content-block.header {
  align-self: center;
  padding-top: 0;
  padding-bottom: 0;
}

.preview-surprises-box-block {
  border-radius: 15px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

.preview-surprises-box-block.blog-section {
  flex-direction: row-reverse;
}

.preview-surprises-box-block.margin-bottom-130px {
  margin-bottom: 100px;
}

.preview-surprises-content-excerpt {
  margin-top: 20px;
}

.preview-footer-section {
  position: relative;
}

.preview-footer-section.preview-footer-background-image {
  background-image: url('../images/Footer.jpg');
  background-position: 50%;
  background-size: cover;
  height: 600px;
  max-height: 600px;
}

.button-inline-block {
  display: inline-block;
}

.preview-footer-content-block {
  margin-top: 140px;
  padding-left: 15px;
  padding-right: 15px;
}

.preview-footer-title {
  color: var(--white);
  text-align: center;
  max-width: 750px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  line-height: 1.27;
}

.preview-footer-excerpt {
  max-width: 580px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 500;
}

.preview-footer-excerpt.text-white {
  color: #fff;
  text-align: center;
}

.preview-footer-button-block {
  text-align: center;
}

.preview-cta-excerpt.text-white {
  color: #fff;
}

.preview-title-3 {
  font-size: 33px;
  line-height: 1.21;
}

.preview-title-3.text-white {
  color: #fff;
}

.preview-cta-content-block {
  max-width: 695px;
}

.preview-cta-content-box {
  background-color: #4354ff;
  background-image: url('../images/cta-bg-2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 34px 40px;
  display: flex;
}

.get-in-touch-button {
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  background-color: #346dff;
  padding: 10px 32px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  transition: color .3s, background-color .3s;
}

.get-in-touch-button:hover {
  color: #fff;
  background-color: #051424;
  text-decoration: none;
}

.get-in-touch-button.button-white {
  color: #051424;
  background-color: #fff;
  border-radius: 5px;
}

.get-in-touch-button.button-white:hover {
  color: #fff;
  background-color: #051424;
}

.easy-to-way-section-titile-block {
  padding-bottom: 0;
  position: relative;
}

.accordion-dropdown-body {
  z-index: 1;
  background-color: var(--transparent);
  display: block;
  position: relative;
  overflow: hidden;
}

.accordion-dropdown-body.w--open {
  background-color: var(--transparent);
}

.accordion-container {
  background-color: #fff;
  position: relative;
}

.accrodion-dropdown {
  border: 1px solid #dde1ff;
  border-radius: 10px;
  padding: 12px 15px 13px 16px;
  display: block;
}

.accordion-toggle {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  white-space: normal;
  padding: 0;
  display: flex;
}

.accordion-dropdown-text {
  background-color: var(--transparent);
  margin-top: 5px;
  margin-bottom: 0;
}

.coming-soon-image {
  z-index: 1;
  position: absolute;
  top: 50%;
  bottom: 0%;
  left: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
}

.reuseable-page-section {
  background-image: url('../images/resuse-able-Bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.reuseable-page-section.section-gap-y-axis {
  background-image: url('../images/Bg.jpg');
  background-position: 50%;
  background-size: cover;
}

.landing-page-section-title {
  color: #01001a;
  text-align: center;
  max-width: 490px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
  line-height: 1.2;
}

.section-image {
  border-radius: 5px;
}

.reuseable-page-titile-block {
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.reuseable-card-image {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.landing-page-subtitle {
  color: #ff541e;
  text-align: center;
  max-width: 580px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.reuseable-section-card-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.preview-sub-title {
  font-weight: 500;
  line-height: 1.5;
}

.blog-vector-shape {
  width: 180px;
  display: none;
  position: absolute;
  top: 130px;
  bottom: auto;
  right: -120px;
}

.header-section-shape {
  width: 100px;
  position: absolute;
  top: 140px;
  bottom: 0%;
  left: auto;
  right: 10px;
}

.preview-header-wrap {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.preview-header-nav-inner {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 35px;
}

.preview-header-navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-preview {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.preview-menu-list {
  margin-left: 0;
  margin-right: 5px;
}

.preview-menu-text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.nav-dropdown-icon-preview {
  margin-right: 10px;
}

.preview-menu-link {
  color: #f5f5f5;
  letter-spacing: .25px;
  padding: 5px 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.preview-menu-link:hover {
  color: #c7c7c7;
}

.preview-menu-link.w--current {
  color: var(--primary-color);
}

.privew-button-primary {
  background-color: var(--white);
  color: var(--secondary-color);
  text-align: center;
  border-radius: 50px;
  padding: 9px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color .3s, background-color .3s;
}

.privew-button-primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.preview-hero-titile-block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.preview-hero-block {
  padding-top: 30px;
}

.preview-video-lightbox-wrapper {
  margin-top: 20px;
}

.preview-container {
  max-width: 960px;
}

.preview-video-lightbox-wrapper-2 {
  margin-top: 40px;
}

.preview-hero-section {
  background-image: url('../images/Bg_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.preview-title-features {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1;
}

.preview-feature-inner {
  background-color: #fff;
  border-radius: 7px;
  padding-bottom: 35px;
  padding-left: 20px;
  padding-right: 20px;
}

.preview-single-feature-box {
  background-image: linear-gradient(rgba(198, 202, 240, 0), #b0b6e9);
  border-radius: 8px;
}

.preview-single-feature-box.light-orange-color {
  background-image: linear-gradient(rgba(0, 68, 255, 0), #ffbc7d);
}

.preview-single-feature-box.light-green-color {
  background-image: linear-gradient(rgba(148, 219, 226, 0), #82dde5);
}

.preview-feature-content {
  text-align: center;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.margin-bottom-130px {
  margin-bottom: 100px;
}

.section-image-wrap {
  border-radius: 5px;
  transition: box-shadow .3s;
  overflow: hidden;
}

.section-image-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
}

.social-icon-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.others-icon {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-image, .social-icon-image {
  width: 30px;
}

.socila-icon-text {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.password-protected-title {
  margin-top: 30px;
  margin-bottom: 40px;
}

.location-info {
  color: #f5f5f5;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.forgot-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.forgot-image {
  border-radius: 10px;
}

.view-more-button-wrap {
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.text-span {
  color: var(--primary-color);
}

.bold-text, .bold-text-2 {
  font-weight: 400;
}

.italic-text {
  font-style: normal;
}

.overtitle {
  color: #2b4f77;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.text-span-2, .text-span-3, .text-span-4, .text-span-5, .text-span-6, .text-span-7, .text-span-8 {
  font-weight: 600;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.quick-stack {
  padding: 0;
}

.image {
  margin-left: 24px;
}

.text-span-9 {
  color: var(--primary-color);
}

.cell {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--text-color);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
}

.quick-stack-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding: 0;
}

.cell-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--text-color);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

.paragraph {
  color: #a6b9cf;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.paragraph.style-2 {
  margin-top: 40px;
  padding-bottom: 24px;
  font-family: Montserrat, sans-serif;
}

.text-span-10 {
  font-weight: 600;
}

.image-2 {
  margin-left: 24px;
}

.text-span-11 {
  font-weight: 600;
}

.image-3 {
  height: 56px;
  margin-left: 0;
}

.image-4 {
  margin-left: 24px;
}

.flex-block {
  justify-content: flex-start;
  align-items: center;
}

.div-block-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  align-items: flex-start;
  margin-top: 24px;
  display: flex;
}

.div-block-2.mt-16 {
  margin-top: 16px;
}

.text-block {
  color: var(--primary-color);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
}

.dettaglio-offerta {
  margin-top: 72px;
  margin-bottom: 72px;
}

.contatti {
  padding-top: 72px;
  padding-bottom: 72px;
}

.bold-text-3 {
  font-weight: 500;
}

.textarea {
  color: var(--text-color);
  border-radius: 8px;
  width: 100%;
  height: 72px;
  max-height: none;
  margin-bottom: 24px;
  font-family: Montserrat, sans-serif;
}

.form {
  width: 350px;
}

.form-block {
  width: 100%;
  margin-top: 16px;
}

.text-field, .text-field-2 {
  color: var(--text-color);
  border-radius: 8px;
  width: 100%;
  height: 44px;
  margin-bottom: 24px;
  font-family: Montserrat, sans-serif;
}

.field-label, .field-label-2, .field-label-3 {
  color: var(--text-color);
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.text-block-2 {
  color: var(--secondary-color);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.success-message {
  background-color: #dadfe9;
}

.social-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.grid-social-square {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.facebook-square {
  background-color: #2a5cc3;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.twitter-square {
  background-color: #e51f92;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.linkedin-square-icon {
  background-color: #0e6294;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.whatsapp-square {
  background-color: #45aa2e;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  display: flex;
}

.bold-text-4 {
  font-size: 32px;
}

.bold-text-5 {
  color: var(--white);
}

.text-span-12 {
  font-size: 18px;
  font-weight: 700;
}

.bold-text-6 {
  color: #fff;
  font-weight: 600;
}

.bold-text-7, .bold-text-8 {
  color: #a6b9cf;
}

.bold-text-9, .bold-text-10 {
  font-weight: 600;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 42px;
  }

  .container {
    max-width: 1170px;
  }

  .section-gap-y-axis {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .button-primary, .button-outline {
    padding: 12px 24px;
  }

  .getstart-button-wrap {
    margin-left: 20px;
  }

  .menu-list {
    margin-right: 10px;
  }

  .footer-block-wrapper {
    padding-top: 32px;
  }

  .footer-content {
    grid-template-columns: 300px 135px 190px 360px;
  }

  .footer-title {
    margin-bottom: 30px;
  }

  .footer-section {
    background-color: var(--white);
    background-image: linear-gradient(#f7f8fa, #f7f8fa);
  }

  .footer-dotted-shape-left {
    bottom: 20px;
    left: 15px;
  }

  .footer-dotted-shape-right {
    top: 20px;
    bottom: auto;
  }

  .footer-right-dotted-shape {
    display: block;
  }

  .footer-dropdown-shape-left {
    top: 70px;
  }

  .footer-dropdown-shape-right {
    display: none;
  }

  .solid-border {
    margin-top: 60px;
  }

  .home-one-hero-section.section-gap-y-axis {
    padding-top: 88px;
    padding-bottom: 0;
  }

  .home-one-hero-content-wrap {
    max-width: 500px;
  }

  .home-one-hero-image {
    width: 500px;
  }

  .hero-one-title-block {
    max-width: 500px;
    margin-bottom: 20px;
  }

  .funfact-dotted-shape-left {
    display: block;
    top: 18px;
    left: 15px;
  }

  .funfact-left-dotted-shape {
    width: auto;
  }

  .funfact-dotted-shape-right {
    display: flex;
    bottom: 18px;
    right: 15px;
  }

  .funfact-right-dotted-shape {
    width: auto;
  }

  .funfact-dropdown-shape-left {
    left: 40px;
  }

  .funfact-dreopdown-left {
    width: auto;
    margin-bottom: 20px;
  }

  .funfact-dropdown-shape-right {
    margin-top: 20px;
    display: none;
    right: 40px;
  }

  .funfact-dreopdown-right {
    width: auto;
  }

  .breadcrumb-title {
    max-width: 700px;
  }

  .choice-us-content-block-one {
    max-width: 80%;
  }

  .section-title.bold {
    max-width: 370px;
    margin-bottom: 20px;
  }

  .features-card-one {
    padding: 20px 25px;
  }

  .crypto-market-table-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .crypto-market-table-content {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
  }

  .table-data-wrap {
    width: 166px;
  }

  .table-data-wrap.width-230 {
    width: 230px;
  }

  .crypto-table-data-wrap {
    width: 166px;
  }

  .crypto-table-data-wrap.width-230 {
    width: 230px;
  }

  .getstart-section-title {
    margin-bottom: 25px;
  }

  .feature-section-title {
    margin-bottom: 20px;
  }

  .getstart-block {
    margin-top: -20px;
  }

  .getstart-content-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .getstart-card {
    padding-right: 40px;
  }

  .getstart-card-description {
    max-width: 318px;
  }

  .getstart-banner-image {
    width: auto;
    height: auto;
  }

  .padding-bottom-130px {
    padding-bottom: 110px;
  }

  .guida-la-rivoluzione {
    padding-bottom: 0;
  }

  .our-app-content-block {
    max-width: 550px;
  }

  .our-app-banner-bg {
    width: auto;
  }

  .our-app-banner-image-one {
    width: auto;
    top: 40px;
  }

  .our-app-banner-image-two {
    width: 250px;
  }

  .client-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .testimonial-slider-one-wrap {
    max-width: 400px;
    margin-top: 60px;
  }

  .testimonial-one-title {
    max-width: 350px;
  }

  .bitcoin-sticker-one {
    width: auto;
  }

  .slider-one-left-arrow {
    left: 535px;
  }

  .slider-one-right-arrow {
    right: 120px;
  }

  .client-logo-wrapper, .client-logo-inner {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .single-logo {
    max-width: 20%;
  }

  .padding-top-130px {
    padding-top: 110px;
  }

  .newsletter-section-title {
    margin-bottom: 20px;
  }

  .newsletter-input-field {
    min-height: 50px;
    padding-left: 20px;
  }

  .subscribe-button {
    padding: 13px 48px 12px 24px;
  }

  .hero-wrapper-two {
    padding-top: 59px;
  }

  .hero-two-title-block {
    margin-bottom: 0;
  }

  .hero-two-description {
    max-width: 450px;
  }

  .choice-us-content-block-two {
    max-width: 420px;
  }

  .features-card {
    padding: 20px 25px;
  }

  .getstart-banner-two {
    width: 550px;
  }

  .our-app-section-two {
    padding-bottom: 60px;
  }

  .ellipse-wrap {
    bottom: 27px;
    right: -30px;
  }

  .testimonial-two-title {
    max-width: 350px;
    top: 60px;
    left: 53.5%;
  }

  .bitcoin-sticker-two {
    width: auto;
  }

  .slider-two-left-arrow {
    left: 90px;
  }

  .slider-two-right-arrow {
    left: -20px;
  }

  .testimonial-two-slider-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .testimonial-two-content-wrap {
    max-width: 400px;
  }

  .person-stciker-two-wrap {
    left: 41%;
  }

  .bitcoin-rate-sticker-two {
    left: 70px;
  }

  .newsletter-input-field-two {
    min-height: 50px;
    padding-left: 20px;
  }

  .subscribe-button-two {
    min-height: 50px;
    padding: 13px 24px 12px;
  }

  .newsletter-ellipse-bock-two {
    bottom: 41px;
    right: 31px;
  }

  .hero-wrapper-three {
    padding-top: 45px;
  }

  .hero-title-three {
    font-size: 58px;
  }

  .hero-three-title-wrap {
    max-width: 730px;
  }

  .hero-arrow-image {
    left: 45px;
  }

  .hero-three-bottom-content-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: minmax(350px, .25fr) 362px 200px;
    margin-top: -90px;
  }

  .hero-three-subtitle {
    font-size: 40px;
  }

  .hero-three-subtitle-wrap {
    margin-top: 70px;
  }

  .hero-three-image-block {
    width: 363px;
    height: 524px;
  }

  .bitcoin-apps-image {
    top: 38px;
    right: 38px;
  }

  .hero-three-funfact-wrap {
    margin-left: -30px;
  }

  .hero-three-shape {
    right: 65px;
  }

  .choice-us-three-description {
    max-width: 450px;
  }

  .choice-us-shape-one {
    top: 30px;
  }

  .hight-light-shape {
    right: 70px;
  }

  .getstart-block-three {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .client-wrapper-three {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .single-logo-three {
    max-width: 20%;
  }

  .our-app-section-three {
    padding-bottom: 60px;
  }

  .our-app-content-block-three {
    max-width: 460px;
  }

  .newsletter-wrapper-three {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .newsletter-image-three {
    width: auto;
  }

  .spark-shape {
    left: 25px;
  }

  .spark-shape.spark-one-animation {
    display: block;
  }

  .hight-light-shape-newsletter {
    right: 70px;
  }

  .newsletter-content-block-three {
    max-width: 410px;
  }

  .testimonial-three-slide-block {
    margin-top: 65px;
  }

  .testimonial-three-title {
    margin-bottom: 20px;
  }

  .features-card-two {
    padding: 60px 25px 40px;
  }

  .testimonial-content-desc {
    font-size: 22px;
  }

  .testimonial-three-content-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .about-hero-wrapper {
    padding-top: 45px;
  }

  .about-hero-image-block {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: space-between;
    margin-top: -80px;
  }

  .about-funfact-wrapper {
    padding-bottom: 80px;
  }

  .about-bg-image {
    width: 100%;
  }

  .about-title-block-shape {
    width: auto;
  }

  .about-image-highlight-shape {
    top: -8%;
    right: -7%;
  }

  .our-mission-content-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .our-mission-vector-two.rotate-animation {
    display: block;
  }

  .ourmisson-banner {
    right: -60px;
  }

  .our-mission-content-title {
    font-size: 22px;
  }

  .our-vission-content {
    margin-top: 80px;
  }

  .ourmissson-highlight-shape {
    top: -9%;
    left: -10%;
  }

  .ourmissson-highlight-shape.spark-one-animation {
    display: block;
  }

  .our-app-section-about {
    padding-bottom: 60px;
  }

  .secure-title {
    max-width: 447px;
    font-size: 40px;
  }

  .secure-content-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .our-team-slider {
    margin-right: 50px;
  }

  .spark-shape-image {
    left: -4%;
  }

  .secure-bottom-shape {
    width: 80px;
    display: block;
    bottom: -20%;
    left: -50px;
  }

  .ourmission-vector-one {
    left: -20px;
  }

  .feature-hero-wrapper {
    padding-top: 45px;
  }

  .feature-hero-image-block {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: space-between;
    margin-top: -250px;
  }

  .feature-funfact-wrapper {
    padding-bottom: 80px;
  }

  .feature-fun-fact-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature-bg-image {
    width: 100%;
  }

  .feature-image-highlight-shape {
    top: -8%;
    right: -9%;
  }

  .feature-image-highlight-shape.spark-two-animation {
    display: block;
  }

  .feature-hero-title {
    font-size: 58px;
  }

  .feature-hero-title-wrap {
    max-width: 580px;
  }

  .get-start-button-primary {
    padding: 12px 24px;
  }

  .feature-hero-shape-two {
    bottom: 220px;
    left: 370px;
  }

  .our-app-section-feature {
    padding-bottom: 60px;
  }

  .feature-bitcon-sticker {
    bottom: 19px;
    right: 22px;
  }

  .feautre-section-shape-two.high-light-one-animation {
    width: auto;
  }

  .explore-wrapper {
    grid-column-gap: 38px;
    grid-row-gap: 38px;
  }

  .explore-title {
    font-size: 40px;
  }

  .explore-button-primary {
    padding: 12px 24px;
  }

  .explore-image-shape {
    display: block;
    left: -8%;
  }

  .price-breadcrumb-shape-one {
    top: 100px;
    left: 0%;
  }

  .price-breadcrumb-shape-two {
    right: 0%;
  }

  .price-range {
    font-size: 60px;
  }

  .priceing-button-outline, .priceing-button-secondary {
    padding: 12px 24px;
  }

  .our-app-section-price {
    padding-bottom: 60px;
  }

  .priceing-faq-block {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .price-faq-question-wrap {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .arrow-button-primary {
    padding: 12px 24px;
  }

  .faq-shape.spark-two-animation {
    display: block;
  }

  .blog-breadcrumb-title {
    max-width: 490px;
  }

  .feature-blog-image-link {
    height: 430px;
  }

  .feature-blog-shape-one {
    left: -50px;
  }

  .feature-blog-shape-spark.spark-one-animation {
    display: block;
  }

  .blogs-collection-list {
    margin-top: 40px;
  }

  .blog-title {
    font-size: 22px;
  }

  .all-blog-tab-link {
    padding: 8px 24px;
  }

  .pagination {
    margin-top: 30px;
  }

  .primary-next-button, .primary-previous-button {
    padding: 12px 24px;
  }

  .our-app-section-blog {
    padding-bottom: 60px;
  }

  .blog-details-content-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 620px 1fr;
  }

  .blog-rich-text {
    max-width: 620px;
  }

  .blog-rich-text h2 {
    font-size: 30px;
  }

  .blog-rich-text ul {
    margin-bottom: 70px;
  }

  .blog-side-bar-title {
    font-size: 22px;
  }

  .recent-blog-image-wrap {
    width: 116px;
    height: 116px;
  }

  .blog-tag-link {
    padding: 6px 20px;
  }

  .join-naw-image-wrap {
    margin-bottom: 30px;
  }

  .join-button-primary {
    width: 205px;
    padding: 12px 24px;
  }

  .join-now-spark-shape.spark-two-animation {
    display: block;
  }

  .ourrelated-blog-section {
    padding-top: 90px;
  }

  .breadcrumb-shape-one {
    top: 100px;
  }

  .contact-hero-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .input-text-field {
    margin-bottom: 32px;
  }

  .text-aria {
    min-height: 110px;
    margin-top: 40px;
  }

  .contact-input-group {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .submitted-button {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .contact-banner-shape {
    display: block;
    top: -55px;
    right: -7px;
  }

  .contact-wrapper {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-info-title {
    font-size: 16px;
  }

  .contact-info {
    font-size: 18px;
  }

  .faq-block {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .faq-question-wrap {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .contact-faq-section-shape {
    top: -60px;
  }

  .varification-content-wrap {
    width: 550px;
    max-width: 600px;
    padding-top: 40px;
    padding-right: 70px;
  }

  .varification-content-wrap.forgot {
    padding-top: 140px;
  }

  .varification-title {
    font-size: 42px;
  }

  .validation-form-condition-wrap.two {
    margin-bottom: 37px;
  }

  .login-condition-block {
    margin-bottom: 40px;
  }

  .login-condition-block.two {
    margin-bottom: 25px;
  }

  .varification-image-shape {
    display: block;
  }

  .validation-form-name-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  ._404-title {
    font-size: 42px;
  }

  .back-to-home-btn {
    padding: 12px 24px;
  }

  .breadcrumb-section-title {
    font-size: 42px;
  }

  .license-details {
    font-size: 18px;
  }

  .lates-blog-section.padding-bottom-130px {
    padding-bottom: 100px;
  }

  .lates-title-description.two {
    margin-right: 140px;
  }

  .slider-three-shape-two {
    top: 90px;
  }

  .preview-title {
    font-size: 55px;
  }

  .preview-title.text-white {
    max-width: 820px;
  }

  .preview-video-lightbox-block {
    width: 90px;
    height: 90px;
  }

  .preview-section-title-block {
    max-width: 960px;
  }

  .preview-essential-features-grid-box {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .preview-surprises-content-block {
    max-width: 440px;
  }

  .preview-surprises-content-block.blog {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .preview-surprises-box-block.margin-bottom-130px {
    margin-bottom: 110px;
  }

  .preview-surprises-content-excerpt {
    margin-top: 20px;
  }

  .preview-footer-title {
    font-size: 34px;
  }

  .accrodion-dropdown {
    padding: 16px 22px 17px 21px;
  }

  .blog-vector-shape {
    width: auto;
    right: -200px;
  }

  .header-section-shape {
    width: 110px;
    right: -10px;
  }

  .preview-menu-list {
    margin-right: 10px;
  }

  .privew-button-primary {
    padding: 12px 24px;
  }

  .preview-container {
    max-width: 1170px;
  }

  .margin-bottom-130px {
    margin-bottom: 110px;
  }

  .password-protected-title {
    margin-top: 40px;
  }

  .location-info {
    font-size: 18px;
  }

  .cell-2 {
    background-color: var(--text-color);
    border-radius: 10px;
  }

  .dettaglio-offerta {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 24px;
  }

  .container {
    max-width: 1200px;
  }

  .section-gap-y-axis {
    padding-top: 120px;
    padding-bottom: 130px;
  }

  .button-primary, .button-outline {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .menu-link {
    margin-right: 0;
  }

  .getstart-button-wrap {
    margin-left: 70px;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    margin-top: 20px;
  }

  .header-nav-inner-block {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .menu-list {
    margin-right: 12px;
  }

  .menu-link-dropdown {
    margin-right: 22px;
  }

  .footer-address {
    margin-bottom: 12px;
  }

  .footer-block-wrapper {
    padding-top: 32px;
  }

  .copy-right-block {
    padding-top: 28px;
    padding-bottom: 29px;
  }

  .footer-content {
    grid-template-columns: 300px 140px 200px 360px;
  }

  .footer-title {
    margin-bottom: 30px;
  }

  .footer-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .location-block {
    margin-bottom: 15px;
  }

  .footer-logo-link-block.w--current {
    margin-bottom: 20px;
  }

  .footer-dotted-shape-left {
    bottom: 22px;
    left: 18px;
  }

  .footer-dotted-shape-right {
    top: 24px;
    right: 20px;
  }

  .footer-dropdown-shape-left {
    display: block;
    top: 96px;
    left: 20px;
  }

  .footer-dropdown-shape-right {
    display: block;
    right: 30px;
  }

  .footer-dropdown-shape-right.remove {
    display: none;
  }

  .solid-border {
    margin-top: 76px;
  }

  .home-one-hero-section.section-gap-y-axis {
    padding-bottom: 56px;
  }

  .home-one-hero-wrapper {
    padding-top: 88px;
  }

  .home-one-hero-content-wrap {
    max-width: 580px;
  }

  .home-one-hero-image {
    width: auto;
  }

  .hero-one-title-block {
    max-width: 550px;
    margin-bottom: 25px;
  }

  .inner-text-image {
    padding-left: 10px;
  }

  .hero-one-title-descrption {
    max-width: 495px;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .hero-one-button-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .fun-fact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .fun-fact-wrapper {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
  }

  .funfact-text {
    font-size: 18px;
  }

  .funfact-dotted-shape-left {
    top: 20px;
    left: 27px;
  }

  .funfact-dotted-shape-right {
    bottom: 20px;
    right: 28px;
  }

  .funfact-dropdown-shape-left {
    display: block;
    left: 70px;
  }

  .funfact-dropdown-shape-right {
    display: block;
    right: 60px;
  }

  .blog-quites-wrap {
    margin-bottom: 50px;
  }

  .style-guide-sidebar {
    min-width: 350px;
  }

  .style-gudie-menu {
    padding-top: 10px;
    font-size: 22px;
  }

  .color-title {
    margin-bottom: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 60px;
  }

  .primary-color-wrap, .secondary-color-wrap {
    width: 250px;
    margin-bottom: 50px;
  }

  .breadcumb-title-description {
    font-size: 20px;
  }

  .breadcumb-title-description.licenses {
    max-width: 617px;
  }

  .body-color-wrap {
    width: 250px;
    margin-bottom: 50px;
  }

  .primary-color-block, .secondary-color-block {
    height: 120px;
  }

  .list-item-title {
    font-size: 20px;
  }

  .button-default {
    padding: 18px 37px;
    font-size: 19px;
    line-height: 1.2;
  }

  .style-menu {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 22px;
  }

  .heading-two-wrap {
    margin-bottom: 50px;
  }

  .paragraph-defult-text-details {
    font-size: 20px;
  }

  .typography-title {
    margin-bottom: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .body-color {
    font-size: 26px;
  }

  .heading-three-wrap, .paragraph-detail-wrap, .paragraph-small-wrap {
    margin-bottom: 50px;
  }

  .blog-quites-text-details {
    font-size: 20px;
  }

  .primary-color {
    font-size: 26px;
  }

  .paragraph-default-title {
    font-size: 20px;
  }

  .blog-quites-text {
    padding: 20px 15px 20px 30px;
  }

  .color-details {
    height: 100px;
  }

  .style-guide-title-block {
    margin-bottom: 10px;
  }

  .paragraph-small-title {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .defult-socila-icons-block {
    margin-bottom: 30px;
  }

  .breadcrumb-title {
    max-width: 750px;
  }

  .breadcrumb-title.text-center {
    margin-bottom: 25px;
  }

  .color-section {
    margin-top: 30px;
  }

  .style-guide-breadcrumb {
    padding-top: 180px;
  }

  .secondary-color {
    font-size: 26px;
  }

  .style-gudie-sub-titile, .list-items-text-details {
    font-size: 20px;
  }

  .heading-one-wrap {
    margin-bottom: 50px;
  }

  .blog-quites-title {
    font-size: 20px;
  }

  .icons-title {
    margin-bottom: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 60px;
  }

  .body-color-block {
    height: 120px;
  }

  .choice-us-content-block-one {
    max-width: 80%;
  }

  .section-title.bold {
    max-width: 398px;
    margin-bottom: 25px;
    font-weight: 800;
  }

  .section-title.text-center {
    margin-bottom: 25px;
  }

  .section-titile-description {
    max-width: 530px;
    margin-bottom: 30px;
  }

  .section-titile-description.choise-us {
    max-width: 415px;
  }

  .features-one-card-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 0;
  }

  .features-card-one {
    padding-left: 30px;
    padding-right: 30px;
  }

  .feature-title, .feature-title.text-left {
    margin-bottom: 15px;
  }

  .feature-description, .feature-description.style-2 {
    font-size: 16px;
    line-height: 1.5;
  }

  .crypto-market-title-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .crypto-market-table-wrapper {
    padding-top: 40px;
  }

  .crypto-market-table-header, .crypto-market-table-content {
    padding-top: 24px;
    padding-bottom: 23px;
    padding-left: 45px;
  }

  .table-data-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .table-data-text {
    font-size: 16px;
  }

  .crypto-table-description {
    max-width: 530px;
  }

  .section-titile-block {
    padding-bottom: 0;
  }

  .feature-section-title {
    margin-bottom: 25px;
  }

  .getstart-block {
    margin-top: -5px;
  }

  .getstart-content-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: space-between;
    padding-top: 53px;
  }

  .getstart-card {
    grid-column-gap: 38px;
    grid-row-gap: 38px;
    padding: 20px 52px 20px 27px;
  }

  .getstart-cart-title {
    font-size: 20px;
  }

  .getstart-card-description {
    margin-top: 10px;
    font-size: 16px;
  }

  .padding-bottom-130px {
    padding-bottom: 130px;
  }

  .guida-la-rivoluzione {
    padding-top: 0;
    padding-bottom: 0;
  }

  .our-app-banner-image-one {
    top: 56px;
  }

  .our-app-banner-image-two {
    top: -4%;
    left: 200px;
  }

  .our-app-section-title {
    margin-bottom: 25px;
  }

  .our-app-section-title.three {
    max-width: 100%;
    font-size: 45px;
  }

  .ourapp-titile-description {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .our-app-button-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .client-wrapper {
    grid-column-gap: 75px;
    grid-row-gap: 75px;
  }

  .testimonial-slider-one-wrap {
    margin-top: 156px;
    padding-bottom: 30px;
  }

  .testimonial-one-title {
    max-width: 370px;
    margin-top: 18px;
  }

  .testimonial-details {
    margin-bottom: 16px;
    padding-top: 20px;
  }

  .rateing-image {
    margin-bottom: 10px;
  }

  .client-compay-name {
    font-size: 16px;
  }

  .chouce-us-title {
    margin-bottom: 25px;
  }

  .slider-one-left-arrow {
    left: 550px;
  }

  .slider-one-right-arrow {
    right: 133px;
  }

  .client-slider-title {
    font-size: 32px;
  }

  .client-logo-wrapper, .client-logo-inner {
    grid-column-gap: 75px;
    grid-row-gap: 75px;
  }

  .padding-top-130px {
    padding-top: 120px;
  }

  .newsletter-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .newsletter-content-block {
    max-width: 390px;
  }

  .newsletter-section-title {
    margin-bottom: 25px;
  }

  .newsletter-description {
    max-width: 380px;
    margin-bottom: 41px;
  }

  .newsletter-input-field {
    min-height: 52px;
    font-size: 16px;
  }

  .subscribe-button {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-wrapper-two {
    padding-top: 69px;
  }

  .hero-two-image-wrap {
    margin-top: 61px;
  }

  .hero-image-two {
    box-shadow: 0 8px 30px rgba(83, 103, 254, .15);
  }

  .hero-two-title-block {
    width: 95%;
    margin-bottom: 0;
  }

  .inner-text-image-two {
    padding-left: 15px;
  }

  .hero-two-description {
    max-width: 500px;
    margin-bottom: 30px;
  }

  .hero-two-button-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .choice-us-content-block-two {
    max-width: 431px;
  }

  .chouce-us-title-two {
    margin-bottom: 25px;
  }

  .features-card {
    padding-left: 30px;
    padding-right: 30px;
  }

  .features-image-two-wrap {
    margin-bottom: 25px;
  }

  .get-start-section-two.section-gap-y-axis {
    -webkit-text-fill-color: inherit;
    background-image: linear-gradient(rgba(248, 245, 250, .6), rgba(248, 245, 250, .6)), url('../images/ivana-cajina-LlDQPnErFxo-unsplash.jpg');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
    background-clip: border-box;
  }

  .getstart-block-two {
    grid-column-gap: 55px;
    grid-row-gap: 55px;
    padding-top: 30px;
  }

  .getstart-content-wrap-two {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .getstart-card-two {
    grid-column-gap: 43px;
    grid-row-gap: 43px;
    padding: 20px 27px;
  }

  .getstart-banner-two {
    width: auto;
  }

  .getstart-card-description-two {
    margin-top: 10px;
    font-size: 16px;
  }

  .getstart-titile-description {
    max-width: 530px;
  }

  .our-app-section-two {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .ellipse-wrap {
    right: -50px;
  }

  .testimonial-two-title {
    max-width: 370px;
    top: 20px;
    left: 54.5%;
  }

  .slider-two-right-arrow {
    left: -30px;
  }

  .testimonial-two-slider-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .testimonial-two-content-wrap {
    padding-bottom: 22px;
  }

  .newsletters-content-wrap-two {
    padding-top: 100px;
    padding-bottom: 105px;
  }

  .newsletter-title-two {
    margin-bottom: 25px;
  }

  .newsletter-description-two {
    max-width: 485px;
    margin-bottom: 40px;
  }

  .newsletter-input-field-two {
    min-height: 52px;
    padding-right: 130px;
    font-size: 16px;
  }

  .subscribe-button-two {
    min-height: 52px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .newsletter-ellipse-bock-one {
    top: 25px;
  }

  .newsletter-ellipse-bock-two {
    bottom: 51px;
    right: 41px;
  }

  .dropped-shape-one {
    bottom: 54px;
    left: 52px;
  }

  .dropped-shape-two {
    top: 49px;
    right: 39px;
  }

  .hero-wrapper-three {
    padding-top: 58px;
  }

  .hero-three-title-block {
    margin-bottom: 17px;
  }

  .hero-three-description {
    max-width: 499px;
    margin-bottom: 40px;
  }

  .hero-three-button {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hero-title-three {
    font-size: 64px;
  }

  .hero-three-title-wrap {
    max-width: 850px;
  }

  .hero-three-title-shape-wrap {
    margin-left: 15px;
  }

  .hero-three-bottom-content-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: minmax(390px, .25fr) 400px 190px;
    align-items: end;
    margin-top: -110px;
  }

  .hero-three-subtitle {
    font-size: 45px;
  }

  .hero-three-subtitle-wrap {
    margin-top: 80px;
  }

  .currency-card {
    margin-top: 27px;
  }

  .hero-three-image-wrap {
    margin-right: -20px;
  }

  .hero-three-funfact-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-left: -40px;
  }

  .hero-three-shape {
    top: 130px;
    right: 75px;
  }

  .choice-us-three-video-wrap {
    padding-top: 27px;
  }

  .choice-us-title-three {
    margin-bottom: 25px;
  }

  .choice-us-three-description {
    max-width: 500px;
    margin-bottom: 30px;
  }

  .watch-button-icon {
    width: 30px;
  }

  .video-lightbox-block {
    margin-top: 70px;
  }

  .features-three-card-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 30px;
  }

  .features-image-three-wrap {
    margin-bottom: 25px;
  }

  .features-titile-description {
    max-width: 460px;
    margin-bottom: 30px;
  }

  .choice-us-shape-one {
    top: 44px;
  }

  .choice-us-shape-two {
    top: 113px;
  }

  .hight-light-shape {
    right: 97px;
  }

  .getstart-block-three {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .getstart-banner-three {
    width: 100%;
  }

  .getstart-content-wrap-three {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 60px;
  }

  .getstart-card-three {
    grid-column-gap: 43px;
    grid-row-gap: 43px;
    padding: 20px 27px;
  }

  .getstart-image-wrap-three {
    width: 570px;
  }

  .getstart-description {
    max-width: 400px;
    margin-bottom: 20px;
  }

  .client-wrapper-three {
    grid-column-gap: 75px;
    grid-row-gap: 75px;
    padding-top: 37px;
    padding-bottom: 37px;
  }

  .client-slider-block-three, .client-logo-three, .single-logo-three {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
  }

  .our-app-section-three {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .our-app-content-block-three {
    max-width: 562px;
  }

  .newsletter-wrapper-three {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .spark-shape {
    left: 15px;
  }

  .hight-light-shape-newsletter {
    right: 97px;
  }

  .newsletter-content-block-three {
    max-width: 440px;
  }

  .testimonial-three-slide-block {
    justify-content: center;
    margin-top: 85px;
  }

  .testimonial-three-title {
    margin-bottom: 25px;
  }

  .testimonial-title-desc {
    max-width: 460px;
  }

  .testimonial-three-slider-wrap {
    margin-left: -8px;
  }

  .testimonial-three-slide {
    margin-right: 40px;
  }

  .testimonial-three-content-one {
    width: 370px;
    padding: 41px 28px 23px 33px;
  }

  .features-card-two-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 25px;
  }

  .features-card-two {
    padding: 80px 32px 56px;
  }

  .testimonial-profile-wrap {
    margin-bottom: 31px;
  }

  .tetimonial-user-name {
    font-size: 20px;
  }

  .testimonial-content-desc {
    margin-bottom: 19px;
    font-size: 24px;
  }

  .testimonial-three-content-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .testimonial-three-content-two, .testimonial-three-content-three {
    width: 370px;
    padding: 41px 28px 23px 33px;
  }

  .testimonial-three-slider-wrap-phone {
    margin-left: -8px;
  }

  .about-hero-wrapper {
    padding-top: 65px;
  }

  .about-title-block {
    margin-bottom: 25px;
  }

  .about-title-description {
    max-width: 499px;
    margin-bottom: 40px;
  }

  .about-title-shape-wrap {
    margin-left: 15px;
  }

  .about-hero-image-block {
    grid-column-gap: 94px;
    grid-row-gap: 94px;
    margin-top: -110px;
  }

  .about-funfact-wrapper {
    padding-bottom: 110px;
  }

  .fun-fact-wrap {
    grid-column-gap: 55px;
    grid-row-gap: 55px;
  }

  .about-title-block-shape {
    top: 90px;
  }

  .about-image-highlight-shape {
    top: -9%;
    right: -8%;
  }

  .our-mission-title-wrap {
    padding-top: 52px;
  }

  .our-mission-titile {
    margin-bottom: 25px;
  }

  .our-mission-content-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    padding-top: 50px;
  }

  .ourmisson-banner {
    right: -70px;
  }

  .our-mission-content {
    margin-top: 54px;
  }

  .our-mission-content-title {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .our-vission-content {
    margin-top: 110px;
    padding-left: 30px;
  }

  .our-app-section-about {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .secure-title {
    max-width: 500px;
    font-size: 45px;
  }

  .secure-description {
    max-width: 475px;
  }

  .secure-content-wrap {
    padding-top: 60px;
  }

  .secure-content-card {
    padding: 50px 40px 50px 25px;
  }

  .secure-card-image-wrap {
    margin-bottom: 25px;
  }

  .secure-cart-title {
    margin-bottom: 15px;
  }

  .our-team-title {
    margin-bottom: 25px;
  }

  .our-team-description {
    max-width: 480px;
  }

  .our-team-slider-wrap {
    margin-top: 60px;
  }

  .our-team-slider-mask {
    width: 351px;
  }

  .our-team-slider {
    margin-right: 60px;
  }

  .job-title {
    font-size: 16px;
  }

  .secure-bottom-shape {
    width: auto;
    bottom: -24%;
    left: -70px;
  }

  .feature-hero-wrapper {
    padding-top: 65px;
  }

  .feature-title-block {
    margin-bottom: 25px;
  }

  .feature-title-description {
    max-width: 499px;
    margin-bottom: 40px;
  }

  .feature-hero-button-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .feature-hero-image-block {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
    margin-top: -310px;
  }

  .feature-funfact-wrapper {
    padding-bottom: 62px;
  }

  .feature-fun-fact-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .feature-image-highlight-shape {
    top: -8%;
    right: -9%;
  }

  .feature-hero-title {
    font-size: 64px;
  }

  .feature-hero-title-wrap {
    max-width: 650px;
  }

  .feature-title-shape-wrap {
    margin-left: 15px;
  }

  .get-start-button-primary {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .feature-hero-shape-two {
    bottom: 216px;
    left: 423px;
  }

  .our-app-section-feature {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .explore-title {
    margin-bottom: 25px;
    font-size: 45px;
  }

  .explore-description {
    max-width: 490px;
    margin-bottom: 36px;
  }

  .explore-service-list-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .explore-service-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .explore-service {
    font-size: 16px;
  }

  .explore-button-primary {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .explore-button-wrap {
    margin-top: 45px;
  }

  .priceing-breadcrumb-title-wrap {
    max-width: 735px;
  }

  .breadcrumb-description {
    max-width: 511px;
  }

  .price-breadcrumb-shape-one {
    top: 135px;
  }

  .price-breadcrumb-shape-two {
    bottom: -54px;
  }

  .priceing-breadcrumb-wrapper {
    padding-top: 80px;
  }

  .priceing-plan-wrapper {
    padding-top: 82px;
  }

  .pricine-plan-wrap {
    padding: 39px 42px 42px;
  }

  .price-leavel {
    font-size: 24px;
  }

  .price-range {
    font-size: 64px;
  }

  .days {
    font-size: 20px;
  }

  .business-quality {
    margin-bottom: 33px;
    font-size: 16px;
  }

  .price-plan-list-wrap {
    grid-column-gap: 27px;
    grid-row-gap: 27px;
  }

  .price-plan {
    font-size: 16px;
  }

  .priceing-button-outline {
    margin-top: 45px;
    margin-bottom: 15px;
  }

  .creadit-card-text {
    font-size: 16px;
  }

  .priceing-button-secondary {
    margin-top: 45px;
    margin-bottom: 15px;
  }

  .monhtly-priceing-plan-block, .annual-priceing-plan-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 60px;
  }

  .discount-wrap {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    left: 60%;
  }

  .discount-text {
    font-family: Coveredbyyourgrace, sans-serif;
    font-size: 24px;
  }

  .our-app-section-price {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .priceing-faq-block {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    padding-top: 78px;
  }

  .price-faq-question-wrap {
    padding: 123px 31px 86px;
  }

  .pricing-faq-title {
    margin-bottom: 25px;
  }

  .faq-title-description {
    max-width: 400px;
  }

  .inbox-image {
    margin-bottom: 35px;
  }

  .price-faq-qesction {
    margin-bottom: 15px;
  }

  .faq-qesction-description {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .faq-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .faq-title {
    font-size: 24px;
  }

  .accordion-item-trigger {
    padding: 19px 22px 19px 21px;
  }

  .blog-breadcrumb-title-block {
    padding-top: 65px;
  }

  .blog-search-input {
    margin-bottom: 27px;
    padding-left: 0;
    font-size: 16px;
  }

  .blog-search-button {
    font-size: 16px;
  }

  .blog-breadcrumb-title {
    max-width: 530px;
  }

  .feature-blog-list {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    flex-direction: row-reverse;
    align-items: flex-start;
  }

  .blog-image {
    width: 100%;
  }

  .feature-blog-meta-wrap {
    margin-top: 15px;
  }

  .category, .meta-date {
    font-size: 16px;
  }

  .feature-blog-title {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .read-more-link, .read-more {
    font-size: 16px;
  }

  .feature-blog-shape-one {
    top: -90px;
    left: -105px;
  }

  .blogs-section-title {
    margin-bottom: 34px;
  }

  .blogs-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 50px;
  }

  .blogs-item {
    padding-bottom: 20px;
  }

  .feature-blog-image {
    width: 100%;
  }

  .blog-title {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .blog-tab-content {
    padding-top: 60px;
  }

  .pagination {
    margin-top: 40px;
  }

  .our-app-section-blog {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .blog-details-section {
    padding-top: 80px;
  }

  .blog-details-content-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 670px 1fr;
  }

  .blog-detail-meta-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .blog-detail-title {
    margin-bottom: 35px;
    font-size: 45px;
  }

  .blog-rich-text {
    max-width: 670px;
  }

  .blog-rich-text h2 {
    margin-top: 80px;
    margin-bottom: 20px;
    font-size: 32px;
  }

  .blog-rich-text ul {
    margin-bottom: 90px;
  }

  .blog-side-bar-title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .recent-blog-collection-list {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .recent-blog-item-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    justify-content: flex-start;
    align-items: center;
    padding: 23px 22px;
  }

  .recent-blog-title {
    font-size: 16px;
  }

  .blog-short-description {
    margin-bottom: 7px;
  }

  .recent-blog-block {
    margin-bottom: 60px;
  }

  .blog-tag {
    font-size: 16px;
  }

  .blog-tag-link {
    padding: 8px 24px;
  }

  .join-naw-block {
    padding: 72px 80px 60px;
  }

  .join-naw-image-wrap {
    margin-bottom: 40px;
    padding: 31px;
  }

  .join-now-title {
    font-size: 24px;
  }

  .join-naw-description {
    max-width: 270px;
    margin-bottom: 34px;
  }

  .join-button-primary {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .related-blogs-list-wrapper {
    margin-top: 54px;
  }

  .related-blog-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .related-blogs-item {
    padding-bottom: 20px;
  }

  .related-blog-title {
    margin-bottom: 25px;
  }

  .ourrelated-blog-section {
    padding-top: 100px;
  }

  .ourrelated-blog-title-description {
    max-width: 450px;
  }

  .breadcrumb-wrapper {
    padding-top: 80px;
  }

  .breadcrumb-shape-one {
    top: 135px;
  }

  .breadcrumb-shape-two {
    bottom: -54px;
  }

  .breadcrumb-link, .breadcrumb-text {
    font-size: 20px;
  }

  .category-breadcrumb-title {
    margin-top: 20px;
  }

  .blog-category-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .contact-hero-section {
    padding-top: 80px;
  }

  .contact-hero-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .contact-title-wrap {
    padding-bottom: 60px;
  }

  .contact-title-desc {
    max-width: 390px;
  }

  .input-text-field {
    margin-bottom: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .text-aria {
    min-height: 130px;
    margin-top: 50px;
  }

  .submitted-button {
    background-position: 83%;
    margin-top: 40px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .contact-title-shape {
    bottom: 25px;
  }

  .contact-banner-shape {
    top: -60px;
    right: -15px;
  }

  .contact-wrapper {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-email-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    align-items: center;
  }

  .contact-info-image-wrap {
    width: 86px;
    height: 86px;
  }

  .contact-info-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .contact-info {
    font-size: 18px;
  }

  .contact-phone-block, .contact-location-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    align-items: center;
  }

  .faq-block {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    padding-top: 78px;
  }

  .faq-question-wrap {
    padding: 123px 31px 86px;
  }

  .faq-qesction {
    margin-bottom: 15px;
  }

  .contact-faq-section-shape {
    top: -75px;
  }

  .varifiacation-section {
    margin-top: 80px;
  }

  .varifiacation-section.padding-bottom-130px {
    position: relative;
  }

  .varification-wrapper.forgot {
    justify-content: flex-end;
  }

  .varification-image-wrap {
    max-width: 845px;
  }

  .varification-content-wrap {
    padding-right: 93px;
  }

  .varification-content-wrap.forgot {
    padding-top: 182px;
  }

  .varification-title {
    margin-bottom: 15px;
    font-size: 45px;
  }

  .varification-title-desc {
    text-align: center;
  }

  .varification-title-desc.max-width {
    max-width: 360px;
  }

  .autometic-varifaction-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-top: 60px;
    margin-bottom: 35px;
  }

  .autometic-varifaction-wrap.two {
    margin-bottom: 20px;
  }

  .auto-varivation-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .continew-with-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .solid-border-divider {
    width: 120px;
  }

  .validation-input-form.two {
    margin-top: 35px;
  }

  .validation-input-field-level {
    margin-bottom: 17px;
  }

  .varidation-form-text-field {
    height: 62px;
    margin-bottom: 25px;
    padding-top: 15px;
    padding-bottom: 17px;
  }

  .validation-checkbox {
    padding-left: 8px;
    font-size: 16px;
  }

  .validation-form-condition-wrap {
    margin-bottom: 20px;
  }

  .validation-form-condition-wrap.two {
    margin-bottom: 47px;
  }

  .forgot-link {
    font-size: 16px;
  }

  .login-condition-block {
    margin-bottom: 50px;
  }

  .login-condition-block.two {
    margin-bottom: 35px;
  }

  .sing-in-button {
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .validation-form-name-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .sing-up-button {
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .subbmit-button {
    margin-top: 25px;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  ._404-image {
    margin-bottom: 45px;
  }

  ._404-title {
    margin-bottom: 15px;
    font-size: 45px;
  }

  ._404-page-description {
    max-width: 470px;
  }

  .back-to-home-btn-wrap {
    margin-top: 35px;
  }

  .breadcrumb-section-title {
    font-size: 45px;
  }

  .content-title {
    font-size: 24px;
  }

  .initial-released-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .changlelog-content-sub-title {
    padding-top: 20px;
  }

  .initial-text {
    padding: 8px 10px;
  }

  .licenses-title {
    font-size: 30px;
  }

  .reset-input-form {
    margin-top: 30px;
  }

  .search-section.padding-bottom-130px {
    margin-top: 60px;
  }

  .lates-blog-section.padding-bottom-130px {
    padding-bottom: 120px;
  }

  .lates-blog-title {
    margin-bottom: 25px;
  }

  .lates-blog-title.two {
    max-width: 320px;
  }

  .lates-title-description {
    max-width: 460px;
    margin-bottom: 0;
  }

  .lates-title-description.two {
    max-width: 440px;
    margin-right: 100px;
  }

  .spark-image-home-three {
    top: -48px;
    left: -45px;
  }

  .getstart-shape {
    bottom: 10px;
  }

  .slider-three-shape-two {
    top: 140px;
  }

  .preview-title {
    font-size: 64px;
  }

  .preview-title.text-white {
    max-width: 946px;
  }

  .preview-video-lightbox-block {
    width: 100px;
    height: 100px;
  }

  .preview-hero-excerpt {
    max-width: 570px;
    font-size: 20px;
  }

  .preview-heading {
    margin-top: 30px;
  }

  .badge {
    font-size: 22px;
  }

  .surprises-image.heder {
    padding-right: 100px;
  }

  .preview-surprises-content-block.blog {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .preview-surprises-box-block.margin-bottom-130px {
    margin-bottom: 130px;
  }

  .preview-footer-content-block {
    margin-top: 200px;
  }

  .preview-footer-title {
    max-width: 850px;
    font-size: 36px;
  }

  .landing-page-section-title {
    max-width: 550px;
    margin-bottom: 30px;
    font-size: 38px;
  }

  .reuseable-page-titile-block {
    margin-bottom: 40px;
  }

  .reuseable-card-image {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
  }

  .landing-page-subtitle {
    max-width: 700px;
    margin-bottom: 15px;
  }

  .reuseable-section-card-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .preview-sub-title {
    font-size: 16px;
  }

  .header-section-shape {
    width: auto;
    right: 10px;
  }

  .preview-header-nav-inner {
    padding-top: 25px;
    padding-bottom: 50px;
  }

  .preview-menu-list {
    margin-right: 12px;
  }

  .preview-menu-link {
    margin-right: 22px;
  }

  .privew-button-primary {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .preview-hero-block {
    padding-top: 35px;
  }

  .preview-video-lightbox-wrapper, .preview-video-lightbox-wrapper-2 {
    margin-top: 40px;
  }

  .preview-feature-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .margin-bottom-130px {
    margin-bottom: 120px;
  }

  .social-icon-wrap {
    margin-bottom: 30px;
  }

  .social-icon-image {
    width: 30px;
  }

  .socila-icon-text {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .password-protected-title {
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .location-info {
    font-size: 18px;
  }
}

@media screen and (min-width: 1920px) {
  .funfact-dropdown-shape-left {
    left: 103px;
  }

  .funfact-dropdown-shape-right {
    right: 130px;
  }

  .choice-us-content-block-one {
    max-width: 80%;
  }

  .section-titile-block {
    padding-bottom: 0;
  }

  .newsletter-wrapper {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .business-quality.text-white {
    color: var(--white);
  }

  .priceing-button-outline, .priceing-button-secondary {
    background-color: var(--white);
  }

  .faq-title {
    font-size: 24px;
  }

  .varifiacation-section.padding-bottom-130px {
    padding-bottom: 120px;
  }

  .varifiacation-section.padding-bottom-130px.extra-padding {
    padding-bottom: 280px;
  }

  .varifiacation-section.padding-bottom-130px.extra-padding-530 {
    padding-bottom: 530px;
  }

  .varification-image-wrap {
    width: 994px;
    max-width: none;
    left: -150px;
  }

  .varification-content-wrap {
    padding-top: 120px;
  }

  .preview-surprises-box-block {
    flex: none;
  }

  .preview-footer-section.preview-footer-background-image {
    height: 714px;
    max-height: 714px;
  }

  .preview-video-lightbox-wrapper, .preview-video-lightbox-wrapper-2 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 20px;
  }

  .container {
    max-width: none;
    margin-left: 56px;
    margin-right: 56px;
  }

  .container.position-abs {
    position: static;
  }

  .section-gap-y-axis {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .button-primary {
    max-height: none;
  }

  .menu-link {
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
  }

  .mobile-logo-wrap {
    margin-bottom: 20px;
    display: inline-block;
  }

  .getstart-button-wrap {
    margin-left: 0;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    margin-top: 0;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  }

  .navbar-logo {
    width: 100%;
  }

  .menu-list {
    margin-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-link {
    text-align: center;
  }

  .menu-link-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-menu {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #fff;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 280px;
    height: 100vh;
    padding: 20px;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-left: 5px;
    display: inline-block;
  }

  .menu-button {
    color: var(--white);
    padding: 12px;
    font-size: 30px;
  }

  .menu-button.w--open {
    color: var(--primary-color);
    background-color: #fff;
  }

  .nav-menu-wrap {
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  }

  .mobile-menu-icon {
    color: var(--primary-color);
    font-size: 30px;
  }

  .footer-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    display: grid;
  }

  .footer-title {
    margin-bottom: 10px;
  }

  .footer-dotted-shape-left {
    bottom: 20px;
    left: 5px;
  }

  .footer-left-dotted-shape {
    width: 70px;
    display: none;
  }

  .footer-dotted-shape-right {
    top: 20px;
    bottom: auto;
    left: auto;
    right: 10px;
  }

  .footer-right-dotted-shape {
    width: 70px;
    transform: rotateX(180deg)rotateY(180deg)rotateZ(0);
  }

  .solid-border {
    margin-top: 20px;
  }

  .home-one-hero-wrapper {
    padding-top: 56px;
  }

  .hero-titile.font-blod {
    font-size: 40px;
  }

  .inner-text-image {
    width: 100px;
  }

  .fun-fact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .fun-fact-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .funfact-content-title {
    font-size: 32px;
  }

  .funfact-text {
    text-align: center;
    white-space: nowrap;
  }

  .funfact-dotted-shape-left {
    display: none;
    bottom: 20px;
    left: 5px;
  }

  .funfact-left-dotted-shape {
    width: 70px;
  }

  .funfact-dotted-shape-right {
    display: none;
    bottom: 20px;
    left: 5px;
  }

  .funfact-right-dotted-shape {
    width: 70px;
  }

  .funfact-dropdown-shape-left, .funfact-dropdown-shape-right {
    display: none;
  }

  .blog-quites-wrap {
    padding-left: 10px;
  }

  .style-guide-sidebar {
    min-width: 250px;
  }

  .color-title {
    font-size: 34px;
  }

  .breadcumb-title-description {
    font-size: 18px;
  }

  .button-default {
    padding: 12px 25px;
    font-size: 16px;
  }

  .typography-title, .button-titile {
    font-size: 34px;
  }

  .breadcrumb-title {
    max-width: 580px;
    font-size: 40px;
  }

  .style-guide-breadcrumb {
    padding-bottom: 40px;
  }

  .icons-title {
    font-size: 34px;
  }

  .heading-one {
    font-size: 35px;
  }

  .colonnine-intelligenti.section-gap-y-axis.p-88 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .choice-us-content-block-one {
    max-width: none;
  }

  .section-title {
    font-size: 32px;
  }

  .features-one-card-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .features-one-card-wrapper.syle-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .features-card-one {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vantaggi-fiscali.section-gap-y-axis.p-88 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .crypto-market-table-wrapper {
    width: 1000px;
  }

  .table-scroll {
    overflow: scroll;
  }

  .getstart-section-title, .feature-section-title {
    font-size: 32px;
  }

  .getstart-block {
    grid-template-columns: 1fr;
  }

  .getstart-content-wrap {
    flex-direction: row;
    width: 100%;
    margin-right: 0;
  }

  .getstart-card {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 335px;
    padding-right: 20px;
  }

  .getstart-banner-image {
    width: 540px;
    margin-top: 0;
  }

  .padding-bottom-130px {
    padding-bottom: 80px;
  }

  .guida-la-rivoluzione {
    padding-bottom: 60px;
  }

  .our-app-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .our-app-content-block {
    max-width: none;
  }

  .our-app-banner-image-one {
    width: 200px;
  }

  .our-app-banner-image-two {
    width: 200px;
    left: 140px;
  }

  .our-app-section-title {
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .our-app-section-title.three {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
  }

  .ourapp-titile-description {
    text-align: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .our-app-button-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-slider-one-wrap {
    margin-top: 120px;
  }

  .testimonial-one-title {
    font-size: 32px;
  }

  .testimonial-details {
    max-width: 300px;
    padding-top: 10px;
  }

  .double-cotation-image {
    width: 38px;
  }

  .testimonial-one-image {
    width: 300px;
  }

  .testimonial-one-image-block {
    width: 300px;
    height: 350px;
  }

  .bitcoin-rate-sticker-one {
    width: 100px;
    left: -48px;
  }

  .bitcoin-sticker-one {
    width: 80px;
  }

  .chouce-us-title {
    font-size: 32px;
  }

  .testimonial-slider-mask-one {
    margin-top: -10px;
  }

  .slider-one-left-arrow {
    left: 320px;
  }

  .slider-one-right-arrow {
    right: 5px;
  }

  .client-slider-title {
    font-size: 26px;
  }

  .client-logo-wrapper, .client-logo-inner {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .padding-top-130px {
    padding-top: 80px;
  }

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

  .newsletter-description {
    margin-bottom: 20px;
  }

  .inner-text-image-two {
    width: auto;
    max-width: 48px;
  }

  .hero-title-two {
    font-size: 40px;
  }

  .choice-us-content-block-two {
    max-width: none;
  }

  .chouce-us-title-two {
    font-size: 32px;
  }

  .ethereum {
    width: 80px;
    top: 0%;
    left: -2%;
  }

  .premium {
    width: 60px;
    top: -2%;
    left: 41%;
  }

  .yuan {
    width: 60px;
    left: 24%;
  }

  .features-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .get-start-section-two.section-gap-y-axis.p-88 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .getstart-block-two {
    grid-template-columns: 1fr 1fr;
  }

  .getstart-content-wrap-two {
    flex-direction: row;
    width: 100%;
    margin-right: 0;
  }

  .getstart-card-two {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 335px;
  }

  .getstart-banner-two {
    margin-top: 0;
  }

  .our-app-wrapper-two {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .our-app-image-block-two {
    margin-top: 100px;
  }

  .our-app-content-block-two {
    max-width: none;
  }

  .ellipse-wrap {
    display: none;
    top: auto;
    bottom: -30%;
    left: 55%;
    right: 0;
  }

  .testimonial-two-title {
    max-width: 300px;
    font-size: 30px;
    top: -20px;
    left: 52%;
  }

  .bitcoin-sticker-two {
    width: 80px;
    top: -5%;
    left: -30px;
  }

  .slider-two-left-arrow {
    left: -10px;
  }

  .slider-two-right-arrow {
    left: 0;
  }

  .testimonial-two-slider-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    align-items: center;
  }

  .testimonial-two-content-wrap {
    padding-left: 15px;
  }

  .testimonial-two-image-block {
    text-align: center;
    width: 300px;
    height: 350px;
  }

  .person-stciker-two-wrap {
    top: 10%;
    left: 38%;
  }

  .bitcoin-rate-sticker-two {
    width: 100px;
    left: 0;
  }

  .testimonial-image-two {
    height: 100%;
  }

  .newsletters-content-wrap-two {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .newsletter-title-two {
    font-size: 35px;
  }

  .newsletter-description-two {
    margin-bottom: 20px;
  }

  .newsletter-input-block-two {
    max-width: 400px;
  }

  .newsletter-ellipse-bock-one {
    top: 0;
    left: 0;
  }

  .newsletter-ellipse-bock-two {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: stretch;
    display: flex;
    bottom: 10px;
    right: 10px;
  }

  .newsletter-elipse-one {
    width: 80%;
  }

  .newsletter-elipse-two {
    width: 70%;
  }

  .dropped-shape-two {
    top: 20px;
    right: 15px;
  }

  .hero-title-three {
    font-size: 40px;
  }

  .hero-three-title-wrap {
    max-width: 640px;
  }

  .hero-three-bottom-content-wrap {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: end;
    justify-items: stretch;
    margin-top: 40px;
  }

  .hero-three-subtitle {
    font-size: 24px;
  }

  .hero-three-subtitle-wrap {
    max-width: none;
  }

  .hero-three-star-shape {
    margin-top: -20px;
  }

  .currency-card {
    width: 90%;
  }

  .hero-three-image-block {
    width: 240px;
    height: 331px;
  }

  .bitcoin-apps-image {
    top: 10px;
    right: 10px;
  }

  .hero-three-shape {
    top: 40px;
  }

  .choice-us-title-three {
    max-width: 500px;
    font-size: 32px;
  }

  .watch-button-icon {
    width: 25px;
  }

  .features-three-card-wrapper, .getstart-block-three {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .getstart-content-wrap-three {
    flex-direction: row;
    width: 100%;
    margin-right: 0;
  }

  .getstart-card-three {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 335px;
  }

  .getstart-image-wrap-three {
    height: auto;
  }

  .getstart-description {
    max-width: none;
    margin-bottom: 0;
  }

  .client-slider-block-three, .client-logo-three, .single-logo-three {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .our-app-wrapper-three {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .our-app-content-block-three {
    max-width: none;
    padding-bottom: 20px;
  }

  .our-app-image-block-three {
    margin-top: 100px;
  }

  .newsletter-wrapper-three {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .newsletter-image-three {
    width: auto;
  }

  .spark-shape {
    width: 58px;
    top: -35px;
    left: -35px;
  }

  .hight-light-shape-newsletter {
    width: 60px;
    top: -20%;
  }

  .testimonial-three-title {
    font-size: 32px;
  }

  .testimonial-three-slider-wrap {
    display: none;
  }

  .testimonial-three-slider-mask.small-device {
    margin-left: 10px;
  }

  .slider-three-right-arrow.small-view {
    top: auto;
    bottom: 0%;
    left: 6%;
    right: 0%;
  }

  .slider-three-left-arrow {
    left: 0;
  }

  .slider-three-left-arrow.small-view {
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 6%;
  }

  .testimonial-three-slide.small-device {
    width: 325px;
  }

  .features-card-two-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .features-card-two {
    padding-left: 18px;
    padding-right: 18px;
  }

  .testimonial-three-content-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .testimonial-three-slider-wrap-phone {
    padding-bottom: 60px;
    display: block;
  }

  .about-hero-image-block {
    margin-top: 0;
  }

  .fun-fact-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .funfact-title {
    font-size: 26px;
  }

  .about-title-block-shape.wheel-shape {
    right: 100px;
  }

  .about-image-highlight-shape {
    top: -17%;
    right: -3%;
  }

  .our-mission-title-wrap {
    padding-top: 22px;
  }

  .our-mission-titile {
    font-size: 34px;
  }

  .our-mission-content-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .ourmisson-banner {
    width: 70%;
    bottom: -30px;
    right: -30px;
  }

  .our-mission-content {
    margin-top: 20px;
  }

  .our-vission-content {
    margin-top: 30px;
  }

  .our-app-section-about {
    margin-top: 0;
  }

  .secure-title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .secure-title {
    margin-bottom: 15px;
    font-size: 34px;
  }

  .secure-description {
    max-width: 550px;
  }

  .secure-content-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .secure-content-card {
    padding-top: 40px;
    padding-bottom: 26px;
  }

  .secure-cart-title {
    font-size: 18px;
  }

  .our-team-title {
    font-size: 34px;
  }

  .spark-shape-image.spark-one-animation {
    width: 50px;
    display: none;
    top: -38px;
    left: -35px;
  }

  .ourteam-shape {
    z-index: -1;
  }

  .ourteam-shape.high-light-one-animation {
    display: none;
  }

  .feature-hero-image-block {
    z-index: 0;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    align-items: center;
    margin-top: 20px;
  }

  .feature-funfact-wrapper {
    padding-bottom: 20px;
  }

  .feature-fun-fact-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .feature-image-highlight-shape {
    width: 56px;
    top: -8%;
    right: -9%;
  }

  .feature-image-highlight-shape.spark-two-animation {
    display: block;
  }

  .feature-hero-title {
    font-size: 40px;
  }

  .feature-hero-title-wrap {
    max-width: 640px;
  }

  .feature-hero-shape-two {
    top: 10px;
    bottom: auto;
    left: 140px;
  }

  .feature-hero-shape-one {
    top: 40px;
    bottom: 0;
  }

  .our-app-section-feature {
    margin-top: 0;
  }

  .feautre-section-shape-two {
    width: 80px;
  }

  .explore-title {
    margin-bottom: 15px;
    font-size: 26px;
  }

  .explore-description {
    margin-bottom: 15px;
  }

  .explore-button-wrap {
    margin-top: 20px;
  }

  .explore-image-shape {
    z-index: -1;
    display: block;
    top: -11%;
    left: -12%;
  }

  .utility-page-form {
    max-width: 500px;
  }

  .price-breadcrumb-shape-one, .price-breadcrumb-shape-two {
    width: 80px;
  }

  .priceing-breadcrumb-wrapper {
    padding-top: 25px;
  }

  .priceing-plan-wrapper {
    padding-top: 50px;
  }

  .pricine-plan-wrap {
    padding: 19px 20px 25px;
  }

  .price-range {
    font-size: 40px;
  }

  .price-plan-list {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
  }

  .popular-banner {
    top: 5px;
    right: -60px;
  }

  .monhtly-priceing-plan-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .annual-priceing-plan-block {
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
  }

  .priceing-faq-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
  }

  .price-faq-question-wrap {
    padding-top: 60px;
    padding-bottom: 46px;
  }

  .price-faq-qesction {
    white-space: normal;
  }

  .faq-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .faq-title {
    font-size: 18px;
  }

  .blog-breadcrumb-title-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 20px;
  }

  .blog-breadcrumb-title {
    font-size: 40px;
  }

  .feature-blog-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .feature-blog-image-link {
    height: 300px;
  }

  .feature-blog-shape-one {
    width: 60px;
    top: -60px;
  }

  .feature-blog-shape-spark {
    width: 49px;
    top: -37px;
    right: -35px;
  }

  .blogs-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .blog-title {
    font-size: 18px;
  }

  .blog-details-section {
    padding-top: 20px;
  }

  .blog-details-content-block {
    grid-template-columns: 1fr;
  }

  .blog-detail-title {
    font-size: 34px;
  }

  .blog-rich-text {
    max-width: none;
  }

  .blog-rich-text h2 {
    margin-top: 40px;
  }

  .blog-rich-text ul {
    margin-bottom: 40px;
  }

  .recent-blog-item-wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .recent-blog-block {
    margin-bottom: 30px;
  }

  .join-naw-block {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .related-blogs-list-wrapper {
    margin-top: 30px;
  }

  .related-blog-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .related-blog-title {
    font-size: 30px;
  }

  .ourrelated-blog-section {
    padding-top: 60px;
  }

  .breadcrumb-wrapper {
    padding-top: 25px;
  }

  .breadcrumb-shape-one, .breadcrumb-shape-two {
    width: 80px;
  }

  .blog-category-list, .blog-tag-detail-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .contact-hero-section {
    padding-top: 25px;
  }

  .contact-title {
    font-size: 40px;
  }

  .input-text-field {
    margin-bottom: 12px;
  }

  .text-aria {
    margin-top: 20px;
  }

  .contact-input-group {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .submitted-button {
    margin-top: 20px;
  }

  .contact-title-shape {
    display: none;
  }

  .contact-banner-shape {
    width: 53px;
    top: -42px;
    right: -35px;
  }

  .contact-wrapper {
    grid-column-gap: 41px;
    grid-row-gap: 41px;
    flex-flow: wrap;
    justify-content: flex-start;
    padding-bottom: 56px;
  }

  .contact-info-image-wrap {
    width: 66px;
    height: 66px;
  }

  .contact-info-title {
    font-size: 18px;
  }

  .faq-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
  }

  .faq-question-wrap {
    padding-top: 60px;
    padding-bottom: 46px;
  }

  .faq-qesction {
    white-space: normal;
  }

  .contact-faq-section-shape {
    top: -5%;
  }

  .contact-faq-section-shape.high-light-one-animation {
    display: none;
  }

  .varifiacation-section.padding-bottom-130px.extra-padding-530 {
    padding-bottom: 80px;
  }

  .varification-wrapper.forgot {
    justify-content: flex-end;
    padding-right: 0;
  }

  .varification-image-wrap {
    position: absolute;
    top: 37%;
    left: 0;
    transform: translate(0, -50%);
  }

  .varification-content-wrap {
    width: 50%;
    padding-right: 0;
  }

  .varification-content-wrap.forgot {
    width: auto;
    padding-top: 0;
  }

  .varification-title {
    text-align: center;
    font-size: 32px;
  }

  .auto-varivation-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .varidation-form-text-field {
    height: 45px;
  }

  .sing-in-button {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .varification-image-shape {
    display: none;
  }

  .validation-form-name-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .sing-up-button, .subbmit-button {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .breadcrumb-section-title.blod {
    font-size: 36px;
  }

  .license-wrapper {
    margin-top: 40px;
  }

  .lates-blog-section.padding-bottom-130px {
    padding-bottom: 70px;
  }

  .lates-title-description.two {
    margin-right: 0;
  }

  .preview-title {
    font-size: 32px;
  }

  .preview-title.text-white {
    max-width: 550px;
    font-size: 35px;
  }

  .preview-hero-excerpt {
    font-size: 16px;
  }

  .preview-heading {
    font-size: 30px;
  }

  .preview-feature-item {
    min-height: 100%;
    display: flex;
  }

  .preview-section-title-block.text-center.preview-margin-bottom-50 {
    max-width: 650px;
  }

  .preview-feature-grid-box {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .preview-essential-features-grid-box {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .template-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .preview-image, .preview-single-page {
    width: 100%;
  }

  .preview-surprises-image-block {
    margin-left: auto;
    margin-right: auto;
  }

  .preview-surprises-image-block.postition {
    align-self: stretch;
  }

  .surprises-image {
    object-fit: cover;
    padding-right: 0;
  }

  .surprises-image.heder {
    padding-right: 0;
  }

  .preview-surprises-content-block {
    text-align: center;
    max-width: 320px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .preview-surprises-content-block.blog {
    max-width: 320px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .preview-surprises-content-block.header {
    max-width: 320px;
    margin-top: 0;
    padding-top: 20px;
  }

  .preview-surprises-box-block {
    flex-direction: row;
    align-items: center;
  }

  .preview-surprises-box-block.blog-section {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }

  .preview-surprises-box-block.margin-bottom-130px {
    margin-bottom: 80px;
  }

  .preview-surprises-content-excerpt {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .preview-footer-section.preview-footer-background-image {
    height: 450px;
    max-height: 450px;
  }

  .preview-footer-content-block {
    margin-top: 100px;
  }

  .preview-footer-title {
    font-size: 30px;
  }

  .preview-cta-content-block {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .preview-cta-content-box {
    flex-flow: wrap;
  }

  .preview-cta-button {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .accordion-toggle {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

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

  .reuseable-page-titile-block {
    margin-bottom: 20px;
  }

  .landing-page-subtitle {
    font-size: 18px;
  }

  .reuseable-section-card-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .blog-vector-shape, .header-section-shape {
    display: none;
  }

  .preview-nav-menu-wrap {
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  }

  .nav-menu-preview {
    background-color: var(--primary-color);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 280px;
    height: 100vh;
    padding: 20px;
    display: flex;
  }

  .preview-menu-list {
    align-self: flex-start;
    margin-bottom: 10px;
    display: inline-block;
  }

  .preview-menu-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .preview-hero-block {
    padding-top: 20px;
  }

  .preview-video-lightbox-wrapper {
    margin-top: 10px;
  }

  .preview-container {
    max-width: 720px;
  }

  .preview-hero-section {
    height: 70vh;
  }

  .preview-feature-inner {
    min-height: 100%;
  }

  .preview-single-feature-box.light-orange-color {
    background-image: linear-gradient(rgba(0, 68, 255, 0), #ffbc7d);
  }

  .margin-bottom-130px {
    margin-bottom: 80px;
  }

  .forgot-password-section.section-gap-y-axis {
    padding-top: 40px;
  }

  .forgot-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .view-more-button-wrap {
    margin-top: 30px;
  }

  .quick-stack {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 18px;
  }

  .container {
    max-width: 100%;
    margin-left: 24px;
    margin-right: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-gap-y-axis {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .button-primary, .button-outline {
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .getstart-button-wrap {
    margin-top: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  }

  .header-nav-inner-block {
    max-width: 100%;
  }

  .navbar-logo {
    padding-left: 0;
  }

  .menu-list {
    margin-bottom: 0;
  }

  .menu-link-dropdown {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .copy-right-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .footer-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .footer-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .footer-block {
    align-items: flex-start;
  }

  .footer-left-dotted-shape {
    display: none;
  }

  .home-one-hero-wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-one-hero-image-wrap, .home-one-hero-image {
    width: auto;
  }

  .fun-fact-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    align-content: space-around;
    justify-content: space-around;
    justify-items: center;
  }

  .funfact-content-title {
    font-size: 28px;
  }

  .funfact-text.text-black {
    text-align: left;
  }

  .style-guide-sidebar {
    min-height: auto;
    padding-bottom: 30px;
    position: static;
  }

  .color-title {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .primary-color-block {
    height: 80px;
  }

  .style-gudie-menu-text {
    font-size: 18px;
  }

  .style-guide-content {
    padding-left: 0;
  }

  .button-default {
    padding: 10px 20px;
  }

  .typography-title, .button-titile {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .blog-quites-text {
    margin-left: 0;
  }

  .breadcrumb-title {
    max-width: 450px;
    font-size: 38px;
  }

  .style-guide-breadcrumb {
    padding-bottom: 30px;
  }

  .icons-title {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .style-guide-block {
    display: block;
    position: static;
  }

  .colonnine-intelligenti.section-gap-y-axis.background-2, .colonnine-intelligenti.section-gap-y-axis.p-88 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .colonnine-intelligenti.servizio-1 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .choice-us-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    justify-content: start;
    align-items: start;
    justify-items: start;
  }

  .choice-us-image-block-one.section-1 {
    margin-top: 32px;
  }

  .choice-us-content-block-one {
    padding-top: 32px;
  }

  .choice-us-image-one {
    max-width: 70%;
  }

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

  .section-titile-description.choise-us {
    max-width: 400px;
  }

  .features-one-card-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .features-one-card-wrapper.syle-2 {
    grid-template-columns: 1fr;
    justify-content: stretch;
    width: 100%;
  }

  .features-one-card-wrapper.style-1 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-content: space-between;
    align-items: stretch;
    justify-items: center;
  }

  .features-one-card-wrapper.pt-0.mw-70 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .features-card-one {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    width: 90%;
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .features-card-one.style-3 {
    width: 100%;
  }

  .feature-description {
    text-align: left;
    margin-left: 0;
  }

  .feature-card-content-wrap {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .crypto-market-title-block {
    grid-template-columns: 1fr;
  }

  .table-data-wrap {
    width: 110px;
  }

  .table-data-wrap.width-230 {
    width: 160px;
  }

  .crypto-table-data-wrap {
    width: 110px;
  }

  .crypto-table-data-wrap.width-230 {
    width: 160px;
  }

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

  .getstart-block {
    padding-top: 10px;
  }

  .getstart-content-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: center;
  }

  .getstart-card {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 350px;
  }

  .getstart-cart-title {
    font-size: 16px;
  }

  .padding-bottom-130px {
    padding-bottom: 60px;
  }

  .guida-la-rivoluzione {
    padding-bottom: 50px;
  }

  .our-app-image-wrap {
    max-width: 421px;
  }

  .our-app-banner-bg {
    width: auto;
  }

  .our-app-banner-image-one {
    margin-top: 60px;
    padding-top: 0;
    position: static;
  }

  .our-app-banner-image-two {
    margin-left: -47px;
    position: static;
  }

  .our-app-section-title.three {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .client-wrapper {
    flex-direction: column;
  }

  .testimonial-section-one.section-gap-y-axis {
    padding-bottom: 40px;
  }

  .testimonial-slider-one-wrap {
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .testimonial-details {
    text-align: center;
    max-width: none;
  }

  .testimonial-slider-one-block {
    justify-content: center;
    display: flex;
  }

  .testimonial-slider-one {
    justify-content: center;
  }

  .testimonial-slider-mask-one {
    max-width: 450px;
    margin-top: 30px;
  }

  .slider-one-left-arrow {
    top: 220px;
    left: 140px;
  }

  .slider-one-right-arrow {
    top: 220px;
    right: 140px;
  }

  .testimonial-one-slider-wrapper {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 80px;
    display: flex;
  }

  .padding-top-130px {
    padding-top: 60px;
  }

  .newsletter-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .newsletter-section-title {
    text-align: center;
  }

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

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

  .subscribe-button {
    background-position: 90%;
    padding-left: 15px;
    padding-right: 38px;
  }

  .hero-two-title-block {
    max-width: none;
  }

  .inner-text-image-two {
    width: 54px;
    margin-left: auto;
  }

  .hero-title-two {
    font-size: 36px;
  }

  .choice-us-wrapper-two {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .ethereum {
    width: auto;
    top: 2%;
    left: 0%;
  }

  .premium {
    width: auto;
    top: -1%;
  }

  .yuan {
    width: auto;
  }

  .features-card {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    width: 90%;
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .features-image-two-wrap {
    flex: none;
  }

  .get-start-section-two.section-gap-y-axis {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .getstart-block-two {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 10px;
  }

  .getstart-content-wrap-two {
    justify-content: center;
  }

  .getstart-card-two {
    width: 350px;
  }

  .testimonial-two-title {
    position: static;
  }

  .bitcoin-sticker-two {
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .testimonial-slider-two-block {
    justify-content: center;
    display: flex;
  }

  .testimonial-slider-two {
    justify-content: center;
  }

  .testimonial-slider-mask-two {
    max-width: 450px;
    margin-top: 30px;
  }

  .slider-two-left-arrow {
    top: 260px;
    bottom: 0;
    left: 30%;
  }

  .slider-two-right-arrow {
    top: 260px;
    left: auto;
    right: 30%;
  }

  .testimonial-two-slider-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .testimonial-two-content-wrap {
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin-top: 20px;
    padding-bottom: 5px;
    padding-left: 0;
    display: flex;
  }

  .testimonial-two-image-block {
    text-align: center;
    width: auto;
    height: auto;
  }

  .person-stciker-two-wrap {
    top: 7%;
    bottom: auto;
    left: auto;
    right: 15%;
  }

  .bitcoin-rate-sticker-two {
    top: 40%;
    bottom: auto;
    left: 5%;
    right: auto;
  }

  .newsletters-content-wrap-two {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .newsletter-title-two {
    max-width: 350px;
  }

  .newsletter-description-two {
    max-width: 380px;
  }

  .newsletter-input-block-two {
    z-index: 1;
    max-width: 380px;
  }

  .subscribe-button-two {
    padding-left: 15px;
    padding-right: 15px;
  }

  .newsletter-ellipse-bock-two {
    justify-content: flex-end;
    bottom: 10px;
    right: 5px;
  }

  .newsletter-elipse-two {
    width: 60px;
  }

  .dropped-shape-one {
    bottom: 14px;
    left: 10px;
  }

  .hero-three-title-block {
    max-width: 450px;
    margin-left: 0;
  }

  .hero-three-description {
    max-width: 530px;
    margin-bottom: 20px;
  }

  .hero-title-three {
    max-width: 420px;
    font-size: 34px;
    line-height: 1.4;
  }

  .hero-three-title-wrap {
    max-width: 540px;
  }

  .hero-three-squre-one {
    width: 30px;
    height: 30px;
  }

  .hero-three-squre-two {
    width: 30px;
    height: 30px;
    transform: translate(-20px);
  }

  .hero-arrow-image {
    left: 22px;
  }

  .hero-three-title-shape-wrap {
    margin-top: -10px;
  }

  .hero-three-bottom-content-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    align-items: end;
    justify-items: center;
    margin-top: 0;
  }

  .hero-three-subtitle-wrap {
    margin-top: 30px;
  }

  .hero-three-star-shape {
    margin-top: -15px;
  }

  .hero-three-image-block {
    width: 362px;
    height: 513px;
  }

  .bitcoin-apps-image {
    top: 28px;
    right: 28px;
  }

  .hero-hightlight-shape {
    top: -45px;
    right: -40px;
  }

  .hero-three-funfact-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    align-items: stretch;
  }

  .hero-three-shape {
    width: 50px;
    top: 70px;
    right: 10px;
  }

  .choice-us-title-three {
    font-size: 30px;
  }

  .watch-button-icon {
    width: 25px;
  }

  .video-lightbox-block {
    width: 70px;
    height: 70px;
  }

  .features-three-card-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .features-image-three-wrap {
    flex: none;
  }

  .choice-us-shape-one {
    width: 50px;
    top: 125px;
  }

  .choice-us-shape-one.rotate-animation {
    top: 140px;
  }

  .choice-us-shape-two {
    width: 40px;
    top: 140px;
  }

  .hight-light-shape {
    width: 50px;
    top: 3%;
    right: 0;
  }

  .hight-light-shape.high-light-one-animation {
    display: none;
  }

  .getstart-block-three {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .getstart-content-wrap-three {
    justify-content: flex-start;
  }

  .getstart-card-three {
    width: 350px;
  }

  .getstart-description {
    max-width: 460px;
    margin-left: 0;
    margin-right: auto;
  }

  .client-wrapper-three {
    flex-direction: column;
  }

  .our-app-image-block-three {
    max-width: 421px;
  }

  .newsletter-wrapper-three {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .newsletter-image-block-three {
    max-width: 330px;
  }

  .spark-shape {
    display: none;
    left: 25px;
  }

  .hight-light-shape-newsletter {
    width: 50px;
    top: 3%;
    right: 0;
  }

  .hight-light-shape-newsletter.high-light-one-animation {
    display: none;
  }

  .newsletter-content-block-three {
    max-width: 330px;
  }

  .testimonial-three-title {
    font-size: 30px;
  }

  .testimonial-three-slider-mask.small-device {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .slider-three-right-arrow {
    top: 260px;
    left: auto;
    right: 30%;
  }

  .slider-three-right-arrow.small-view {
    left: 40px;
  }

  .slider-three-left-arrow {
    top: 260px;
    bottom: 0;
    left: 30%;
  }

  .slider-three-left-arrow.small-view {
    right: 40px;
  }

  .testimonial-three-slide.small-device {
    width: 100%;
    max-width: 430px;
  }

  .features-card-two-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .features-card-two {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    align-items: center;
    width: 90%;
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .testimonial-content-desc {
    font-size: 18px;
  }

  .about-title-block {
    max-width: 450px;
    margin-left: 0;
  }

  .about-title-description {
    margin-bottom: 20px;
  }

  .about-title-shape-wrap {
    margin-top: -10px;
  }

  .about-hero-image-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
  }

  .about-funfact-wrapper {
    align-self: stretch;
    padding-bottom: 0;
  }

  .about-image-wrap {
    max-width: 285px;
  }

  .fun-fact-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    max-width: 260px;
    display: grid;
  }

  .funfact-title {
    font-size: 24px;
  }

  .about-bg-image {
    width: 100%;
  }

  .about-title-block-shape {
    width: 60px;
    display: none;
  }

  .about-image-highlight-shape {
    top: -13%;
    right: 0%;
  }

  .about-image-highlight-shape.spark-two-animation {
    width: 56px;
    display: none;
    top: -30px;
    right: 8px;
  }

  .our-mission-title-wrap {
    padding-top: 0;
  }

  .our-mission-titile {
    font-size: 28px;
  }

  .our-mission-content-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .our-mission-vector-two {
    display: none;
  }

  .ourmisson-banner {
    text-align: center;
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
    bottom: -20px;
    right: 0;
    transform: none;
  }

  .our-mission-content {
    margin-top: 0;
  }

  .our-vission-content {
    margin-top: 20px;
    padding-left: 0;
  }

  .ourmissson-highlight-shape {
    display: none;
  }

  .secure-title {
    font-size: 30px;
  }

  .secure-content-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 30px;
  }

  .secure-content-card {
    max-width: 450px;
  }

  .our-team-title {
    font-size: 30px;
  }

  .our-team-slider-mask {
    width: 290px;
  }

  .our-team-slider {
    margin-right: 30px;
  }

  .member-details-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .our-team-slider-block {
    padding-left: 20px;
  }

  .spark-shape-image {
    width: 50px;
    top: -9%;
    left: -3%;
  }

  .ourmission-vector-one {
    display: none;
  }

  .feature-title-block {
    max-width: 450px;
    margin-left: 0;
  }

  .feature-title-description {
    margin-bottom: 20px;
  }

  .feature-hero-button-wrap {
    flex-wrap: wrap;
  }

  .feature-hero-image-block {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .feature-funfact-wrapper {
    align-self: flex-start;
  }

  .feature-fun-fact-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    align-content: space-around;
    justify-content: space-around;
    justify-items: stretch;
  }

  .feature-image-wrap {
    max-width: 410px;
  }

  .feature-image-highlight-shape {
    top: -7%;
    right: -8%;
  }

  .feature-hero-title {
    max-width: 420px;
    font-size: 30px;
    line-height: 1.4;
  }

  .feature-hero-title-wrap {
    max-width: 420px;
  }

  .feature-title-shape-wrap {
    margin-top: -10px;
  }

  .get-start-button-primary {
    padding-left: 15px;
    padding-right: 15px;
  }

  .feature-hero-shape-two {
    top: 80px;
    left: auto;
    right: 60px;
  }

  .feature-hero-shape-one {
    display: none;
    top: 25%;
    bottom: auto;
  }

  .feautre-section-shape-one, .feautre-section-shape-two {
    display: none;
  }

  .explore-wrapper {
    grid-template-columns: 1fr;
  }

  .explore-button-primary {
    padding-left: 15px;
    padding-right: 15px;
  }

  .explore-image-shape {
    display: none;
  }

  .utility-page-form {
    max-width: 400px;
  }

  .price-breadcrumb-shape-one, .price-breadcrumb-shape-two {
    display: none;
  }

  .priceing-plan-wrapper {
    padding-top: 40px;
  }

  .pricine-plan-wrap {
    width: 100%;
    max-width: 350px;
    padding: 29px 32px 35px;
  }

  .price-range {
    font-size: 35px;
  }

  .priceing-button-outline, .priceing-button-secondary {
    padding-left: 15px;
    padding-right: 15px;
  }

  .monhtly-priceing-plan-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 30px;
  }

  .annual-priceing-plan-block {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .discount-wrap {
    top: -60%;
    left: 60%;
  }

  .priceing-faq-block {
    grid-template-columns: 1fr;
  }

  .faq-section-shape {
    display: none;
  }

  .pricing-faq-title {
    margin-bottom: 10px;
  }

  .arrow-button-primary {
    padding-left: 15px;
    padding-right: 15px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 20px;
  }

  .blog-breadcrumb-title-block {
    flex-direction: column;
    max-width: 526px;
    display: flex;
  }

  .feature-blog-list {
    flex-wrap: wrap;
  }

  .feature-blog-image-link {
    height: auto;
  }

  .blog-image {
    width: 100%;
  }

  .feature-blog-shape-one, .feature-blog-shape-spark {
    display: none;
  }

  .blogs-collection-list {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .blogs-item {
    flex-direction: column;
    width: 450px;
    display: flex;
  }

  .blog-image-link {
    width: 100%;
    height: auto;
  }

  .all-blog-tab-link {
    padding: 5px 15px;
  }

  .primary-next-button, .primary-previous-button {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-detail-meta-wrap {
    margin-top: 20px;
  }

  .blog-detail-title {
    font-size: 30px;
  }

  .blog-rich-text h2 {
    margin-top: 20px;
    font-size: 25px;
  }

  .blog-rich-text p {
    margin-bottom: 10px;
  }

  .blog-rich-text ul {
    margin-bottom: 20px;
  }

  .recent-blog-item-wrap {
    max-width: 556px;
  }

  .recent-blog-block {
    margin-bottom: 20px;
  }

  .join-naw-image-wrap {
    margin-bottom: 10px;
    padding: 15px;
  }

  .join-naw-description {
    margin-bottom: 15px;
  }

  .join-button-primary {
    padding-left: 15px;
    padding-right: 15px;
  }

  .join-now-spark-shape {
    display: none;
  }

  .related-blogs-list-wrapper {
    margin-top: 20px;
  }

  .related-blog-list {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .related-blogs-item {
    flex-direction: column;
    width: 450px;
    display: flex;
  }

  .related-blog-title {
    font-size: 30px;
  }

  .ourrelated-blog-section {
    padding-top: 40px;
  }

  .breadcrumb-shape-one, .breadcrumb-shape-two {
    display: none;
  }

  .blog-category-list, .blog-tag-detail-collection-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .contact-hero-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 36px;
  }

  .text-aria {
    min-height: 80px;
  }

  .contact-title-shape {
    display: block;
  }

  .contact-banner-shape {
    display: none;
    top: 0;
    right: 0;
  }

  .contact-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq-block {
    grid-template-columns: 1fr;
  }

  .contact-faq-shape.spark-one-animation, .contact-faq-section-shape {
    display: none;
  }

  .varifiacation-section.padding-bottom-130px {
    margin-top: 20px;
  }

  .varifiacation-section.padding-bottom-130px.extra-padding-530 {
    padding-bottom: 60px;
  }

  .varification-wrapper {
    margin-top: 50px;
  }

  .varification-image-wrap {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: static;
    transform: translate(0);
  }

  .varification-content-wrap {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .varification-content-wrap.forgot {
    max-width: 380px;
  }

  .varification-banner-image {
    border-radius: 10px;
  }

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

  .varification-title.forgot {
    font-size: 28px;
  }

  .autometic-varifaction-wrap {
    margin-top: 20px;
  }

  .validation-input-form {
    margin-top: 10px;
  }

  .validation-input-field-level {
    align-self: center;
    margin-bottom: 10px;
  }

  .sing-in-button, .sing-up-button, .subbmit-button, .back-to-home-btn {
    padding-left: 15px;
    padding-right: 15px;
  }

  .breadcrumb-section-title.blod {
    font-size: 32px;
  }

  .changelog-content {
    width: 400px;
  }

  .changlelog-content-sub-title {
    padding-top: 20px;
  }

  .license-wrapper {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .license-inner {
    width: 100%;
  }

  .licenses-title {
    font-size: 24px;
  }

  .lates-blog-section.padding-bottom-130px {
    padding-bottom: 50px;
  }

  .lates-blog-title-wrap.two {
    flex-direction: column;
    align-items: center;
  }

  .lates-blog-title.two {
    text-align: center;
    max-width: none;
    margin-bottom: 15px;
  }

  .lates-blog-title.three {
    font-size: 30px;
  }

  .lates-title-description.two {
    text-align: center;
    margin-right: auto;
  }

  .spark-image-home-three.spark-one-animation, .getstart-shape.rotate-animation, .slider-three-shape-one.high-light-two-animation {
    display: none;
  }

  .preview-title {
    font-size: 28px;
  }

  .preview-title.text-white {
    max-width: 450px;
    font-size: 28px;
  }

  .preview-hero-excerpt {
    max-width: 400px;
  }

  .preview-heading {
    font-size: 28px;
  }

  .preview-feature-grid-box {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .preview-essential-features-grid-box {
    grid-template-columns: 1fr 1fr;
  }

  .preview-single-page-block {
    max-width: 450px;
  }

  .template-showcase-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .preview-surprises-image-block.postition {
    max-width: 450px;
  }

  .preview-surprises-content-block, .preview-surprises-content-block.blog, .preview-surprises-content-block.header {
    max-width: 400px;
  }

  .preview-surprises-box-block {
    flex-direction: column;
    align-items: center;
  }

  .preview-surprises-box-block.blog-section {
    flex-direction: column;
  }

  .preview-surprises-box-block.margin-bottom-130px {
    margin-bottom: 60px;
  }

  .preview-footer-content-block {
    margin-top: 60px;
  }

  .preview-footer-title {
    font-size: 25px;
  }

  .preview-footer-excerpt.text-white {
    font-size: 16px;
  }

  .preview-title-3 {
    font-size: 28px;
  }

  .preview-title-3.text-white {
    margin-top: 10px;
  }

  .accordion-dropdown-text {
    line-height: 1.5;
  }

  .landing-page-section-title {
    max-width: 400px;
    font-size: 26px;
  }

  .reuseable-section-card-wrap {
    grid-template-columns: 1fr;
  }

  .preview-header-nav-inner {
    max-width: 100%;
  }

  .nav-menu-preview {
    flex-direction: column;
    padding-bottom: 30px;
  }

  .preview-menu-list {
    margin-bottom: 0;
  }

  .preview-menu-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .privew-button-primary {
    padding-left: 15px;
    padding-right: 15px;
  }

  .preview-hero-block {
    padding-top: 60px;
  }

  .preview-container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .preview-title-features {
    margin-bottom: 10px;
  }

  .preview-single-feature-box {
    max-width: 350px;
  }

  .margin-bottom-130px {
    margin-bottom: 60px;
  }

  .forgot-password-section.section-gap-y-axis {
    padding-top: 20px;
  }

  .forgot-wrapper {
    grid-template-columns: 1fr;
  }

  .forgot-image {
    width: 420px;
  }

  .view-more-button-wrap {
    margin-top: 20px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 30px;
  }

  .section-gap-y-axis {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .header-nav-inner-block {
    flex-flow: row;
    display: block;
  }

  .nav-menu {
    flex-direction: column;
  }

  .footer-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-title, .footer-copy-right-text {
    text-align: left;
  }

  .home-one-hero-wrapper {
    padding-top: 16px;
  }

  .home-one-hero-image {
    width: auto;
  }

  .hero-titile.font-blod {
    font-size: 32px;
  }

  .hero-one-title-block {
    max-width: 374px;
    margin-top: 30px;
  }

  .hero-one-title-descrption {
    max-width: none;
  }

  .fun-fact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .fun-fact-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .funfact-content-title {
    font-size: 24px;
  }

  .breadcumb-title-description {
    font-size: 16px;
  }

  .typography-title {
    font-size: 30px;
  }

  .button-titile {
    padding-top: 15px;
  }

  .breadcrumb-title {
    font-size: 30px;
  }

  .icons-title {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 30px;
  }

  .heading-one {
    font-size: 30px;
  }

  .choice-us-wrapper {
    align-items: start;
    justify-items: start;
    display: block;
  }

  .choice-us-image-block-one.section-1 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-top: 32px;
    display: block;
  }

  .choice-us-content-block-one, .choice-us-image-one {
    max-width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .section-title.text-center {
    font-size: 24px;
  }

  .section-titile-description.text-center {
    max-width: 100%;
  }

  .features-card-one {
    flex-direction: column;
    width: 100%;
    padding: 15px 12px;
  }

  .features-card-one.style-1 {
    padding: 16px;
  }

  .feature-description {
    text-align: left;
  }

  .feature-description.text-left {
    text-align: center;
  }

  .feature-card-content-wrap {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .getstart-section-title, .feature-section-title {
    font-size: 28px;
  }

  .feature-section-title.three {
    font-size: 24px;
  }

  .getstart-block {
    flex-direction: column;
    padding-top: 0;
    display: flex;
  }

  .getstart-card {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .getstart-card-title-image {
    max-width: 80%;
  }

  .getstart-banner-image {
    width: auto;
  }

  .padding-bottom-130px {
    padding-bottom: 40px;
  }

  .our-app-image-wrap {
    max-width: 100%;
  }

  .our-app-banner-image-one {
    width: auto;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
    top: -20px;
    left: 20%;
  }

  .our-app-banner-image-two {
    width: auto;
    margin-left: 0;
  }

  .our-app-section-title {
    font-size: 28px;
  }

  .our-app-section-title.three {
    font-size: 24px;
  }

  .ourapp-titile-description {
    max-width: 360px;
  }

  .client-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .testimonial-slider-one-wrap {
    align-items: center;
  }

  .testimonial-one-title {
    margin-top: 0;
  }

  .testimonial-one-image, .testimonial-one-image-block {
    width: 290px;
  }

  .bitcoin-rate-sticker-one {
    left: 0;
  }

  .bitcoin-sticker-one {
    top: 65px;
  }

  .chouce-us-title {
    font-size: 28px;
  }

  .testimonial-slider-one-block {
    width: 100%;
  }

  .testimonial-slider-one {
    width: 100%;
    max-width: 360px;
  }

  .testimonial-slider-mask-one {
    max-width: none;
  }

  .slider-one-left-arrow {
    margin-top: auto;
    margin-bottom: auto;
    bottom: 0;
    left: 60px;
  }

  .slider-one-right-arrow {
    right: 60px;
  }

  .testimonial-one-slider-wrapper {
    padding-top: 100px;
  }

  .client-logo-wrapper, .client-logo-inner {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .padding-top-130px {
    padding-top: 40px;
  }

  .newsletter-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .newsletter-section-title.three {
    font-size: 24px;
  }

  .subscribe-button {
    background-position: 93%;
    background-size: 15px;
    padding-left: 12px;
    padding-right: 30px;
  }

  .hero-two-title-block {
    max-width: 290px;
    margin-top: 0;
  }

  .inner-text-image-two {
    display: none;
  }

  .hero-title-two {
    font-size: 24px;
  }

  .choice-us-image-block-two {
    max-width: 300px;
  }

  .chouce-us-title-two {
    font-size: 28px;
  }

  .ethereum {
    width: 60px;
  }

  .premium {
    width: 50px;
  }

  .yuan {
    width: 60px;
    left: 23%;
  }

  .features-card {
    flex-direction: column;
    width: 100%;
    padding: 15px 12px;
  }

  .getstart-block-two {
    flex-direction: column;
    padding-top: 0;
    display: flex;
  }

  .getstart-card-two {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .getstart-banner-two {
    width: auto;
  }

  .our-app-image-block-two {
    margin-top: 40px;
  }

  .our-app-image-wrap-two {
    max-width: 290px;
  }

  .bitcoin-sticker-two {
    top: 5%;
  }

  .testimonial-slider-two-block {
    width: 100%;
  }

  .testimonial-slider-two {
    width: 100%;
    max-width: 290px;
  }

  .testimonial-slider-mask-two {
    max-width: none;
  }

  .slider-two-left-arrow {
    margin-top: auto;
    margin-bottom: auto;
    top: 140px;
    bottom: 0;
    left: 60px;
  }

  .slider-two-right-arrow {
    top: 140px;
    right: 60px;
  }

  .testimonial-two-image-block {
    width: 290px;
  }

  .person-stciker-two-wrap {
    right: 5%;
  }

  .bitcoin-rate-sticker-two {
    left: 0;
  }

  .newsletters-content-wrap-two {
    padding-left: 10px;
    padding-right: 10px;
  }

  .newsletter-elipse-one, .newsletter-elipse-two, .dropped-shape-one, .dropped-shape-two {
    display: none;
  }

  .hero-three-title-block {
    min-width: auto;
    max-width: none;
  }

  .hero-three-description {
    line-height: 1.5;
  }

  .hero-title-three {
    max-width: none;
    font-size: 28px;
  }

  .hero-three-title-wrap {
    width: 290px;
    max-width: none;
  }

  .hero-squre-title-shape {
    display: none;
  }

  .hero-three-squre-one {
    width: 25px;
    height: 25px;
  }

  .hero-three-squre-two {
    width: 25px;
    height: 25px;
    transform: translate(-12px);
  }

  .hero-arrow-image {
    width: 50%;
    height: 15px;
    left: 25px;
  }

  .hero-three-subtitle {
    font-size: 22px;
  }

  .hero-three-star-shape {
    width: auto;
    margin-top: -5px;
  }

  .hero-three-image-block {
    width: 284px;
    height: 376px;
  }

  .bitcoin-apps-image {
    width: 95%;
    top: 15px;
    right: 15px;
  }

  .hero-hightlight-shape {
    display: none;
  }

  .hero-three-funfact-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

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

  .hero-funfact-title {
    font-size: 25px;
  }

  .hero-three-shape {
    display: none;
    top: 40px;
  }

  .choice-us-title-three {
    font-size: 24px;
  }

  .video-button {
    top: 55%;
  }

  .watch-button-icon {
    width: 20px;
  }

  .video-lightbox-block {
    width: 60px;
    height: 60px;
  }

  .features-image-three-wrap {
    margin-left: auto;
  }

  .choice-us-shape-one, .choice-us-shape-two {
    display: none;
  }

  .hight-light-shape {
    top: 1%;
  }

  .getstart-block-three {
    flex-direction: column;
    padding-top: 0;
    display: flex;
  }

  .getstart-banner-three {
    width: auto;
  }

  .getstart-content-wrap-three {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .getstart-card-three {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .client-wrapper-three {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .client-logo-three, .single-logo-three {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .our-app-image-block-three {
    margin-top: 40px;
  }

  .newsletter-wrapper-three {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .spark-shape {
    display: none;
  }

  .hight-light-shape-newsletter {
    display: none;
    top: 1%;
  }

  .testimonial-three-title {
    font-size: 24px;
  }

  .slider-three-right-arrow {
    top: 140px;
    right: 60px;
  }

  .slider-three-left-arrow {
    margin-top: auto;
    margin-bottom: auto;
    top: 140px;
    bottom: 0;
    left: 60px;
  }

  .features-card-two {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    width: 100%;
    padding: 20px 15px;
  }

  .testimonial-content-desc {
    font-size: 16px;
  }

  .about-title-block {
    min-width: auto;
    max-width: none;
  }

  .about-title-description {
    line-height: 1.5;
  }

  .about-hero-image-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .fun-fact-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    max-width: 300px;
  }

  .funfact-title {
    font-size: 22px;
  }

  .about-title-block-shape {
    display: none;
  }

  .about-image-highlight-shape {
    width: 50px;
  }

  .about-image-highlight-shape.spark-two-animation {
    width: 45px;
    top: -28px;
    right: 2px;
  }

  .our-mission-titile {
    font-size: 24px;
  }

  .our-mission-content-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .ourmisson-banner {
    margin-top: 10px;
    bottom: -10px;
  }

  .our-mission-content-title {
    margin-bottom: 5px;
  }

  .secure-title {
    text-align: center;
    font-size: 24px;
  }

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

  .our-team-title {
    font-size: 24px;
  }

  .our-team-slider-mask {
    width: 270px;
  }

  .ourteam-shape.high-light-one-animation {
    display: none;
  }

  .feature-title-block {
    min-width: auto;
    max-width: none;
  }

  .feature-title-description {
    line-height: 1.5;
  }

  .feature-hero-button-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
  }

  .feature-fun-fact-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .feature-image-highlight-shape {
    z-index: -1;
    width: 50px;
    top: -6%;
    right: -5%;
  }

  .feature-image-highlight-shape.spark-two-animation {
    display: none;
  }

  .feature-hero-title {
    max-width: none;
    font-size: 28px;
  }

  .feature-hero-title-wrap {
    width: 290px;
    max-width: none;
  }

  .get-start-button-primary {
    align-self: auto;
  }

  .feature-hero-shape-two {
    width: 80px;
  }

  .explore-title {
    text-align: center;
    font-size: 26px;
  }

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

  .explore-button-primary {
    align-self: auto;
  }

  .utility-page-form {
    max-width: 290px;
  }

  .price-range {
    font-size: 30px;
  }

  .discount-wrap {
    top: -100%;
    left: 72%;
  }

  .discount-text {
    font-size: 16px;
  }

  .price-faq-question-wrap {
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .arrow-button-primary {
    align-self: auto;
  }

  .faq-title {
    margin-right: 0;
    font-size: 18px;
  }

  .icon-block {
    flex: none;
  }

  .accordion-item, .accordion-item-trigger {
    padding-left: 10px;
    padding-right: 10px;
  }

  .add-icon, .close-icon {
    flex: none;
  }

  .blog-breadcrumb-title {
    font-size: 30px;
  }

  .blogs-item {
    width: auto;
  }

  .blog-detail-meta-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .meta-divider {
    width: 56px;
  }

  .blog-detail-title {
    font-size: 28px;
  }

  .blog-rich-text h2 {
    font-size: 24px;
  }

  .recent-blog-item-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .recent-blog-image-wrap {
    width: 100%;
    max-width: 260px;
    height: 100%;
  }

  .blog-short-description {
    margin-top: 5px;
  }

  .join-naw-block {
    max-width: none;
    padding: 30px 30px 20px;
  }

  .join-button-primary {
    align-self: auto;
  }

  .related-blogs-item {
    width: auto;
  }

  .related-blog-title {
    font-size: 24px;
  }

  .category-breadcrumb-title {
    font-size: 30px;
  }

  .contact-input-group {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .contact-title-shape {
    display: none;
  }

  .faq-question-wrap {
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .varifiacation-section.padding-bottom-130px.extra-padding-530 {
    padding-bottom: 40px;
  }

  .varification-wrapper {
    margin-top: 40px;
  }

  .varification-content-wrap.forgot {
    max-width: 350px;
  }

  .varification-title {
    font-size: 30px;
  }

  .varification-title.forgot {
    font-size: 24px;
  }

  .solid-border-divider {
    width: 60px;
  }

  .validation-input-form {
    margin-top: 20px;
  }

  .back-to-home-btn {
    align-self: auto;
  }

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

  .changelog-content {
    width: 240px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .initial-released-block {
    display: block;
  }

  .changlelog-content-sub-title {
    padding-top: 0;
  }

  .initial-text {
    margin-bottom: 10px;
  }

  .license-single-item {
    padding: 20px;
  }

  .licenses-title {
    font-size: 20px;
  }

  .license-link {
    font-size: 16px;
  }

  .lates-blog-section.padding-bottom-130px {
    padding-bottom: 40px;
  }

  .lates-blog-title {
    font-size: 28px;
  }

  .lates-blog-title.three {
    font-size: 24px;
  }

  .slider-three-shape-two {
    display: none;
  }

  .preview-title.text-white {
    font-size: 24px;
  }

  .preview-video-lightbox-block {
    width: 70px;
    height: 70px;
  }

  .preview-hero-excerpt {
    margin-top: 5px;
    font-size: 16px;
  }

  .preview-heading {
    font-size: 24px;
  }

  .badge {
    font-size: 18px;
  }

  .preview-essential-features-grid-box, .template-showcase-grid {
    grid-template-columns: 1fr;
  }

  .preview-footer-excerpt.text-white {
    font-size: 16px;
  }

  .preview-title-3.text-white {
    font-size: 24px;
  }

  .accrodion-dropdown {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .accordion-toggle {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .landing-page-section-title {
    max-width: none;
    font-size: 22px;
  }

  .nav-menu-preview {
    flex-direction: column;
  }

  .preview-video-lightbox-wrapper {
    margin-top: 20px;
  }

  .preview-video-lightbox-wrapper-2 {
    margin-top: 0;
  }

  .image-2 {
    margin-left: 0;
  }

  .image-3 {
    height: 40px;
  }

  .image-4 {
    height: 32px;
    margin-left: 0;
  }

  .flex-block {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .flex-block-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
  }

  .form, .text-field {
    width: 100%;
  }

  .field-label {
    flex-flow: column;
    display: block;
  }

  .grid-social-square {
    grid-template-columns: 1fr 1fr;
  }
}

#w-node-_5c72479c-27e2-de5e-5b92-7b0f682e13ae-e1027521, #w-node-_5c72479c-27e2-de5e-5b92-7b0f682e13b8-e1027521, #w-node-_5c72479c-27e2-de5e-5b92-7b0f682e13c2-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de47a-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de47b-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de481-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de482-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de488-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de489-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de48f-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de490-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de496-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de497-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de49d-e1027521, #w-node-e7bc6897-0da2-cf23-a685-b22f8d6de49e-e1027521, #w-node-_1134d3c2-d3fb-6eb1-f6be-eab3a103e0b8-e1027521, #w-node-_1134d3c2-d3fb-6eb1-f6be-eab3a103e0be-e1027521, #w-node-_1134d3c2-d3fb-6eb1-f6be-eab3a103e0c4-e1027521, #w-node-_1134d3c2-d3fb-6eb1-f6be-eab3a103e0d6-e1027521, #w-node-_1134d3c2-d3fb-6eb1-f6be-eab3a103e0dc-e1027521, #w-node-_1134d3c2-d3fb-6eb1-f6be-eab3a103e0e2-e1027521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c832eeec-8074-5660-55d6-a2b398096bb6-e1027532 {
  justify-self: start;
}

#w-node-_7364a871-80bf-3713-169c-afb611c040f5-11c040f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c49a1d78-f1d4-f70c-bd95-3b847eae4c29-e1027533 {
  justify-self: start;
}

#w-node-f5c50800-e928-03db-304d-28db3a16ce56-e1027536 {
  align-self: end;
}

#w-node-_7532b065-d5aa-6225-f62d-4b8c3c61c60f-e1027536 {
  justify-self: stretch;
}

#w-node-ad11d293-b2f5-9c7b-bb78-ce7b611ecc4c-e102753b {
  align-self: center;
}

#w-node-_04489ea3-095f-dc43-5967-c8aab0a65b5e-e102753c {
  align-self: auto;
}

#w-node-dcba7297-6be4-369a-6cd7-f3cf65eb110e-e102753c {
  align-self: baseline;
  justify-self: auto;
}

#w-node-_9307cb20-235b-9e22-7bed-21189b683a14-e102753c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_84add0a5-66e2-e571-9743-afb09961e42f-e102753c {
  justify-self: center;
}

#w-node-_59e36534-1fc3-0434-1033-f1e3078b5e38-e102753c {
  justify-self: end;
}

#w-node-c5849830-e77e-34aa-9067-0e4a0f045ada-e102753c {
  align-self: start;
  justify-self: center;
}

#w-node-e6619518-89aa-a0a2-c74a-c8ebf1fa05fa-e102753c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2ea17a50-5aec-5e80-9fdd-d338760bc9c2-e102753c {
  justify-self: end;
}

#w-node-_2ea17a50-5aec-5e80-9fdd-d338760bc9df-e102753c {
  justify-self: center;
}

#w-node-_6208fa22-2367-4e1a-259e-4a2b17dc8258-e102753e {
  justify-self: end;
}

#w-node-_775c544b-de5d-eec8-1723-4ebbee6fc2de-e102753e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ce951fd2-73c8-2bd8-3524-3e1ebf7c948a-e102753e {
  align-self: stretch;
  justify-self: stretch;
}

#w-node-ce951fd2-73c8-2bd8-3524-3e1ebf7c948c-e102753e {
  align-self: end;
}

#w-node-_08c1b540-5358-62ee-bf8b-dbea7fc29fec-e102753f {
  justify-self: start;
}

#w-node-_08c1b540-5358-62ee-bf8b-dbea7fc2a001-e102753f {
  justify-self: end;
}

#w-node-_704597e2-ff4b-b63d-d35a-6b0b8fec710b-e102753f {
  align-self: center;
}

#w-node-_607cf76e-d61d-8a2a-2e95-cdd97f8974ca-e102753f {
  align-self: start;
}

#w-node-_607cf76e-d61d-8a2a-2e95-cdd97f8974b4-e102753f {
  align-self: end;
}

#w-node-_0f0b1fd3-8cd6-e3d5-6b37-17093006acdd-e102753f, #w-node-_28fab42e-e324-7f39-9276-5be57ab8d636-e102753f, #w-node-_28fab42e-e324-7f39-9276-5be57ab8d63c-e102753f {
  justify-self: center;
}

#w-node-cc6fcb43-bcf4-d4d4-e2a6-a8915c4957ef-e102753f {
  justify-self: end;
}

#w-node-cc6fcb43-bcf4-d4d4-e2a6-a8915c4957f5-e102753f, #w-node-_54db3dc3-c653-72e9-4b35-2bc55a31cd04-e102753f, #w-node-_54db3dc3-c653-72e9-4b35-2bc55a31cd0a-e102753f {
  justify-self: center;
}

#w-node-_85f95aa2-3282-4f13-5280-be39996d35c3-e1027540 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db2b16a9-aaf7-1878-66e6-5564cc9cc3c7-e1027541 {
  justify-self: stretch;
}

#w-node-_2235c8ab-f3d1-7f9f-cfaf-bc9682ed2f2e-e1027541 {
  justify-self: start;
}

#w-node-_04489ea3-095f-dc43-5967-c8aab0a65b5e-88c639a9 {
  align-self: auto;
}

#w-node-dcba7297-6be4-369a-6cd7-f3cf65eb110e-88c639a9 {
  align-self: baseline;
  justify-self: auto;
}

#w-node-e6619518-89aa-a0a2-c74a-c8ebf1fa05fa-88c639a9 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_84add0a5-66e2-e571-9743-afb09961e42f-88c639a9 {
  justify-self: center;
}

#w-node-_59e36534-1fc3-0434-1033-f1e3078b5e38-88c639a9 {
  justify-self: end;
}

#w-node-c5849830-e77e-34aa-9067-0e4a0f045ada-88c639a9, #w-node-_91ad82b1-6cd1-2993-a783-c40c6ad24838-88c639a9 {
  justify-self: center;
}

#w-node-_12e7827b-c363-9268-2db0-a37302504cd1-88c639a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_88312188-8e47-2640-cb16-3ef8a84e2506-88c639a9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-c067d8c9-f146-e76e-a708-87401342abbb-88c639a9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 1440px) {
  #w-node-ce951fd2-73c8-2bd8-3524-3e1ebf7c948a-e102753e {
    align-self: start;
  }

  #w-node-ce951fd2-73c8-2bd8-3524-3e1ebf7c948c-e102753e {
    align-self: end;
  }

  #w-node-_607cf76e-d61d-8a2a-2e95-cdd97f8974ca-e102753f {
    align-self: start;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_59e36534-1fc3-0434-1033-f1e3078b5e38-e102753c, #w-node-_2ea17a50-5aec-5e80-9fdd-d338760bc9c2-e102753c, #w-node-c90d349f-7a32-6cf9-cd48-268ceacf1d44-e102753e {
    justify-self: end;
  }

  #w-node-_6208fa22-2367-4e1a-259e-4a2b17dc8258-e102753e {
    align-self: end;
  }

  #w-node-_59e36534-1fc3-0434-1033-f1e3078b5e38-88c639a9 {
    justify-self: end;
  }
}

@media screen and (max-width: 991px) {
  #w-node-c832eeec-8074-5660-55d6-a2b398096bb6-e1027532 {
    align-self: center;
    justify-self: center;
  }

  #w-node-c49a1d78-f1d4-f70c-bd95-3b847eae4c29-e1027533 {
    justify-self: center;
  }

  #w-node-ad11d293-b2f5-9c7b-bb78-ce7b611ecc4c-e102753b {
    align-self: center;
  }

  #w-node-c90d349f-7a32-6cf9-cd48-268ceacf1d44-e102753e {
    justify-self: end;
  }

  #w-node-_6208fa22-2367-4e1a-259e-4a2b17dc8258-e102753e {
    justify-self: center;
  }

  #w-node-ce951fd2-73c8-2bd8-3524-3e1ebf7c948a-e102753e {
    align-self: center;
  }

  #w-node-_9fbd0ced-ee58-38b9-37af-da83cfea34de-e102753e {
    align-self: center;
    justify-self: center;
  }

  #w-node-_2235c8ab-f3d1-7f9f-cfaf-bc9682ed2f2e-e1027541 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3676b9af-ce45-2d69-02fd-fef2f0fa9ed7-e1027532 {
    align-self: center;
    justify-self: stretch;
  }

  #w-node-_3676b9af-ce45-2d69-02fd-fef2f0fa9eec-e1027532 {
    justify-self: stretch;
  }

  #w-node-c832eeec-8074-5660-55d6-a2b398096bb6-e1027532 {
    align-self: center;
    justify-self: center;
  }

  #w-node-_7364a871-80bf-3713-169c-afb611c040f5-11c040f1, #w-node-_8f1a948b-8d52-321a-2162-a82a4a0aa97b-e1027533, #w-node-_586aa82c-78c1-9943-d257-0a4040b5223a-e1027539 {
    justify-self: center;
  }

  #w-node-_3676b9af-ce45-2d69-02fd-fef2f0fa9eec-e102753a, #w-node-_3676b9af-ce45-2d69-02fd-fef2f0fa9ee5-e102753a {
    justify-self: stretch;
  }

  #w-node-_3676b9af-ce45-2d69-02fd-fef2f0fa9ed7-e102753a {
    align-self: center;
    justify-self: stretch;
  }

  #w-node-_961148dc-efa7-8701-8cbd-e08ffbbbfe7a-e102753b, #w-node-dcba7297-6be4-369a-6cd7-f3cf65eb110e-e102753c {
    justify-self: center;
  }

  #w-node-_84add0a5-66e2-e571-9743-afb09961e42f-e102753c, #w-node-_59e36534-1fc3-0434-1033-f1e3078b5e38-e102753c, #w-node-c5849830-e77e-34aa-9067-0e4a0f045ada-e102753c, #w-node-_2ea17a50-5aec-5e80-9fdd-d338760bc9c2-e102753c, #w-node-_2ea17a50-5aec-5e80-9fdd-d338760bc9df-e102753c, #w-node-_0576333e-ae35-b62e-dc8b-4837b1750d5f-e102753e {
    justify-self: start;
  }

  #w-node-c90d349f-7a32-6cf9-cd48-268ceacf1d44-e102753e {
    justify-self: center;
  }

  #w-node-_6208fa22-2367-4e1a-259e-4a2b17dc8258-e102753e {
    justify-self: stretch;
  }

  #w-node-ce951fd2-73c8-2bd8-3524-3e1ebf7c948a-e102753e {
    justify-self: center;
  }

  #w-node-ce951fd2-73c8-2bd8-3524-3e1ebf7c948c-e102753e {
    align-self: center;
  }

  #w-node-_5666d731-6471-d1a5-dfee-c990f00c4579-e102753e {
    justify-self: center;
  }

  #w-node-_08c1b540-5358-62ee-bf8b-dbea7fc29fec-e102753f {
    align-self: center;
    justify-self: stretch;
  }

  #w-node-_08c1b540-5358-62ee-bf8b-dbea7fc29ff3-e102753f {
    justify-self: center;
  }

  #w-node-_08c1b540-5358-62ee-bf8b-dbea7fc29ffa-e102753f, #w-node-_08c1b540-5358-62ee-bf8b-dbea7fc2a001-e102753f {
    justify-self: stretch;
  }

  #w-node-_607cf76e-d61d-8a2a-2e95-cdd97f8974b4-e102753f {
    align-self: center;
  }

  #w-node-_6de9c0f9-cabe-2013-874e-8ca826d8ff6d-e102753f, #w-node-dcba7297-6be4-369a-6cd7-f3cf65eb110e-88c639a9 {
    justify-self: center;
  }

  #w-node-_84add0a5-66e2-e571-9743-afb09961e42f-88c639a9, #w-node-_59e36534-1fc3-0434-1033-f1e3078b5e38-88c639a9, #w-node-c5849830-e77e-34aa-9067-0e4a0f045ada-88c639a9, #w-node-_91ad82b1-6cd1-2993-a783-c40c6ad24838-88c639a9 {
    justify-self: start;
  }

  #w-node-c067d8c9-f146-e76e-a708-87401342abbb-88c639a9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7364a871-80bf-3713-169c-afb611c040f5-11c040f1, #w-node-_7364a871-80bf-3713-169c-afb611c040fd-11c040f1 {
    justify-self: auto;
  }

  #w-node-dcba7297-6be4-369a-6cd7-f3cf65eb110e-e102753c, #w-node-dcba7297-6be4-369a-6cd7-f3cf65eb110e-88c639a9 {
    align-self: auto;
  }

  #w-node-_88312188-8e47-2640-cb16-3ef8a84e2506-88c639a9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf') format('truetype'), url('../fonts/Inter-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Coveredbyyourgrace';
  src: url('../fonts/CoveredByYourGrace-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}