:root {
  --first-font: "Poppins", sans-serif;
  --container: 1488px;
  --container-tblet: 1024px;
  --body-background: #f1f1f1;
  --primary-color: #000;
  --header-bg: #fff;
  --header-height: 80px;
  --header-color: #000;
  --logo-height: 60px;
  --logo-width: auto;
  --text-color: #000;
  --steps-background: #fff;
  --footer-height: 40px;
}

.container {
  max-width: var(--container);
  margin: auto;
  padding: 0 24px;
}

.container-tblet {
  max-width: var(--container-tblet);
  margin: auto;
  padding: 0 24px;
}
/*GENERAL css start here*/

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: inherit;
  vertical-align: inherit;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
em,
strong,
button,
blockquote,
small,
strike,
sub,
sup,
tt,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--black);
  font-size: 14px;
  line-height: 22px;
  background-color: var(--body-background);
  font-family: var(--first-font);
}

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

a {
  color: var(--black);
}

a,
a:hover,
a:focus,
button,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-ui-invalid {
  box-shadow: none;
}

svg:not(:root) {
  overflow: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  outline: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.wrapper {
  margin-top: var(--header-height);
}
/*header css start here*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  height: var(--header-height);
  color: var(--header-color);
  z-index: 1;
}
header .container {
  height: 100%;
}
.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.header-wrapper a {
  color: inherit;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
  height: var(--logo-height);
  width: var(--logo-width);
}
/*header css end here*/
.steps-main-wrapper {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 0;
}
.steps-main-wrapper .container-tblet {
  width: 100%;
}
.page-title {
  margin-bottom: 40px;
}
.page-title h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
}
.page-title p {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.6;
  color: var(--text-color);
}
.steps-block-wrapper {
  background: var(--steps-background);
  padding: 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 3px 6px 14px rgba(0, 0, 0, 0.1),
    0 9px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 6px 14px rgba(0, 0, 0, 0.1), 0 9px 10px rgba(0, 0, 0, 0.1);
}
.steps-block-wrapper .app-img {
  width: 40%;
  text-align: center;
}
.steps-block-wrapper .app-img img {
  height: 350px;
  width: 158px;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border: 1px solid #efefef;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.steps-content {
  width: 60%;
}
.steps-content .title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.steps-content ul {
  counter-reset: my-steps-counter;
}
.steps-content ul li {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.steps-content ul li strong {
  color: var(--primary-color);
}
.steps-content ul li::before {
  content: counter(my-steps-counter);
  counter-increment: my-steps-counter;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  margin-right: 10px;
}
footer {
  height: var(--footer-height);
}
footer .container {
  height: 100%;
}
.footer-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-wrapper p {
  opacity: 0.6;
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer ul li:not(:last-child) {
  border-right: 1px solid;
}
footer ul li a {
  padding: 4px 16px;
  opacity: 0.6;
  color: var(--text-color);
}
footer ul li a:hover {
  opacity: 1;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}
/*responsive css start here*/
@media only screen and (max-width: 767px) {
  .steps-block-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .steps-block-wrapper .app-img,
  .steps-content {
    width: 100%;
  }
  .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  footer {
    height: auto;
  }
}
