:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-display: swap
}

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  font-family: 'Inter', sans-serif;
  background-color: #fff
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto
}

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

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

@media (min-width:768px) {
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }

  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }

  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }
}

@media (min-width:992px) {
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
  }
}

@media (min-width:1200px) {
  .col-xl {
    flex-basis: 0%;
    flex-grow: 1;
    max-width: 100%
  }

  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
  }

  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
  }

  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
  }
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1
}

textarea.form-control {
  height: auto
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
  align-items: stretch;
  width: 100%
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0
}

.input-group>.custom-select:not(:first-child),
.input-group>.form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0
}

.input-group-append,
.input-group-prepend {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex
}

.bg-white {
  background-color: #fff !important
}

.border {
  border: 1px solid #dee2e6 !important
}

.d-none {
  display: none !important
}

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

@media (min-width:1200px) {
  .d-xl-block {
    display: block !important
  }

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

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

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

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

.h-100 {
  height: 100% !important
}

.mt-0,
.my-0 {
  margin-top: 0 !important
}

.mb-1,
.my-1 {
  margin-bottom: .25rem !important
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important
}

.mt-5,
.my-5 {
  margin-top: 3rem !important
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important
}

.p-3 {
  padding: 1rem !important
}

.pt-3,
.py-3 {
  padding-top: 1rem !important
}

.p-4 {
  padding: 1.5rem !important
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important
}

.p-5 {
  padding: 3rem !important
}

.pt-5,
.py-5 {
  padding-top: 3rem !important
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important
}

@media (min-width:768px) {

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important
  }

  .p-md-5 {
    padding: 3rem !important
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important
  }
}

@media (min-width:992px) {

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important
  }
}

@media (min-width:1200px) {

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important
  }
}

.text-right {
  text-align: right !important
}

.text-center {
  text-align: center !important
}

@media (min-width:768px) {
  .text-md-center {
    text-align: center !important
  }
}

@media (min-width:1200px) {
  .text-xl-left {
    text-align: left !important
  }
}

.text-lowercase {
  text-transform: lowercase !important
}

:root {
  --first-color: #d50241;
  --second-color: #23c1cb;
  --third-color: #10191f;
  --font-color: #464646;
  --font-color2: #1b1b1b;
  --border-color: #c6d3dc;
  --bg-gray: #f3f3f3;
  --bg-gray-2: #f2f2f2;
  --bg-gray-dark: #10191f
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-family: 'Inter', sans-serif;
  font-display: swap;
  line-height: 1.42857;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch
}

* {
  -webkit-overflow-scrolling: touch
}

body,
html {
  line-height: 1;
  text-align: left;
  background: 0 0;
  padding: 0;
  margin: 0;
  border: none;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  overflow-x: hidden
}

html {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-display: swap
}

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

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0
}

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

img {
  display: block;
  border: none;
  outline: 0;
  margin: 0 auto;
  max-width: 100%;
  -ms-interpolation-mode: bicubic
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  text-transform: none;
  padding: 0 0 5px;
  color: var(--font-color2);
  margin: 0;
  line-height: normal;
  margin-bottom: 1.5rem
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit
}

h1 {
  font-size: calc(112.5% + 3vw);
  padding: 0;
  color: #000;
  margin-bottom: 1rem;
  font-weight: 800
}

h2 {
  font-size: calc(112.5% + 1.15vw);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem
}

h3 {
  font-size: calc(112.5% + .75vw);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem
}

h5 {
  font-size: calc(112.5% + .29vw);
  line-height: 1.59;
  font-weight: 30
}

h5 strong {
  font-weight: 400;
  font-size: X-LARGE
}

strong {
  font-weight: 400
}

p {
  margin: 0;
  line-height: 1.59;
  font-size: 1.125em;
  font-weight: 30
}

p.p-small {
  font-size: 1.6rem !important
}

p.p-large {
  font-size: calc(112.5% + .24vw) !important
}

a {
  color: #01b8d9
}

a,
a:visited {
  text-decoration: none;
  outline: 0
}

p {
  color: #000
}

p a {
  color: #23abc9
}

a:hover {
  text-decoration: none
}

a,
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer
}

a {
  color: var(--first-color)
}

a,
a:visited {
  line-height: normal;
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease .3s;
  transition: all ease .3s
}

p a,
p a:visited {
  line-height: inherit
}

textarea {
  resize: vertical
}

input,
select,
textarea {
  outline: 0;
  font-family: inherit;
  font-display: swap;
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out
}

input[type=password],
input[type=text],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

input[type=date],
input[type=email],
input[type=file],
input[type=number],
input[type=password],
input[type=phone],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
  background-color: #fff;
  border: 1px solid var(--border-color);
  height: 3rem;
  padding: 0 10px;
  width: 100%;
  color: var(--txt-color);
  font-family: inherit;
  font-display: swap;
  font-weight: 400;
  border-radius: 4px
}

select {
  padding-right: 35px;
  background-image: url(images/retina/down-arrow.svg);
  background-size: 18px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: calc(100% - 11px) center
}

.form textarea {
  height: 120px;
  padding-top: 8px
}

header:not(.js--scrolled) {
  color: #fff
}

ul.social1 li a i {
  color: #000;
}

.header-navigation>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.header-navigation>ul>li {
  padding: 0 1.5rem
}

.header-navigation>ul>li>a:not(.header-btn) {
  color: currentColor;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
  font-weight: 500
}

.header-navigation>ul>li>a:not(.header-btn):after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #23c1cb;
  bottom: -10px;
  -webkit-transition: .3s ease-in-out all;
  transition: .3s ease-in-out all
}

.header-btn {
  background-color: #23c1cb;
  color: #fff;
  padding: 12px 30px;
  border: 1px solid #23c1cb;
  display: inline-block;
  border-radius: 50px
}

.navs-toggle {
  cursor: pointer;
  display: none;
  vertical-align: middle;
  margin-left: 25px;
  height: 22px;
  line-height: 1;
  width: 30px;
  z-index: 1
}

.navs-toggle span {
  background: #23c1cb;
  border-radius: 3px;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  height: 3px;
  width: 30px
}

.navs-toggle span:nth-child(1) {
  width: 25px
}

.navs-toggle span:nth-child(2) {
  width: 20px
}

.navs-toggle:hover span:nth-child(3) {
  width: 25px
}

.navs-toggle:hover span:nth-child(2) {
  width: 30px
}

.navs-toggle:hover span:nth-child(1) {
  width: 20px
}

.header.js--scrolled .navs-toggle span,
.header.js--scrolled .navs-toggle span::after,
.header.js--scrolled .navs-toggle span::before {
  background: #000
}

.navs-toggle::before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgb(0 0 0 / .8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  content: "";
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease
}

.navs-toggle.open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.navigation-wrap .logo svg path {
  fill: #000
}

.close--header:hover,
.header--search:hover svg {
  fill: #23c1cb
}

.header--search:hover .search-txt {
  color: #23c1cb
}

.header--search:hover {
  border-bottom: solid #23c1cb 1px
}

.header--search {
  border-bottom: solid #000 1px;
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 44px;
  -webkit-transition: 0;
  transition: 0
}

.search-txt {
  color: #000;
  margin-right: 3px;
  font-size: 18px
}

.header--search svg {
  max-width: 12px;
  max-height: 12px
}

.navigation-wrap-inner {
  overflow: hidden;
  padding-right: 2rem;
  position: relative;
  height: 100%
}

.main-navigation {
  width: calc(100% + 20px);
  padding-right: 20px;
  overflow: hidden;
  height: 100%;
  overflow-y: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0
}

.navigation-wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: #fff;
  padding: 1.5rem 2.5rem;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s ease-in-out all;
  transition: .3s ease-in-out all;
  z-index: 11;
  overflow: hidden;
  overflow-y: auto
}

.navigation-wrap.is-opened {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.headernav-dropdown {
  max-width: 1800px;
  margin: 0 auto;
  padding: 3rem 6rem
}

.headernav-vertical {
  width: 33.33%;
  position: relative
}

.headernav-dropdown>ul>li>a {
  display: block;
  padding: 10px 0;
  font-size: calc(112.5% + 2.4vw);
  font-weight: 700;
  color: #d5d2d2;
  position: relative
}

.headernav-dropdown>ul>li>a .menu-bit {
  display: inline-block;
  vertical-align: baseline;
  width: .3em;
  height: .3em;
  margin-left: -.3em;
  background: #23c1cb;
  position: relative;
  opacity: 0
}

.headernav-dropdown>ul>li.is-active>a .menu-bit {
  opacity: 1
}

.headernav-dropdown>ul>li>a:hover {
  color: #1b1b1b
}

.headernav-dropdown__links {
  position: absolute;
  left: 100%;
  top: 0;
  width: 200%;
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 100%
}

.two-cols__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.two-cols__links li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

.headernav-dropdown__links>.row {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%
}

.has-dropdown__links.is-active .headernav-dropdown__links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.has-dropdown__links.is-active a:not(.link-arrow) {
  color: #1b1b1b
}

.has-dropdown__links.is-active a:not(.link-arrow):hover {
  color: #23c1cb
}

.headernav-dropdown__links a:not(.link-arrow) {
  font-size: 2.2rem;
  color: #464646;
  font-weight: 400;
  display: block;
  text-transform: capitalize
}

.hidden-overflow {
  overflow: hidden
}

.headernav-dropdown__links ul li a:hover {
  color: #23c1cb
}

.headernav-dropdown__links ul li {
  padding-bottom: 1rem
}

.headernav-dropdown__links h5 {
  font-weight: 500;
  position: relative;
  padding-bottom: .6rem;
  margin-bottom: 1.2rem
}

.headernav-dropdown__links h5:after {
  content: "";
  width: 1.75rem;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 1px;
  background: #23c1cb
}

.headernav-dropdown .fatbit-social {
  width: 33.33%
}

.headernav-dropdown .fatbit-social ul li svg {
  fill: #000
}

.headernav-dropdown .fatbit-social ul {
  margin: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start
}

.headernav-dropdown .fatbit-social ul li {
  margin-right: 5px
}

.headernav-dropdown .fatbit-social ul li a {
  width: 36px;
  height: 36px
}

.highlitext-product {
  font-size: 10px;
  display: inline-block;
  border: solid #d50241 1px;
  padding: 1px 19px;
  border-radius: 12px;
  color: #d50241;
  margin-bottom: 5px;
  font-weight: 500
}

.highlitext-product.secondary {
  border-color: #23c1cb;
  color: #23c1cb
}

.con-us {
  font-size: 1.2rem
}

.con-us a {
  font-size: calc(112.5% + 1.7vw);
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 5px
}

.con-us a:hover {
  color: #23c1cb
}

.con-us a::after {
  content: "";
  height: 4px;
  position: absolute;
  bottom: 3px;
  left: 1px;
  right: 1px;
  background: #23c1cb
}

@media (min-width:1200px) {
  .highlitext-product.secondary {
    position: absolute;
    top: -22px
  }

  .headernav-dropdown__links a {
    position: relative
  }
}

@media (max-height:699px) {
  html {
    font-size: 18px
  }
}

@media only screen and (max-width:1380px) {
  .headernav-dropdown {
    padding: 4rem 1rem
  }

  .headernav-dropdown__links h5 {
    font-size: calc(100% + .18vw)
  }

  .close--header svg {
    width: 25px;
    height: 25px
  }
}

@media only screen and (max-width:1280px) {
  .headernav-dropdown>ul>li>a {
    padding: 7px 0
  }

  .headernav-dropdown {
    padding-top: 1.5rem
  }

  .main-navigation {
    overflow-y: hidden
  }
}

@media only screen and (max-width:1200px) {
  .main-navigation {
    overflow-y: auto
  }

  .headernav-dropdown {
    padding: 0
  }

  .close--header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px
  }

  .close--header svg {
    width: 20px;
    height: 20px
  }

  .header-btn {
    padding: 6px 20px
  }

  .navs-toggle {
    display: inline-block
  }

  .navigation-wrap {
    right: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible
  }

  .tablet.toggle__target {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    max-width: 25rem;
    padding: 20px;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease
  }

  .tablet.toggle__target.left {
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }

  .tablet.toggle__target.visible {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  .headernav-dropdown .fatbit-social,
  .headernav-vertical {
    width: 100%
  }

  .headernav-dropdown__links {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
    padding: 0
  }

  .headernav-dropdown>ul>li>a {
    padding: 5px 0
  }

  .headernav-dropdown__links h5 {
    margin-bottom: .65rem;
    padding-bottom: 0
  }

  .headernav-dropdown__links a span br {
    display: none
  }

  .headernav-dropdown__links h5::after {
    height: 2px
  }

  .two-cols__links {
    display: block
  }

  .two-cols__links li {
    max-width: 100%
  }

  .has-dropdown__links.is-active .headernav-dropdown__links {
    display: block
  }

  .headernav-dropdown>ul>li.is-active>a:after {
    width: .75rem;
    height: .75rem;
    margin-left: -.75rem;
    left: 1rem
  }

  .header-navigation>ul {
    display: block;
    color: #000
  }

  .header-navigation>ul>li {
    padding: 1.5rem;
    text-align: center
  }
}

@media only screen and (max-width:767px) {
  .tablet.toggle__target {}

  .header-btn {
    padding: 6px 16px
  }

  .navigations .tabs li a {
    padding: .5rem .8rem !important
  }

  .mini-links .icn svg {
    width: 30px;
    height: 30px
  }
}

@media screen and (max-width:575px) {
  .navs-toggle {
    margin-left: 20px
  }
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 10;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  height: 120px
}

.header-main {
  padding: 11px 40px
}

.top-bar-link {
  text-decoration: none !important;
  padding-left: 10px;
  color: #fff
}

.top-bar-link:hover {
  text-decoration: none;
  color: #fff
}

.top-bar {
  font-size: 18px;
  background-color: #1ba0a9;
  text-align: center;
  padding: 5px 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.icn.icn-virus {
  max-width: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle
}

.logo {
  display: block;
  width: 230px;
  height: auto
}

.logo svg path {
  fill: #fff
}

.header.is-hover .logo svg .cls-3,
.header.js--scrolled .logo svg .cls-3 {
  fill: #1f1a17
}

.header.is-hover .logo svg .cls-6,
.header.js--scrolled .logo svg .cls-6 {
  fill: #2cbed2
}

.header.is-hover,
.header.js--scrolled {
  background: #fff
}

.services-content-a li a {
  color: #fff
}

.navigations.header-nav .subnav-col-right .text--link::after {
  width: 0
}

.navigations.header-nav .subnav-col-right .text--link {
  text-decoration: underline
}

.services-content-a li a:hover {
  text-decoration: underline
}

.bg-card>div::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / .5);
  bottom: 0;
  z-index: -1
}

.bg-card>div {
  position: relative;
  z-index: 1;
  overflow: hidden
}

.header.js--scrolled {
  -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / .11);
  box-shadow: 0 1px 0 rgb(0 0 0 / .11)
}

.nav-logo {
  -ms-flex: 1;
  flex: 1
}

.text--link {
  color: var(--first-color);
  text-decoration: underline;
  font-weight: 600;
  font-size: 1em
}

.text--link:after {
  background: var(--first-color)
}

.text--link:hover {
  color: var(--first-color);
  text-decoration: none
}

.link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.286rem;
  font-weight: 600;
  position: relative;
  color: #2e2e2e;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  white-space: nowrap
}

.link-arrow.secondary {
  color: #23c1cb
}

.link-arrow:hover {
  color: #23c1cb;
  padding-right: 0
}

.link-arrow::after {
  display: inline-block;
  content: "";
  width: 1rem;
  margin-left: .5rem;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: width ease .3s, margin ease .3s;
  transition: width ease .3s, margin ease .3s
}

.link-arrow::before {
  display: inline-block;
  -ms-flex-order: 10;
  order: 10;
  margin-left: -6px;
  margin-right: 1rem;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: width ease .3s, margin ease .3s;
  transition: width ease .3s, margin ease .3s
}

.link-arrow:hover:after {
  width: 2rem
}

.link-arrow:hover:before {
  margin-right: 0
}

.navigations .start-project a {
  display: block;
  background: #fff;
  border-radius: 44px;
  color: var(--first-color);
  padding: 13px 20px;
  margin-left: 3rem
}

.header.is-hover .navigations>li>a,
.header.js--scrolled .navigations>li>a {
  color: #000
}

.header.is-hover .navigations .start-project a,
.header.js--scrolled .navigations .start-project a {
  background: #d50241;
  color: #fff
}

.header.js--scrolled .navs_toggle span,
.header.js--scrolled .navs_toggle span:after,
.header.js--scrolled .navs_toggle span:before {
  background: #000
}

.navigations .start-project a:after,
.navigations .start-project a:before {
  content: normal
}

.search-btn a {
  border: solid 2px #fff;
  border-radius: 50%;
  display: block;
  width: 44px;
  height: 44px;
  margin: 0;
  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
}

.search-btn .icn {
  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
}

.half-crcle-bg {
  position: relative;
  overflow: hidden
}

.half-crcle-bg::after {
  position: absolute;
  background-color: #e2edf2;
  content: "";
  left: 50%;
  top: 180px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 1800px;
  width: 1860px;
  background-color: #e2edf2;
  border-radius: 50%;
  z-index: 0
}

.half-crcle-bg .container {
  position: relative;
  z-index: 2
}

.search-btn svg {
  width: 18px;
  height: 19px;
  fill: #fff
}

.header.is-hover .search-btn a,
.header.js--scrolled .search-btn a {
  border-color: #000
}

.header.is-hover .search-btn svg,
.header.js--scrolled .search-btn svg {
  fill: #000
}

.fatbit-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: var(--third-color)
}

.fatbit3d {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0
}

.featured-media li {
  padding: .5rem 0
}

.fatbit-hero .fatbit-hero-inner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.fatbit-hero-inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100%;
  padding: 0 15px;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.fatbit-hero-content {
  max-width: 660px;
  color: #fff;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: -50px
}

.fatbit-hero-content h3,
.fatbit-hero-content h4,
.fatbit-hero-content h5,
.fatbit-hero-content ul li {
  color: #fff;
  margin-bottom: 0
}

.fatbit-hero-content .list--type-2 li:before {
  background: var(--first-color) url(images/retina/checked-symbol-white.svg) no-repeat center
}

.fatbit-hero-content .hero-title {
  color: inherit;
  line-height: 1.3;
  font-size: calc(112.5% + 3vw);
  font-weight: 600;
  margin: 0
}

.fatbit-hero-content .hero-title span {
  line-height: 1.2
}

.fatbit-hero-content p {
  font-weight: 30;
  line-height: 1.5;
  color: inherit;
  font-size: 1.375rem;
  margin: 1rem 0 3rem
}

.hero-vector {
  -ms-flex-order: 2;
  order: 2;
  max-width: 50%
}

.hero-vector-shape {
  background-color: #fff;
  -webkit-box-shadow: 0 0 54px 0 rgb(0 0 0 / .3);
  box-shadow: 0 0 54px 0 rgb(0 0 0 / .3);
  padding: 5rem;
  border-radius: 43px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  max-width: 360px
}

.hero-vector-shape img {
  height: auto;
  width: 100%
}

.featured-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 100%;
  padding: 2.25rem 0
}

.featured-in h5 {
  color: #000
}

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

.featured-media li {
  margin: 0 1rem
}

.featured-media li:last-child {
  margin-right: 0
}

.featured-media svg {
  fill: #fff
}

.featured-media svg.inc {
  width: 80px;
  height: 28px
}

.featured-media svg.entrepreneur {
  width: 103px;
  height: 23px
}

.featured-media svg.huffpost {
  width: 142px;
  height: 16px
}

.featured-media svg.business_reporter {
  width: 142px;
  height: 23px
}

.featured-media svg.indian_express {
  width: 156px;
  height: 16px
}

.featured-media .svg.yahoo {
  width: 65px;
  height: 26px
}

.featured-media .svg.insider {
  width: 78px;
  height: 30px
}

.featured-media .svg.fox {
  width: 78px;
  height: 25px
}

.btn,
.form button,
.form input[type=button],
.form input[type=reset],
.form input[type=submit] {
  position: relative;
  display: inline-block;
  margin: 0;
  border: 2px solid #fff0;
  padding: 1.2rem 2rem;
  min-width: 230px;
  vertical-align: middle;
  text-align: center;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 1.29em;
  line-height: 1;
  font-weight: 500;
  overflow: hidden;
  outline: 0;
  cursor: pointer;
  border-radius: 50px
}

.btn.btn--primary {
  background: var(--first-color)
}

.btn.btn--primary:hover {
  color: var(--first-color);
  border-color: var(--first-color);
  background: 0 0
}

.btn--icon img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px
}

.btn--icon span:after {
  content: "";
  width: 100%;
  left: 0;
  bottom: -5px;
  height: 1px;
  background: var(--first-color);
  position: absolute
}

.btn--icon span {
  position: relative
}

.btn.btn--secondary {
  background: var(--second-color)
}

.btn.btn--secondary:hover {
  color: var(--second-color);
  border-color: var(--second-color);
  background: 0 0
}

.btn.btn--white {
  background-color: #fff;
  color: #1b1b1b;
  border: solid #fff 2px
}

.btn.btn--white:hover {
  background-color: #fff0;
  color: #fff;
  border-color: #fff
}

.btn.btn--border-white {
  border-color: #fff;
  color: #fff
}

.btn.btn--border-white:hover {
  background: #fff;
  color: #000
}

.btn.btn--border-orange,
.btn.btn--border-orange:hover {
  border-color: #f95e2e;
  color: #f95e2e
}

.btn.btn--border-black,
.btn.btn--border-black:hover {
  border-color: #000;
  color: #000
}

.btn.btn--border-primary {
  border: solid 2px var(--first-color);
  color: var(--first-color)
}

.btn.btn--border-primary:hover {
  color: #fff;
  background: var(--first-color)
}

.btn.btn--border-secondary {
  border: solid 2px var(--second-color);
  color: var(--second-color)
}

.btn.btn--border-secondary:hover {
  color: #fff;
  background: var(--second-color)
}

.btn--sm {
  padding: .9375rem 1.375rem;
  font-size: .875rem;
  min-width: inherit
}

.btn:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: currentColor;
  opacity: 0;
  -webkit-transition: opacity .2s;
  transition: opacity .2s
}

.btn:focus::before {
  opacity: .2
}

.btn:active::before {
  opacity: .32
}

.btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  border-radius: 50%;
  padding: 50%;
  width: 32px;
  height: 32px;
  background-color: currentColor;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, transform .5s;
  transition: opacity 1s, transform .5s, -webkit-transform .5s
}

.btn:active::after {
  opacity: .4;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0;
  transition: -webkit-transform 0;
  transition: transform 0;
  transition: transform 0s, -webkit-transform 0
}

.slide-logo {
  max-width: 200px;
  margin: 0 auto
}

.btn.focus,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0
}

.btn:hover {
  color: #fff
}

.section {
  padding: 6.25rem 0
}

.section--top {
  margin-top: -275px
}

span.br {
  display: block
}

span.br::before {
  content: "\A"
}

.section-services {
  background: #0f181d url(images/bg-services.jpg) no-repeat center top;
  position: relative;
  overflow: hidden
}

.section-services:after {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 120%;
  height: 120%
}

.section-services .container {
  position: relative;
  z-index: 1
}

.section-services .tabs li {
  border-color: #fff
}

.section-services .tabs li a {
  color: #fff
}

.list-awaard li {
  position: relative
}

.view-link {
  text-decoration: none;
  font-size: 13px;
  position: absolute;
  bottom: 21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: .7
}

.view-link,
.view-link:hover {
  color: #fff
}

.tabs-content-services {
  padding: 50px 0 0
}

.tabs-content-services .content-data ul.list {
  margin: 2rem 0
}

.services-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.services-content .services-content-a {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

.services-content .services-content-b {
  text-align: center;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

.services-content .vector-shape {
  background-color: #fff;
  -webkit-box-shadow: 0 0 54px 0 rgb(0 0 0 / .3);
  box-shadow: 0 0 54px 0 rgb(0 0 0 / .3);
  padding: 5rem;
  border-radius: 43px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  max-width: 400px;
  margin: 0 auto
}

.services-content .vector-shape img {
  height: auto;
  width: 100%
}

.theme-white,
.theme-white .text--link,
.theme-white h2,
.theme-white h3,
.theme-white h4,
.theme-white h5,
.theme-white h6,
.theme-white p,
.theme-white ul li {
  color: #fff
}

.theme-white .list li:before {
  background: #fff
}

h6 strong {
  font-weight: 600
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto
}

.tabs li {
  border: solid 2px var(--first-color);
  border-radius: 72px;
  font-weight: 500;
  margin-right: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.tabs li:last-child {
  margin-right: 0
}

.tabs li a {
  display: block;
  color: var(--first-color);
  padding: 1rem 2.8rem;
  min-height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  text-transform: capitalize
}

.tabs li.is--active {
  background: var(--first-color);
  border-color: #fff0
}

.tabs li.is--active a {
  color: #fff
}

.tabs.tabs--sm li a {
  min-height: inherit;
  padding: .8rem 2.8rem
}

.content-data {
  display: none
}

.tabs-icons {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 15px
}

.tabs-icons li {
  -ms-flex-item-align: center;
  align-self: center;
  position: relative;
  padding: 0
}

.tabs-icons li span {
  display: block;
  text-align: center;
  color: #212529;
  font-size: 1.125rem;
  font-weight: 500
}

.tabs-icons a {
  margin: 0 auto;
  text-align: center;
  display: block
}

.tabs-icons .svg {
  max-width: 3.75rem;
  max-height: 3.75rem;
  margin: 10px 0;
  fill: #000
}

.tabs-icons li.is--active:after {
  background: var(--first-color);
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0
}

.tabs-icons li.is--active .svg {
  fill: var(--first-color)
}

.tabs-icons li.is--active span {
  color: var(--first-color)
}

.tabs-icons-2 {
  margin: 3rem 0
}

.tabs-icons-2 .icn {
  background: var(--lucky-point);
  border-radius: 50%;
  border: solid 2px #fff;
  width: 7.5rem;
  height: 7.5rem;
  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: 1rem;
  margin: 0 auto;
  margin-bottom: 1rem
}

.tabs-icons-2 li .svg {
  fill: #fff
}

.tabs-icons-2 li.is--active .icn {
  background: #fff
}

.tabs-icons-2 li.is--active .svg {
  fill: var(--lucky-point)
}

.tabs-icons-2 li:after {
  background: #fff;
  height: 2px;
  width: 100%;
  z-index: 0;
  left: 100%;
  top: calc(50% - 19px);
  content: "";
  position: absolute
}

.tabs-icons-2 li.is--active:after {
  left: 100%;
  background: #fff;
  height: 2px
}

.tabs-icons-2 li:last-child:after {
  content: normal
}

.tabs-icons-2 li span,
.tabs-icons-2 li.is--active span {
  font-size: 1rem;
  color: #fff
}

.rounded-sm {
  border-radius: .2rem !important
}

.cms h2 {
  position: relative;
  font-size: 31px
}

.cms h2::after {
  display: inline-block;
  vertical-align: baseline;
  width: .3em;
  height: .3em;
  margin-left: -.3em;
  content: "";
  background: var(--second-color)
}

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

.cms p {
  line-height: 1.5;
  font-weight: 400
}

.list {
  margin: 1rem 0
}

.list li {
  color: #000;
  font-size: 1.125rem;
  font-weight: 30;
  margin: 1rem 0;
  position: relative;
  padding-left: 25px;
  text-align: left
}

.list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #000;
  width: 13px;
  height: 2px
}

.list--type-2 li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  background: var(--first-color) url(images/retina/checked-symbol.svg) no-repeat center;
  background-size: 10px;
  border-radius: 50%;
  width: 18px;
  height: 18px
}

.list--type-3 li {
  padding: 2rem 3.8rem;
  background: #323467;
  border-radius: 2px;
  color: #fff
}

.list--type-3 li:before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 20px;
  background: #fff url(images/retina/checked-symbol-lucky-point.svg) no-repeat center !important;
  background-size: 10px !important;
  border-radius: 50%;
  width: 18px;
  height: 18px
}

.list--type-4 li {
  padding-left: 30px
}

.list--type-4 li:before {
  background: #fff0 url(cdn/large-checkbox.png) no-repeat center !important;
  width: 21px;
  height: 18px;
  left: 0;
  top: 4px
}

.list-double,
.list-quad,
.list-triple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.list-double li {
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 48%
}

.list-triple li {
  -ms-flex: 0 0 31%;
  flex: 0 0 31%;
  max-width: 31%
}

.list-quad li {
  max-width: 24%;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%
}

.list-decimal {
  padding: .5rem 0
}

.list-decimal li {
  margin: 1rem 0;
  list-style-type: decimal;
  font-weight: 30;
  padding-left: 0
}

.list-decimal li:before {
  content: normal
}

.list-decimal li:last-child {
  margin-bottom: 0
}

.accordion>ul>li {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px #d0dbdf
}

.accordion.theme-white>ul>li {
  border-bottom-color: #2b424c
}

.accordion>ul>li:last-child {
  border-bottom: none
}

.acc-triger {
  position: relative;
  text-transform: capitalize;
  font-size: 1.125rem;
  cursor: pointer;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px
}

.acc-triger:before {
  background: #000;
  content: '';
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 800;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 17px
}

.acc-triger:after {
  font-weight: 800;
  background: #000;
  content: '';
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 17px
}

.accordion.theme-white .acc-triger:after,
.accordion.theme-white .acc-triger:before {
  background: #fff
}

.acc-triger.active:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  content: normal
}

.acc-triger.active:after {
  content: normal
}

.acc-data {
  padding: 1rem 2.2rem;
  display: none
}

.acc-data p {
  margin-bottom: 1.2rem
}

.count {
  display: inline-block;
  margin-right: 1rem
}

.accordion-2>ul>li {
  border-bottom: none;
  margin-bottom: .5rem;
  padding: 1rem
}

.accordion-2 .acc-triger h5 {
  padding: 0;
  margin: 0
}

.accordion-2 .acc-triger.active h5 {
  display: none
}

.bg-no-repeat {
  background-repeat: no-repeat
}

.bg-position-right-top {
  background-position: right top
}

.bg-position-right-center {
  background-position: right center
}

.bg-position-right-bottom {
  background-position: right bottom
}

.bg-position-left-top {
  background-position: left top
}

.bg-position-left-center {
  background-position: left center
}

.bg-position-left-bottom {
  background-position: left bottom
}

.bg-position-top-center {
  background-position: top center
}

.bg-position-bottom-center {
  background-position: bottom center
}

.bg-position-center {
  background-position: center
}

.bg-cover {
  background-size: cover
}

.bg-gray-dark {
  background-color: var(--bg-gray-dark)
}

.bg-gray {
  background: #fbfbfb
}

.bg-gray-2 {
  background: var(--bg-gray-2)
}

.section-mobile-app {
  background: #ecf5f8 url(images/bg-mobile-app.jpg) no-repeat center top
}

.ul-os {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3rem auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.ul-os li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  margin: 0 1rem;
  color: #28373d;
  font-size: 1rem;
  font-weight: 500
}

.ul-os .icn {
  min-width: 30px;
  margin-right: 1rem
}

.list-tech ul {
  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;
  margin-top: 4rem
}

.list-tech ul li {
  margin: 0 1rem
}

.bg-portfolio {
  position: relative;
  background: #fbfbfb
}

.bg-portfolio:after {
  z-index: 0;
  background: var(--first-color);
  height: 616px;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.bg-portfolio .container,
.portfolio-slider {
  position: relative;
  z-index: 1
}

.portfolio-slider {
  padding: 4rem 3rem;
  position: relative;
  z-index: 2
}

.portfolio-slider .slick-prev {
  left: 50%;
  margin-left: -635px;
  bottom: -100px
}

.portfolio-slider .slick-next {
  left: 50%;
  margin-left: -547px;
  bottom: -100px
}

.portfolio-slider .slide {
  position: relative;
  cursor: e-resize
}

.portfolio-slider .slide * {
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in
}

.portfolio-slider .slide figcaption {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  padding: 0 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.portfolio-slider .slide:hover figcaption {
  top: 0;
  background: rgb(35 193 203 / .9)
}

.portfolio-slider .slide figcaption .slide-logo {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.portfolio-slider .slide figcaption p {
  font-size: calc(112.5% + .24vw);
  color: #fff;
  margin: 1.5rem 0
}

.portfolio-slider .slide figcaption:after,
.portfolio-slider .slide figcaption:before {
  width: 1px;
  height: 0
}

.portfolio-slider .slide figcaption:before {
  right: 0;
  top: 0
}

.portfolio-slider .slide figcaption:after {
  left: 0;
  bottom: 0
}

.portfolio-slider .slide figcaption:after,
.portfolio-slider .slide figcaption:before,
.portfolio-slider .slide:after,
.portfolio-slider .slide:before {
  position: absolute;
  background-color: #fff;
  z-index: 1;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
  opacity: .8
}

.portfolio-slider .slide:after,
.portfolio-slider .slide:before {
  height: 1px;
  width: 0
}

.portfolio-slider .slide:before {
  top: 0;
  left: 0
}

.portfolio-slider .slide:after {
  bottom: 0;
  right: 0
}

.portfolio-slider .slide.hover img,
.portfolio-slider .slide:hover img {
  opacity: 1
}

.portfolio-slider .slide.hover figcaption,
.portfolio-slider .slide:hover figcaption {
  opacity: 1
}

.portfolio-slider .slide.hover figcaption:after,
.portfolio-slider .slide.hover figcaption:before,
.portfolio-slider .slide:hover figcaption:after,
.portfolio-slider .slide:hover figcaption:before {
  height: 100%
}

.portfolio-slider .slide.hover:after,
.portfolio-slider .slide.hover:before,
.portfolio-slider .slide:hover:after,
.portfolio-slider .slide:hover:before {
  width: 100%
}

.portfolio-slider .slide.hover figcaption:after,
.portfolio-slider .slide.hover figcaption:before,
.portfolio-slider .slide.hover:after,
.portfolio-slider .slide.hover:before,
.portfolio-slider .slide:hover figcaption:after,
.portfolio-slider .slide:hover figcaption:before,
.portfolio-slider .slide:hover:after,
.portfolio-slider .slide:hover:before {
  opacity: .1
}

.portfolio-slider .slide:hover figcaption {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.slide-figure {
  position: relative
}

.slide-figure:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff0), to(rgb(0 0 0 / .75)));
  background: linear-gradient(to bottom, #fff0 0, rgb(0 0 0 / .75) 100%)
}

.section-innovation ul.list {
  margin: 2rem 0
}

.award-figures {
  margin: 1.5rem 0
}

.award-figures img {
  display: inline-block;
  margin-right: 2rem
}

.innovations-card {
  border-radius: 5px;
  border: solid 2px #ecf4f7;
  overflow: hidden;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.innovations-detail:after {
  background: url(images/retina/arrow-right.svg) no-repeat center;
  background-size: 30px;
  content: "";
  position: absolute;
  bottom: 5px;
  right: 25px;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer
}

.innovations-card:hover .innovations-detail:after {
  right: 15px
}

.innovations-card:before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 40px solid #ecf4f7;
  border-left: 40px solid #fff0;
  z-index: -1
}

.innovations-card:hover {
  border-color: var(--third-color)
}

.innovations-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ecf4f7;
  padding: 1rem
}

.innovations-detail {
  padding: 2rem;
  position: relative
}

.innovations-brand .svg {
  max-width: 75%;
  margin: 0 auto;
  display: block
}

.parallax {
  overflow: hidden;
  height: 100%;
  position: relative
}

.parallax .container {
  position: relative;
  z-index: 1
}

.parallax .layer-1 {
  height: 100%;
  width: 100%;
  background-color: var(--third-color)
}

.parallax .layer-2 {
  background: url(images/retina/layer-1.svg) no-repeat bottom center fixed;
  -webkit-animation: slide-in-top .5s cubic-bezier(.25, .46, .45, .94) both;
  animation: slide-in-top .5s cubic-bezier(.25, .46, .45, .94) both
}

.parallax .layer-3 {
  background: url(images/retina/layer-2.svg) no-repeat bottom center fixed;
  -webkit-animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .2s both;
  animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .2s both
}

.parallax .layer-4 {
  background: url(images/retina/layer-3.svg) no-repeat bottom center fixed;
  -webkit-animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .4s both;
  animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .4s both
}

.parallax .layer-5 {
  background: url(images/retina/layer-4.svg) no-repeat bottom center fixed;
  -webkit-animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .55s both;
  animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .55s both
}

.parallax .layer-6 {
  background: url(images/layer-5.png) no-repeat bottom center fixed;
  -webkit-animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .75s both;
  animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) .75s both
}

.parallax .laya-please {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

.our-clients {
  margin: 2rem auto;
  padding: 0;
  position: relative;
  max-width: 1200px
}

.our-clients .animate-box {
  mix-blend-mode: multiply;
  mix-blend-mode: multiply
}

.client-logos .col-auto {
  width: 20%
}

.our-clients .client-logo {
  margin: 0 auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: .7;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding: 2.3rem 0;
  max-width: 12.5rem
}

.our-clients .client-logo:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1
}

.section-all-way {
  background: #fbfbfb
}

.tabs-content-all-way {
  text-align: center;
  margin: 1.5rem auto;
  margin-bottom: 0
}

.section-testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.client-say,
.good-words {
  max-width: 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%
}

.no-cssreflections .circles .icn svg,
.no-cssreflections .round-circle .icn svg {
  width: 60px;
  height: 60px
}

.good-words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--first-color) url(images/quote-thumb.jpg) no-repeat center
}

.good-words-inner {
  position: relative;
  font-size: calc(112.5% + 3vw);
  color: #fff;
  font-weight: 800;
  line-height: .6;
  text-transform: uppercase;
  margin-top: 150px
}

.good-words-inner:before {
  content: "";
  background: url(images/quote-white.png) no-repeat center;
  width: 144px;
  height: 116px;
  position: absolute;
  left: 0;
  top: -150px
}

.testimonial-slider {
  position: relative
}

.testimonial-slider .slick-prev {
  left: 34px;
  bottom: -100px
}

.testimonial-slider .slick-next {
  left: 0;
  margin-left: 115px;
  bottom: -100px
}

.client-say {
  padding: 6rem
}

.said-by {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0;
  text-align: left
}

.said-by .tst-pic {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.2rem;
  height: 80px;
  width: 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px
}

.tst-detail {
  margin: 1.5rem 0
}

.tst-logo {
  margin: 0 0 2rem;
  display: inline-block
}

.testimonial-slider-2 {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative
}

.testimonial-slider-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  background-image: url(images/quote-icon-large.png);
  background-repeat: no-repeat;
  width: 343px;
  height: 275px;
  background-size: 100%;
  top: -70px;
  z-index: -1
}

.testimonial-slider-2 .slick-arrow {
  position: relative;
  display: block;
  -webkit-transform: none;
  transform: none
}

.testimonial-slider-2 .slick-list {
  -ms-flex: 1;
  flex: 1;
  max-width: 1000px;
  margin: 0 20px
}

.avtar-pic {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  position: relative
}

.testimonial-client-detail {
  color: #1c2e36;
  font-size: 1.125rem;
  text-align: left;
  padding-left: 25px;
  border-left: 1px solid #d3d3d4
}

.testimonial-client-detail span {
  font-size: 1.375rem;
  display: block
}

.testimonial-client-pic {
  position: relative;
  display: inline-block
}

.testimonial-client-pic::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background-image: url(images/quote-icon-small.png);
  background-repeat: no-repeat;
  width: 28px;
  height: 23px;
  margin: 0 auto
}

.testimonial-client-detail {
  padding-left: 0;
  border-left: 0;
  text-align: center
}

@media only screen and (max-width:1380px) {
  .testimonial-slider-2::before {
    width: 313px;
    height: 265px
  }
}

.bg-trusted {
  background: url(images/bg-trusted.jpg) no-repeat center;
  background-size: cover
}

.section-trusted.section-trusted-white {
  background-image: url(images/bg-trusted-white.jpg);
  color: inherit
}

.section-trusted.section-trusted-white .trusted-col {
  -webkit-box-shadow: 0 0 0 1px #eee;
  box-shadow: 0 0 0 1px #eee
}

.trusted-col {
  -webkit-box-shadow: 0 0 0 1px rgb(169 169 169 / .1);
  box-shadow: 0 0 0 1px rgb(169 169 169 / .1)
}

.trusted-txt {
  font-size: calc(112.5% + .7vw);
  font-weight: 700
}

.trusted-txt span {
  font-size: 20px;
  font-weight: 400
}

.trusted-txt span.br {
  display: block
}

.section-trusted {
  color: #fff;
  display: grid;
  grid-gap: 1px;
  grid-template-columns: repeat(4, 1fr)
}

.section-trusted .one {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3
}

.section-trusted .two {
  grid-column-start: 3;
  grid-column-end: 4
}

.section-trusted .three {
  grid-column-start: 4;
  grid-column-end: 5
}

.section-trusted .four {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3
}

.section-trusted .five {
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 2;
  grid-row-end: 3
}

.section-trusted .trusted-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5rem
}

.trusted-content {
  max-width: 740px
}

.list-awaard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0
}

.list-awaard li {
  margin-right: 2rem
}

.list-awaard li:last-child {
  margin-right: 0
}

.list-awaard li .svg {
  fill: #96a2a8
}

.list-awaard li .svg.nasscom {
  width: 143px
}

.list-awaard li .svg.iso {
  width: 181px
}

.list-awaard li .svg.silicon {
  width: 218px
}

.yokart-awaard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: wrap
}

.yokart-awaard .icn svg {
  max-width: 100%
}

.yokart-awaard li {
  padding-right: 10px
}

.yokart-awaard li:first-child {
  padding-right: 30px
}

.yokart-awaard li .svg.bestproduct,
.yokart-awaard li .svg.featuredInc {
  opacity: .3
}

.portfolio-slider .slick-active button {
  background: var(--first-color) !important
}

.portfolio-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 10%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.portfolio-slider .slick-dots li {
  background: #fff
}

.yokart-awaard li .svg.yokart-logo {
  max-width: 204px
}

.yokart-awaard li .svg.bestproduct {
  max-width: 178px
}

.yokart-awaard li .svg.featuredInc {
  max-width: 80px
}

.section-trusted .tp-head {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1
}

.section-trusted .md-head {
  display: block;
  font-size: calc(112.5% + 1.15vw);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase
}

.section-trusted .md-head sup {
  font-size: 1.875rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1
}

.section-trusted .bt-head {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1
}

.section-blog {
  background: url(images/bg-blog-latest.jpg) no-repeat center;
  background-size: cover
}

.section-blog .cms {
  margin-bottom: 5rem
}

.blog-titlelink {
  color: #000;
  font-weight: 500
}

.blog-post .blog-date {
  display: block;
  margin-bottom: 1rem;
  font-weight: 30
}

.blog-post h3 {
  margin-bottom: 4rem
}

.list-blog li {
  border-bottom: solid 1px #d1d5d6;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem
}

.list-blog li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0
}

.list-blog .blog-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.list-blog .blog-post .blog-post-detail {
  padding-right: 10px;
  -ms-flex: 1;
  flex: 1
}

.footer address {
  font-weight: 400;
  line-height: 1.6
}

address strong {
  font-weight: 600
}

.lower-footer {
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: solid 1px #f3f3f3
}

.hiring a {
  display: inline-block;
  width: 164px
}

.partner a {
  display: inline-block;
  width: 190px
}

.hiring,
.partner {
  position: fixed;
  left: 10px;
  z-index: 9
}

.partner {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .4s;
  transition: .4s
}

.open-popups .partner {
  opacity: 1;
  visibility: visible
}

.hiring {
  display: none;
  bottom: 10px
}

.partner {
  bottom: 0
}

.fixed-btn .request-btn {
  color: #fff
}

.footer p {
  margin-bottom: 1rem;
  color: inherit
}

.phone {
  color: #fff !important
}

.footer .copy-rights {
  margin-bottom: 1rem
}

.list-info li {
  margin: 1.4rem 0;
  font-weight: 400
}

.upper-footer .list-info li a:hover {
  color: #23abc9
}

.upper-footer .fatbit-social ul li svg:hover {
  fill: #23abc9
}

.list-info li a {
  color: inherit
}

.footer .large-h2 {
  font-size: calc(112.5% + 2.9vw);
  margin: 0
}

.footer .large-h2:after {
  background-color: #23c1cb
}

.fatbit-social ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem auto
}

.fatbit-social ul li {
  margin: 0 5px 0 0;
  position: relative
}

.fatbit-social ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  display: grid
}

.fatbit-social ul li.share-Btn {
  background-color: #fff0;
  width: 40px;
  height: 40px
}

.fatbit-social ul li svg {
  width: 20px;
  height: 20px;
  fill: #1b1b1b;
  -webkit-transition: .3s;
  transition: .3s
}

.fatbit-social ul li.share-Btn svg {
  fill: #1b1b1b
}

.share-overlay {
  background: rgb(0 0 0 / .56);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px) translateX(50px);
  transform: translateY(50px) translateX(50px);
  -webkit-transition: opacity .5s, -webkit-transform .5s, visibility 0 .5s;
  -webkit-transition: opacity .5s, visibility 0 .5s, -webkit-transform .5s;
  transition: opacity .5s, visibility 0 .5s, -webkit-transform .5s;
  transition: opacity .5s, transform .5s, visibility 0 .5s;
  transition: opacity .5s, transform .5s, visibility 0 .5s, -webkit-transform .5s
}

body.sharing_on .socialCircle-item span {
  opacity: 1;
  visibility: visible
}

body.sharing_on .share-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, transform .5s;
  transition: opacity .5s, transform .5s, -webkit-transform .5s
}

.socialCircle-container {
  position: relative;
  margin: 0 auto
}

.socialCircle-item {
  width: 46px;
  height: 46px;
  position: absolute;
  background: #2cb6c9;
  text-align: center;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden
}

.sharing_on .socialCircle-item {
  opacity: 1;
  visibility: visible
}

.socialCircle-item svg {
  fill: #fff;
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto
}

.socialCircle-item .icn {
  width: 100%;
  height: auto;
  max-width: 100%
}

.share-fixed .icn {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute
}

.icn.close-icn {
  display: none
}

.open .icn {
  display: none
}

.open .icn.close-icn {
  display: block
}

.icn.close-icn svg {
  width: 20px;
  height: 20px
}

.icn.icn-75 {
  padding: 1.5rem
}

.icn.icn-75 svg,
.list-smm .icn svg {
  max-width: 100%
}

.list-smm .icn svg {
  max-height: 50px;
  fill: #fff
}

.socialCircle-item span {
  background: #2cb6c9;
  color: #fff;
  font-size: 11px;
  position: absolute;
  left: 10px;
  border-radius: 2px;
  padding: 0 2px;
  -webkit-box-shadow: -1px 1px 1px rgb(0 0 0 / .07);
  box-shadow: -1px 1px 1px rgb(0 0 0 / .07);
  top: -20px
}

.socialCircle-center {
  width: 50px;
  height: 50px;
  margin: 0;
  position: absolute;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border-radius: 35px !important
}

.socialCircle-center:before {
  content: " ";
  top: -15px;
  left: -15px;
  background-color: rgb(255 255 255 / .33);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  position: absolute;
  opacity: .6;
  -webkit-animation: pulse2 1.8s ease-out;
  animation: pulse2 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(0);
    opacity: 0
  }

  25% {
    -webkit-transform: scale(.3);
    opacity: 1
  }

  50% {
    -webkit-transform: scale(.6);
    opacity: .6
  }

  75% {
    -webkit-transform: scale(.9);
    opacity: .3
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0
  }
}

@keyframes pulse2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0
  }

  25% {
    -webkit-transform: scale(.3);
    transform: scale(.3);
    opacity: 1
  }

  50% {
    -webkit-transform: scale(.6);
    transform: scale(.6);
    opacity: .6
  }

  75% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
    opacity: .3
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0
  }
}

.socialCircle-center svg {
  fill: #fff;
  width: 24px;
  height: 24px;
  display: block
}

.socialCircle-item:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}

.sharing_on .socialCircle-item.four {
  left: -240px
}

.sharing_on .socialCircle-item.three {
  left: -180px
}

.sharing_on .socialCircle-item.two {
  left: -120px
}

.sharing_on .socialCircle-item.one {
  left: -60px
}

.socialCircle-item {
  left: 0
}

.footer-logo img {
  width: 100%;
  margin: 3rem auto 1rem;
  max-width: 236px
}

.footer-logo svg {
  width: 260px;
  height: 63px
}

.copy-rights {
  text-align: center
}

.upper-footer {
  padding-bottom: 1.5rem;
  padding-top: 2rem
}

.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.footer-nav ul li:not(:last-child) {
  padding-right: 25px
}

.footer-nav a {
  color: inherit;
  font-weight: 500
}

.link-text {
  text-decoration: underline
}

.link-text:hover {
  color: #000
}

.inner-hero {
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-color: var(--third-color)
}

.inner-hero::after {
  background: url(images/retina/circle_bg-white.svg) no-repeat right;
  content: "";
  position: absolute;
  right: calc(50% - 1087px);
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center;
  transform-origin: center;
  opacity: .4
}

.inner-hero .container {
  position: relative;
  z-index: 1
}

.inner-hero .fatbit-hero-content {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 60%
}

.inner-hero .fatbit-hero-content .hero-title {
  font-size: calc(112.5% + 2vw)
}

.inner-hero-100 {
  height: 100vh
}

.bg-benefits {
  background-position: center right;
  background-repeat: no-repeat
}

.bg-cut-1 {
  position: relative;
  background: #fbfbfb
}

.bg-cut-1:after {
  z-index: 0;
  background: var(--bg-gray-dark);
  height: 470px;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.bg-cut-1 div {
  position: relative;
  z-index: 1
}

.section.parallax {
  background-image: url(images/homepage-waves.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain
}

.box-shadow {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 25px rgb(0 0 0 / .1);
  box-shadow: 0 0 25px rgb(0 0 0 / .1)
}

.bussiness-modals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.bussiness-modals li {
  display: block;
  padding: 1.375rem 2rem;
  margin: 1rem;
  border-radius: 4px;
  background-color: #fff;
  min-width: 195px;
  text-align: center;
  color: #000
}

.bussiness-modals a:hover {
  background: var(--first-color);
  color: #fff
}

.box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 1px rgb(0 0 0 / .15);
  box-shadow: 0 0 1px rgb(0 0 0 / .15)
}

.collateral-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1
}

.collateral-content .detail {
  padding-top: 1rem
}

.collateral-content .media-side,
.media-side {
  margin-right: 2rem
}

.collateral-content .media-side {
  padding-top: 1.2rem
}

.circles {
  width: 9rem;
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--first-color);
  border-radius: 50%;
  padding: 1rem;
  margin: 0 auto
}

.circles.circles--medium {
  width: 11.25rem;
  height: 11.25rem;
  border-width: 1.5rem
}

.circles.circles--small {
  width: 6.5625rem;
  height: 6.5625rem;
  border-width: 1rem
}

.circles--secondary {
  background: var(--second-color);
  border-color: #e2edf2
}

.circles .txt {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase
}

.circles .txt sub {
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff
}

.border-box-dotted {
  border: dashed 1px #677981;
  border-radius: 6px;
  position: relative;
  z-index: 1
}

.analysis-circle {
  background: #fff;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  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;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  border: solid 3.75rem #141f26;
  text-align: center
}

.analysis-circle:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: -7.5rem;
  top: -7.5rem;
  right: -7.5rem;
  bottom: -7.5rem;
  border: solid 3.75rem #121c22
}

.analysis-txt {
  font-size: 3.75rem;
  font-weight: 600;
  color: #000;
  line-height: 1
}

.analysis-txt span {
  display: block;
  font-size: 2.5rem
}

.timeline-content>ul>li {
  position: relative;
  margin-bottom: 6rem
}

.closed-process>li::after,
.timeline-content>ul>li:after {
  content: "";
  background: url(images/arrows-down.png) no-repeat center;
  width: 16px;
  height: 93px;
  position: absolute;
  bottom: -90px;
  left: 7rem
}

.timeline-content>ul>li:last-child {
  margin-bottom: 0
}

.timeline-content>ul>li:last-child:after {
  content: normal
}

.timeline-content.timeline-content-line>ul>li:after {
  background: url(images/dot-pattern.png) repeat-y center;
  height: 100%;
  width: 2px;
  z-index: 0;
  left: 4.5625rem
}

.timeline-content-horozontal>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.timeline-content-horozontal>ul>li {
  margin: 0 auto
}

.timeline-content-horozontal-4>ul>li {
  width: 25%
}

.timeline-content-horozontal-5>ul>li {
  width: 20%
}

.timeline-content-horozontal-5 .icn.icn-75 {
  padding: 1rem
}

.timeline-content-horozontal-6>ul>li {
  width: 16.666%
}

.timeline-content-horozontal>ul>li:after {
  background: url(images/arrows-right.png) no-repeat center right;
  width: 64px;
  height: 16px;
  top: 122px;
  right: calc(50% - 161px);
  left: auto;
  bottom: auto
}

.timeline-content-horozontal .collateral-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.timeline-content-horozontal .media-side {
  margin: 2rem auto
}

.outdated-inner {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00caff;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  text-align: center
}

.outdated-inner * {
  color: #fff
}

.outdated-messages {
  margin: 0 auto;
  max-width: 900px
}

.list-browser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
  margin: 2rem auto
}

.list-browser .icn {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 1rem auto;
  display: block;
  background: url(images/browsers-bg.png) no-repeat;
  background-size: auto 200px
}

.list-browser a:hover .icn.chrome {
  background-position: 0 -100px
}

.list-browser .icn.firefox {
  background-position: -100px 0
}

.list-browser a:hover .icn.firefox {
  background-position: -100px -100px
}

.list-browser .icn.internetexplorer {
  background-position: -200px 0
}

.list-browser a:hover .icn.internetexplorer {
  background-position: -200px -100px
}

.list-browser .icn.safari {
  background-position: -300px 0
}

.list-browser a:hover .icn.safari {
  background-position: -300px -99px
}

.bg-content {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat
}

.column-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 390px
}

.column-content p {
  -ms-flex: 1;
  flex: 1
}

.pricing-section {
  padding-bottom: 12rem
}

.-section {
  margin-top: -12rem
}

.package .btn {
  min-width: inherit;
  margin: 3px 6px;
  padding: 1.125rem 1.375rem
}

.package p {
  font-size: 1rem
}

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

.highlighted-feature {
  font-weight: 600;
  color: #23c1cb
}

.dark-package {
  color: #fff;
  background-color: var(--third-color)
}

.dark-package .pkg-price span,
.dark-package.package h4,
.dark-package.package h5,
.dark-package.package h6,
.dark-package.package p {
  color: #fff
}

.dark-package .pkg-price-container {
  border-color: #fff
}

.dark-package .tool-tip {
  background: #22b9c3
}

.dark-package .text--link {
  color: #fff
}

.package.dark-package .pkg-price span.pkg-old::after {
  background: #fcc900
}

.pkg-price span {
  font-size: 3.55rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
  padding: 0;
  margin: 0 10px
}

.pkg-price span.pkg-old {
  font-size: 2rem;
  font-weight: 500;
  position: relative
}

.pkg-price span.pkg-old::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  top: 16px
}

.pkg-price span sub {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1;
  vertical-align: middle;
  padding-right: 5px
}

.pkg-price span.pkg-old sub {
  font-size: 1rem;
  font-weight: 500
}

.pkg-price-container {
  padding: 35px 10px;
  border: 2px dashed #6d8088;
  margin-bottom: 25px;
  margin-top: 15px;
  min-height: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px
}

.pkg-features-list li {
  font-weight: 600;
  padding-bottom: 5px
}

.pkg-features-list li:last-child {
  padding: 0
}

.table-package th {
  font-size: 1.375rem;
  font-weight: 500;
  border: none;
  padding: 0 0 25px;
  text-align: center
}

.table-package th:first-child {
  text-align: left
}

.table-package td {
  width: 25%;
  border: 1px solid #e2edf2;
  padding: 15px 30px;
  color: #28373d;
  font-size: 1.125rem;
  height: 6rem;
  vertical-align: middle
}

.table-package td:nth-child(2) {
  background-color: #f6f6f6
}

.tool-tip {
  background-color: #a9a9a9;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 17px;
  line-height: 17px;
  position: relative;
  text-align: center;
  width: 17px;
  margin-left: 4px
}

.tool-tip.-modifier .bubble {
  background: #fff;
  color: #000
}

.tool-tip .bubble {
  display: block;
  position: absolute;
  right: 17px;
  bottom: 0;
  width: 245px;
  z-index: 9;
  text-align: left;
  background: #000;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 15px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease .2s;
  transition: all ease .2s
}

.tool-tip:hover .bubble {
  visibility: visible;
  opacity: 1;
  bottom: 2px
}

.bubble>ul {
  text-align: left;
  padding: 4px 0 0 10px
}

.bubble ul li {
  list-style: disc !important;
  margin: 5px 0;
  padding: 0;
  border: 0 none
}

.additional-development .list li:last-child {
  margin-bottom: 0
}

.additional-development .list {
  margin-bottom: 0
}

p strong {
  font-weight: 700
}

p.small {
  font-size: .875rem
}

.table-wrap {
  position: relative
}

.scroll-hint-icon-wrap {
  display: none
}

.feature-crcle-icon {
  width: 90px;
  height: 90px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.feature-crcle-icon .icn.icn-75 {
  max-width: 120px
}

.no-cssreflections .feature-crcle-icon .icn.icn-75 {
  max-width: 90px
}

.feature-crcle-icon svg {
  fill: #fff
}

.bg-card:hover .feature-crcle-icon {
  background-color: var(--first-color);
  border-color: var(--first-color)
}

.demo {
  background-color: #fff;
  padding: 25px;
  border-radius: 4px;
  display: block;
  text-align: center;
  min-width: 225px
}

.demo:hover {
  background-color: #000
}

.demo .circles {
  width: 148px;
  height: 148px;
  border-width: 1.437rem;
  margin: 0 auto 25px
}

.demo-title {
  font-weight: 600;
  text-transform: uppercase;
  color: #1c2e36
}

.demo:hover .demo-title {
  color: #fff
}

.list-strategy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center
}

.list-strategy .round-circle {
  background: #fff;
  width: 7.375rem;
  height: 7.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1rem auto;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 25px rgb(0 0 0 / .1);
  box-shadow: 0 0 25px rgb(0 0 0 / .1);
  border: solid 1px #d1d5d6
}

.bg--layer-dark.-short:before {
  height: 20%
}

.bg--layer-dark {
  position: relative
}

.bg--layer-dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 88%;
  background: var(--bg-gray-dark)
}

.bg--layer-dark .container {
  position: relative
}

.btn.btn--fill-white {
  background: #fff
}

.screenshots {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.circles svg {
  fill: #fff
}

.screenshots img {
  max-width: inherit;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.demo-box {
  overflow: hidden;
  border-radius: 4px;
  padding: 3rem 1rem;
  text-align: center;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 340px
}

.lightbox {
  display: none
}

.list-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.bg-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  background: #e2edf1;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 1.8rem;
  border-radius: 4px;
  font-weight: 600
}

.featured-caption {
  width: 100%;
  text-align: center;
  background: rgb(0 0 0 / .4);
  color: #fff;
  font-size: .9rem;
  padding: .4em
}

.featured-caption strong {
  font-weight: 600
}

.featherlight-content {
  width: 620px
}

.pop-up-form input[type=date],
.pop-up-form input[type=email],
.pop-up-form input[type=file],
.pop-up-form input[type=number],
.pop-up-form input[type=password],
.pop-up-form input[type=phone],
.pop-up-form input[type=search],
.pop-up-form input[type=tel],
.pop-up-form input[type=text],
.pop-up-form input[type=url],
.pop-up-form select,
.pop-up-form textarea {
  height: 36px
}

.thm-color {
  color: var(--first-color)
}

.pop-up-form .form .field-set {
  margin-bottom: 1.3rem
}

.pop-up-form .form textarea {
  height: 100px
}

.text {
  position: relative;
  overflow: hidden
}

.pop-head h2 {
  font-size: 26px;
  font-weight: 600
}

.text:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: -100%
}

.text.is-animate:after {
  -webkit-animation-name: line;
  animation-name: line;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-timing-function: cubic-bezier(.23, 1, .32, 1);
  animation-timing-function: cubic-bezier(.23, 1, .32, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards
}

.text-parts {
  display: inline-block;
  -webkit-transform: translateY(100%);
  transform: translateY(100%)
}

.text-parts.is-animate {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
  -webkit-animation-duration: .25s;
  animation-duration: .25s;
  -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
  animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards
}

.latest-posts .bg-content {
  background-position: initial;
  background-size: cover
}

@-webkit-keyframes line {
  0% {
    left: -100%
  }

  40% {
    left: 0
  }

  50% {
    left: 0
  }

  100% {
    left: 100%
  }
}

@keyframes line {
  0% {
    left: -100%
  }

  40% {
    left: 0
  }

  50% {
    left: 0
  }

  100% {
    left: 100%
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

.app-pricing-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
  min-width: 215px;
  margin: 5px 0
}

.app-price {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  padding-bottom: 20px
}

.app-price sub {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  padding: 0 4px 7px 0
}

.underline-link {
  text-decoration: underline;
  font-weight: 600;
  color: #f95e2e
}

.underline-link:hover {
  color: #f95e2e
}

.draw {
  -webkit-animation: draw 4s ease-in-out;
  animation: draw 4s ease-in-out;
  stroke: #ddd
}

.link {
  font-weight: 600;
  position: relative;
  color: var(--first-color)
}

.link:after,
.link:before {
  content: "";
  background: 0 0;
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -10px;
  -webkit-transition: .4s all ease;
  transition: .4s all ease
}

.link:before {
  right: 60%
}

.link:after {
  left: 60%
}

.link:hover:before {
  right: 0;
  width: 60%;
  background: var(--first-color)
}

.link:hover:after {
  left: 0;
  width: 60%;
  background: var(--first-color)
}

.link:hover {
  color: var(--first-color);
  text-decoration: none
}

@-webkit-keyframes draw {
  0% {
    stroke-dasharray: 0 400;
    stroke-dashoffset: 200;
    fill-opacity: 0;
    stroke-width: 2
  }

  37% {
    stroke-dasharray: 200 0;
    stroke-dashoffset: 200;
    fill-opacity: 0;
    stroke-width: 2
  }

  50% {
    fill-opacity: 1;
    stroke-width: 0
  }

  100% {
    fill-opacity: 1;
    stroke-width: 0
  }
}

@keyframes draw {
  0% {
    stroke-dasharray: 0 400;
    stroke-dashoffset: 200;
    fill-opacity: 0;
    stroke-width: 2
  }

  37% {
    stroke-dasharray: 200 0;
    stroke-dashoffset: 200;
    fill-opacity: 0;
    stroke-width: 2
  }

  50% {
    fill-opacity: 1;
    stroke-width: 0
  }

  100% {
    fill-opacity: 1;
    stroke-width: 0
  }
}

.title-slide-in .char {
  -webkit-animation: slide-in 1.75s cubic-bezier(0, .75, 0, 1) 0 both, will-change 2s linear;
  animation: slide-in 1.75s cubic-bezier(0, .75, 0, 1) 0 both, will-change 2s linear;
  -webkit-animation-delay: calc(.5s * var(--char-percent));
  animation-delay: calc(.5s * var(--char-percent));
  opacity: .99
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%) scaleX(.5);
    transform: translateX(150%) scaleX(.5)
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%) scaleX(.5);
    transform: translateX(150%) scaleX(.5)
  }
}

@-webkit-keyframes will-change {
  0% {
    will-change: transform
  }

  100% {
    will-change: auto
  }
}

@keyframes will-change {
  0% {
    will-change: transform
  }

  100% {
    will-change: auto
  }
}

.bg-100 {
  background-size: 100% 100%
}

.body-modifier {
  padding: 0 !important
}

.after-header {
  height: 118px;
  background: var(--first-color)
}

.fixed-btn {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJklEQVQImWO4x+v/H4b/1877z4DMucfrDxGAce7x+v9ngHAc4QIALAMnAxHFjzoAAAAASUVORK5CYII=);
  padding: 0;
  position: fixed;
  right: 15px;
  height: 50px;
  top: 190px;
  z-index: 5;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transition: .2s ease-in-out;
  -webkit-transition: .2s ease-in-out;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border: solid #fff 3px;
  font-weight: 600;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-box-shadow: 0 0 5px rgb(0 0 0 / .5);
  box-shadow: 0 0 5px rgb(0 0 0 / .5)
}

.fixed-btn .request-btn {
  display: block;
  padding: 10px 28px
}

.icn-calendar {
  background: url(images/retina/calendar.svg) no-repeat 92% center;
  background-size: 20px
}

.icn-time {
  background: url(images/retina/alarm-clock.svg) no-repeat 92% center;
  background-size: 20px
}

.interested-listing ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.interested-listing ul li {
  margin: .2rem 0;
  max-width: 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%
}

.about-profile {
  padding: 0;
  text-align: center
}

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

.about-profile li {
  display: block;
  margin: 2rem auto;
  vertical-align: top;
  position: relative;
  max-width: 251px;
  width: 100%;
  height: 101px
}

.about-profile li.profiles-1 {
  background: url(images/retina/industry-experience.svg) no-repeat center top;
  background-size: 100%
}

.about-profile li.profiles-1:hover {
  background: url(images/retina/industry-experience-2.svg) no-repeat center top;
  background-size: 100%
}

.about-profile li.profiles-2 {
  background: url(images/retina/team-size.svg) no-repeat center top;
  background-size: 100%
}

.about-profile li.profiles-2:hover {
  background: url(images/retina/team-size-2.svg) no-repeat center top;
  background-size: 100%
}

.about-profile li.profiles-3 {
  background: url(images/retina/free-support.svg) no-repeat center top;
  background-size: 100%
}

.about-profile li.profiles-3:hover {
  background: url(images/retina/free-support-2.svg) no-repeat center top;
  background-size: 100%
}

.testimonial-small {
  text-align: center;
  max-width: 600px;
  margin: 0 auto
}

.testimonial-small .avtar--img img {
  border-radius: 50%;
  overflow: hidden;
  margin: 1rem auto;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / .33);
  box-shadow: 0 0 10px rgb(0 0 0 / .33)
}

.dull-txt {
  opacity: .6
}

.figure-block {
  border-radius: 4px;
  border: solid 1px var(--border-color);
  padding: 1rem;
  position: relative;
  overflow: hidden
}

.figure-block .figure {
  margin: 1.5rem auto;
  display: block;
  border: solid 1px #d2e0e6
}

.figure-block .hs-hover {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 1;
  padding: 0 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.figure-block:hover .hs-hover {
  top: 0;
  background: #23c1cb
}

.figure-block .hs-hover h5 {
  font-size: 1rem;
  color: #fff
}

.figure-block .hs-hover p {
  color: #fff;
  font-size: .8rem;
  margin-bottom: 1rem
}

.btn--fill-white:hover {
  color: #fff;
  background-color: #fff0;
  border-color: #fff
}

.btn--icon:hover {
  color: var(--first-color)
}

.btn--icon:hover span:after {
  display: none
}

.portfolio-slider h4 strong {
  font-weight: 600
}

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

.afford-loader {
  width: 50px;
  height: 50px;
  margin: 1rem auto
}

.form--search input.gsc-input {
  height: 37px !important
}

.form--search .gsc-search-button-v2 {
  height: 3rem;
  min-width: auto;
  padding: 0 2rem
}

.form--search .gsc-input-box {
  border: 1px solid var(--border-color);
  border-radius: 4px
}

.form--search .gsc-search-button-v2 svg {
  width: 20px;
  height: 20px
}

.pop__box {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  -webkit-box-shadow: 0 0 30px rgb(0 0 0 / .3);
  box-shadow: 0 0 30px rgb(0 0 0 / .3);
  left: 50%;
  padding: 60px 50px;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 999;
  display: none;
  max-width: 600px;
  width: 100%
}

.display_popbox {
  display: block
}

.pop__box-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  cursor: pointer;
  background: #000;
  height: 40px
}

.pop__box-close:after,
.pop__box-close:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 12px;
  top: 18px
}

.pop__box-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.payment__agree>h6 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 35px
}

.payment__agree>h6 a {
  white-space: nowrap;
  color: #01b8d9
}

.checkout__btn {
  white-space: nowrap
}

.pop__box-note {
  font-size: 18px;
  margin: 15px 0 0
}

@media only screen and (max-width:767px) {
  .pop__box {
    margin: 10px;
    padding: 40px 20px;
    width: auto;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
  }
}

.underline {
  position: relative
}

.underline:after {
  content: "";
  width: 16px;
  height: 4px;
  position: absolute;
  bottom: 5px;
  left: 0
}

.underline.underline--blue:after {
  background: var(--second-color)
}

.underline.text-md-left:after,
.underline.text-xl-left:after {
  margin: 0
}

.cookie-bar {
  position: fixed;
  right: 0;
  left: 0;
  bottom: -100%;
  background-color: #eee;
  padding: 15px;
  color: #fff;
  z-index: 9;
  -webkit-transition: .4s ease-in-out all;
  transition: .4s ease-in-out all;
  max-width: 1236px;
  margin: 0 auto
}

html.scroll-remover {
  overflow-y: hidden
}

@media screen and (max-width:1200px) {
  .cookie-bar {
    max-width: 100%
  }
}

@media screen and (min-width:320px) {
  .cookie-bar .container {
    max-width: 100%;
    padding: 0
  }
}

.cookie-bar.opencookie {
  bottom: 0
}

.cookie-bar-text p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  padding-right: 30px
}

.cookie-bar-text p a:hover {
  text-decoration: none
}

.cookie-btn {
  border: solid #d50241 2px;
  background: 0 0;
  border-radius: none;
  outline: 0;
  padding: 0 18px;
  height: 36px;
  color: #d50241;
  margin-top: 10px;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
  font-weight: 500;
  position: relative;
  font-size: 13px
}

.cookie-btn:hover {
  color: #fff;
  background: #d50241
}

.cookie-close-btn {
  max-width: 20px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 12%;
  right: 3%
}

.cookie-close-btn img {
  width: 20px
}

.cookie-close-btn:hover {
  color: #fff;
  opacity: .85
}

.cookie-close-btn:hover:after {
  opacity: 0
}

.cookie-close-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 1px;
  width: 100%;
  background-color: #fff;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all
}

.overlay--black:before,
.overlay--blue:before,
.overlay--dark-green:before,
.overlay--green:before,
.overlay--light-blue:before,
.overlay--light-green:before,
.overlay--light-yellow:before,
.overlay--orange:before,
.overlay--red:before,
.overlay--yellow:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.overlay--black:before {
  background: rgb(0 0 0 / .65)
}

.overlay--red:before {
  background: rgb(213 2 65 / .88)
}

.overlay--blue:before {
  background: rgb(58 149 159 / .85)
}

.overlay--green:before {
  background: rgb(178 204 1 / .85)
}

.overlay--light-green:before {
  background: rgb(16 163 146 / .9)
}

.overlay--yellow:before {
  background: rgb(100 83 0 / .91)
}

.overlay--orange:before {
  background: rgb(251 93 0 / .8)
}

.overlay--light-blue:before {
  background: rgb(0 171 201 / .85)
}

.overlay--dark-green:before {
  background: rgb(0 145 72 / .9)
}

.overlay--light-yellow:before {
  background: rgb(210 199 2 / .7)
}

.wrapper--slick-arrows .slick-arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  -webkit-transform: none;
  transform: none;
  display: inline-block
}

.wrapper--slick-arrows .slick-arrow.slick-next {
  margin-left: 15px
}

.footer .text-underline {
  position: relative
}

.footer .text-underline::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: var(--second-color);
  bottom: 0;
  left: 0
}

.rounded-lg {
  border-radius: .625rem !important
}

.rounded-md {
  border-radius: .375rem !important
}

.list-50 {
  margin: 0
}

.list-50 li {
  width: 50%;
  display: inline-block;
  margin-left: -2px;
  margin-right: -2px
}

.tabs-border li a {
  padding: .3rem 0;
  min-height: 40px;
  position: relative;
  color: #1b1b1b;
  font-size: 1.125rem;
  font-weight: 600
}

.tabs-border li {
  border: 0;
  margin-right: 6rem
}

.tabs-border li.is--active {
  background: 0 0
}

.tabs-border li.is--active a {
  color: #1b1b1b
}

.tabs-border li a:after {
  position: absolute;
  content: "";
  height: 3px;
  background-color: #fff0;
  left: 0;
  width: 100%;
  bottom: 0
}

.tabs-border li.is--active a:after {
  background-color: var(--first-color)
}

@media screen and (max-width:1750px) {
  .cookie-bar {
    max-width: 1180px
  }
}

@media screen and (max-width:1600px) {
  .cookie-bar {
    max-width: 70%;
    padding-bottom: 12px;
    padding-top: 12px
  }

  .cookie-bar-text p {
    font-size: 12px;
    padding-right: 20px
  }

  .cookie-btn {
    padding: 0 8px;
    height: 32px
  }

  .footer address,
  .list-info li {
    font-size: 18px
  }
}

@media screen and (max-width:1510px) {
  .cookie-bar-text p {
    font-size: 10px
  }
}

@media screen and (max-width:1439px) {
  .section--featured .cms {
    padding: 50px
  }
}

@media screen and (max-width:1380px) {
  .section {
    padding: 4rem 0
  }

  html {
    font-size: 18px
  }

  .trusted-content {
    max-width: 605px
  }

  .cms h3:after,
  .cms h4:after,
  .cms h5:after,
  .underline:after {
    height: 2px;
    width: 1.5rem;
    bottom: 0
  }

  .footer-logo svg {
    width: 180px;
    height: 55px
  }

  .fatbit-social ul li a {
    width: 32px;
    height: 32px
  }
}

@media screen and (max-width:1280px) {
  .section {
    padding: 3rem 0
  }

  .portfolio-slider .slick-prev {
    left: 0;
    margin-left: 50px
  }

  .portfolio-slider .slick-next {
    left: 0;
    margin-left: 130px
  }

  .pkg-price span {
    font-size: 2.55rem
  }

  .screenshots img {
    max-width: 100%
  }

  .screenshots {
    display: block
  }

  .subnav-col-left ul li {
    max-width: 340px
  }
}

@media screen and (max-width:1200px) {
  .underline.text-center:after {
    right: 0;
    margin: 0 auto
  }

  .feature-crcle-icon .icn.icn-75 {
    max-width: 70px
  }

  .bg-portfolio::after {
    height: 400px
  }

  .fatbit-hero {
    background-attachment: scroll
  }

  .fatbit-hero-content {
    margin-bottom: 20px
  }

  .featured-in {
    margin-top: 20px
  }

  .search-btn a {
    width: 30px;
    height: 30px;
    margin-right: 40px
  }

  .search-btn svg {
    width: 18px
  }

  .section {
    padding: 2.25rem 0
  }

  .pricing-section {
    padding-bottom: 12rem
  }

  span.br {
    display: inline
  }

  .services-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .services-content .services-content-a,
  .services-content .services-content-b {
    max-width: none;
    -ms-flex: auto;
    flex: auto
  }

  .services-content .services-content-b {
    display: none
  }

  .navigations .start-project a {
    background: var(--first-color);
    margin: 1rem;
    text-align: center;
    display: block;
    color: #fff
  }

  .client-say {
    padding: 2rem
  }

  .section-trusted {
    grid-template-columns: repeat(2, 1fr)
  }

  .section-trusted .trusted-col {
    padding: 2rem
  }

  .section-trusted .one {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2
  }

  .section-trusted .two {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3
  }

  .section-trusted .three {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3
  }

  .section-trusted .four {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4
  }

  .section-trusted .five {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4
  }

  .section-trusted .md-head sup {
    line-height: 1.5
  }

  .inner-hero {
    padding-bottom: 50px
  }

  .fatbit-hero,
  .inner-hero {
    height: auto;
    padding-top: 140px;
    padding-bottom: 60px
  }

  .demo {
    min-width: inherit
  }

  .package .btn {
    padding: 1.2rem 1.5rem
  }

  .table-package th {
    font-size: 1.15rem;
    padding: 0 15px 15px
  }

  .table-package td {
    padding: 15px 20px;
    height: auto
  }

  .tabs-icons {
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around
  }

  .inner-hero .fatbit-hero-content {
    max-width: 50%
  }

  .hero-vector {
    max-width: 50%
  }

  .hero-vector-shape {
    max-width: 220px;
    padding: 3rem
  }

  .common-tabs .cms {
    min-height: auto !important
  }

  .feature-crcle-icon {
    width: 100px;
    height: 100px
  }

  .hiring,
  .partner {
    display: none
  }

  .circles {
    border-width: 1rem
  }

  .icn.icn-75 {
    padding: .5rem
  }

  .footer-logo svg {
    width: 145px;
    height: 40px
  }

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

  .timeline-content-horozontal>ul>li::after {
    display: none
  }

  .top-bar .icn {
    display: none
  }

  .top-bar {
    padding-left: 20px;
    padding-right: 20px
  }

  .after-header,
  .header {
    height: 123px
  }
}

@media screen and (max-width:1024px) {

  .portfolio-slider .slick-next,
  .portfolio-slider .slick-prev {
    bottom: -85px
  }

  .our-clients .client-logo {
    max-width: 125px
  }

  .innovations-detail::after {
    width: 25px;
    background-size: contain
  }

  .featherlight-content {
    width: auto
  }

  .featured-bar {
    position: static
  }

  .featured-in h5 {
    color: #000
  }

  .featured-media svg {
    fill: #000
  }

  .cookie-bar {
    max-width: 90%
  }

  .cookie-close-btn img {
    width: 15px
  }

  .cookie-close-btn {
    top: 5%
  }

  .upper-footer {
    border-top: 1px solid #ddd;
    padding-bottom: 0
  }

  .list-quad li {
    max-width: 48%;
    -ms-flex: 0 0 24%;
    flex: 0 0 48%
  }

  .top-bar {
    padding-top: 0;
    padding-bottom: 0
  }

  .top-bar-link {
    padding-left: 10px;
    display: block
  }
}

@media screen and (max-width:992px) {
  .header-main {
    padding: 0 15px;
    background: #fff
  }

  .after-header,
  .header {
    height: 99px
  }

  .header.is-hover .logo,
  .header.js--scrolled .logo,
  .logo {
    background-size: 100%;
    margin: 10px;
    margin-left: 0
  }

  .logo svg {
    width: 100%
  }

  .list-images li {
    max-width: 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 1rem
  }

  .featured-media ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .featured-in {
    border: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .portfolio-slider {
    padding: 2rem 0
  }

  .section-testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .good-words {
    display: none
  }

  .client-say,
  .good-words {
    max-width: 100%;
    -ms-flex: auto;
    flex: auto
  }

  .client-say {
    padding: 15px
  }

  .box-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .collateral-content .media-side {
    margin: 1rem auto;
    width: 100%;
    padding-top: 0
  }

  .collateral-content .detail {
    width: 100%
  }

  .collateral-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .timeline-content>ul>li:after {
    left: calc(50% - 8px)
  }

  .analysis-circle {
    width: 22rem;
    height: 22rem
  }

  .analysis-circle:after {
    content: normal
  }

  .list-double li,
  .list-triple li {
    -ms-flex: auto;
    max-width: none
  }

  .timeline-content.timeline-content-line>ul>li:after {
    content: normal
  }

  .yokart-awaard li .svg.bestproduct,
  .yokart-awaard li .svg.featuredInc,
  .yokart-awaard li .svg.yokart-logo {
    max-width: 100%
  }

  .list.list--type-2.ecommerce-solution-list {
    margin: 0 auto;
    display: inline-block
  }

  .our-digital-product {
    text-align: center
  }

  .yokart-awaard li:nth-child(2),
  .yokart-awaard li:nth-child(3) {
    width: 50%
  }

  .yokart-awaard {
    margin: 0 auto;
    width: 80%
  }

  .footer-nav a {
    font-size: .95em
  }

  .tabs li a {
    white-space: nowrap
  }

  .bg-content {
    padding-bottom: 50%
  }

  .our-clients .client-logo {
    padding: 2.3rem .8rem
  }

  .tabs-content .image {
    display: none !important
  }

  .collateral-content {
    text-align: center
  }

  .list-tech ul li {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .fatbit-social ul li a {
    width: 40px;
    height: 40px
  }

  .cookie-bar {
    max-width: 100%
  }

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

@media screen and (max-width:991px) {
  .wrapper--slick-arrows.-modifier {
    display: none
  }
}

@media screen and (max-width:767px) {

  .circles .icn svg,
  .round-circle .icn svg {
    width: 60px;
    height: 60px
  }

  .fatbit-hero-content .btn {
    margin-bottom: 5px
  }

  .fatbit-hero-content {
    text-align: center
  }

  .our-clients {
    height: auto;
    margin: 0
  }

  .our-clients ul li {
    position: static;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
    margin: 2rem 0
  }

  .award-figures img {
    margin-bottom: 2rem
  }

  .pkg-price-container {
    padding: 15px 10px;
    min-height: inherit
  }

  .table-package {
    display: block;
    white-space: nowrap
  }

  .tool-tip .bubble {
    white-space: normal
  }

  .testimonial-client-detail {
    text-align: center;
    padding: 20px 0 0;
    border-left: none
  }

  .testimonial-slider-2::before {
    width: 160px;
    height: 135px;
    top: 0
  }

  .list-quad {
    display: block
  }

  .list-quad li {
    max-width: 100%
  }

  10% {
    opacity: 1
  }

  100%,
  50% {
    -webkit-transform: translateX(-2.5rem);
    transform: translateX(-2.5rem);
    opacity: 0
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(2.5rem);
    transform: translateX(2.5rem);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  100%,
  50% {
    -webkit-transform: translateX(-2.5rem);
    transform: translateX(-2.5rem);
    opacity: 0
  }
}

.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, #c8c8c8 0, transparent 16px, transparent)
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, #c8c8c8 0, transparent 16px, transparent), linear-gradient(270deg, #c8c8c8 0, transparent 16px, transparent)
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, #c8c8c8 0, transparent 16px, transparent)
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 120px;
  height: 90px;
  border-radius: 5px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 0;
  background: rgb(0 0 0 / .7);
  text-align: center;
  padding: 20px 10px 10px
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
  z-index: 1
}

.scroll-hint-text {
  font-size: 10px;
  color: #fff;
  margin-top: 5px
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuNDYsMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH2NCwwLDAsMSwxLjE3LTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHxLjFhMS4xNSwxLjE1LDAsMCwxLTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH3OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuMjFaTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=)
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 18px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH4NywxLjE0LDEuMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHEsMjYuNTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
  animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2
}

.scroll-hint-icon-white {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgb(0 0 0 / .4);
  box-shadow: 0 4px 5px rgb(0 0 0 / .4)
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuNDYsMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH2NCwwLDAsMSwxLjE3LTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHxLjFhMS4xNSwxLjE1LDAsMCwxLTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH3OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuMjFaTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH8+PC9nPjwvZz48L3N2Zz4=)
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuNGExLjE2LDEuMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH4NywxLjE0LDEuMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHEsMjYuNTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==)
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000
}

.scroll-hint-icon-wrap {
  display: block
}

.tabs-icons-2 .icn {
  width: 4rem;
  height: 4rem
}

.tabs-icons li {
  padding: 0 2rem
}

.tabs-icons-2 li.is--active:after,
.tabs-icons-2 li:after {
  content: normal
}

.fatbit-hero-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.hero-vector {
  -ms-flex-order: 0;
  order: 0
}

.bg-half-orbit {
  background-image: none
}

.btn {
  padding: 1.2rem 1rem;
  min-width: inherit
}

.column-content {
  min-height: inherit
}

.pricing-section {
  padding-bottom: 6rem
}

.-section {
  margin-top: -6rem
}

.tabs-icons {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.bg-benefits {
  background-image: none !important
}

.hero-vector {
  display: none
}

.featured-media li {
  padding: 1rem 0
}

.our-clients .client-logo {
  padding: 2.3rem 0
}

.inner-hero .fatbit-hero-content {
  max-width: 100%
}

.tabs li a {
  min-height: inherit;
  padding: 1rem 1.8rem
}

.tabs-icons .svg {
  max-width: 2.125rem;
  max-height: 2.125rem
}

.tabs-icons li span {
  font-size: .9rem
}

.tool-tip:hover .bubble {
  bottom: -150px
}

.screenshots img {
  max-width: 100%
}

.fatbit-social ul li a {
  width: 40px;
  height: 40px
}

.list-awaard li {
  margin-right: 0
}

.client-logos .col-auto {
  width: 33.33%
}

.list-awaard li {
  padding: 0:translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: visible
}

to {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInLeft {
  animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}

@media all {
  .featherlight {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    background: #333 !important;
    background: #fff0
  }

  .featherlight:last-of-type {
    background: rgb(0 0 0 / .8)
  }

  .featherlight:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
  }

  .featherlight .featherlight-content {
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid #fff0;
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    background: #fff;
    cursor: auto;
    border-radius: 4px;
    white-space: normal
  }

  .featherlight .featherlight-inner {
    display: block
  }

  .featherlight .featherlight-close-icon {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    line-height: 25px;
    width: 40px;
    cursor: pointer;
    text-align: center;
    background: #000;
    color: #fff;
    border: none;
    padding: 0;
    height: 40px;
    border-bottom-left-radius: 4px
  }

  .featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0
  }

  .featherlight .featherlight-image {
    width: 100%
  }

  .featherlight-iframe .featherlight-content {
    border-bottom: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll
  }

  .featherlight iframe {
    border: none
  }

  .featherlight * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }
}

@media only screen and (max-width:1024px) {
  .featherlight .featherlight-content {
    overflow-x: hidden;
    max-height: 98%;
    padding: 20px;
    border-bottom: 10px solid #fff0
  }
}

.xdsoft_datetimepicker.xdsoft_noselect.xdsoft_ {
  z-index: 1.0E+21
}

.xdsoft_datetimepicker {
  box-shadow: 0 5px 15px -5px rgb(0 0 0 / .506);
  background: #fff;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-display: swap;
  padding: 8px;
  padding-left: 0;
  padding-top: 2px;
  position: absolute;
  z-index: 9999;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none
}

.xdsoft_datetimepicker.xdsoft_rtl {
  padding: 8px 0 8px 8px
}

.xdsoft_datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: 0 0;
  border: none
}

.xdsoft_datetimepicker button {
  border: none !important
}

.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none
}

.xdsoft_noselect::selection {
  background: 0 0
}

.xdsoft_noselect::-moz-selection {
  background: 0 0
}

.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  box-shadow: none
}

.xdsoft_datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0
}

.xdsoft_datetimepicker .xdsoft_datepicker,
.xdsoft_datetimepicker .xdsoft_timepicker {
  display: none
}

.xdsoft_datetimepicker .xdsoft_datepicker.active,
.xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block
}

.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
  width: 256px
}

.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0
}

.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px
}

.xdsoft_datetimepicker .xdsoft_monthpicker {
  position: relative;
  text-align: center
}

.xdsoft_datetimepicker .xdsoft_label i,
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHNOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHwTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHjdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC)
}

.xdsoft_datetimepicker .xdsoft_label i {
  opacity: .5;
  background-position: -92px -19px;
  display: inline-block;
  width: 9px;
  height: 20px;
  vertical-align: middle
}

.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0
}

.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0;
  margin-left: 5px
}

.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0 0
}

.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-color: #fff0;
  background-repeat: no-repeat;
  border: 0 none;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: .5;
  outline: medium none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 18px;
  margin-top: 7px
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next,
.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev {
  float: none;
  margin-left: 0;
  margin-right: 18px
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0;
  margin-bottom: 7px;
  margin-top: 0
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #ddd
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:first-child {
  border-top-width: 0
}

.xdsoft_datetimepicker .xdsoft_next:hover,
.xdsoft_datetimepicker .xdsoft_prev:hover,
.xdsoft_datetimepicker .xdsoft_today_button:hover {
  opacity: 1
}

.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer
}

.xdsoft_datetimepicker .xdsoft_label:hover>span {
  text-decoration: underline
}

.xdsoft_datetimepicker .xdsoft_label:hover i {
  opacity: 1
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_monthselect {
  right: -7px
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_yearselect {
  right: 2px
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover {
  color: #fff;
  background: #ff8000
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option {
  padding: 2px 10px 2px 5px;
  text-decoration: none !important
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current {
  background: #3af;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700
}

.xdsoft_datetimepicker .xdsoft_month {
  width: 100px;
  text-align: right
}

.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both
}

.xdsoft_datetimepicker .xdsoft_year {
  width: 48px;
  margin-left: 5px
}

.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%
}

.xdsoft_datetimepicker .xdsoft_calendar td>div {
  padding-right: 5px
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  height: 25px
}

.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
  width: 12.5%
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #f1f1f1
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #3af
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
  background: #3af;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
.xdsoft_datetimepicker .xdsoft_time_box>div>div.xdsoft_disabled {
  opacity: .5;
  cursor: default
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
  opacity: .2
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current.xdsoft_disabled:hover {
  background: #3af !important;
  box-shadow: #178fe5 0 1px 3px 0 inset !important;
  color: #fff !important
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_disabled:hover {
  color: inherit !important;
  background: inherit !important;
  box-shadow: inherit !important
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 700;
  text-align: center;
  color: #999;
  cursor: default
}

.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px
}

.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important
}

.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important
}

.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc
}

.xdsoft_scrollbar>.xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px
}

.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar {
  left: 0;
  right: auto
}

.xdsoft_scroller_box {
  position: relative
}

.xdsoft_datetimepicker.xdsoft_dark {
  box-shadow: 0 5px 15px -5px rgb(255 255 255 / .506);
  background: #000;
  border-bottom: 1px solid #444;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  color: #ccc
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
  border-bottom: 1px solid #222
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div {
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #999
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
  background-color: #000
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select {
  border: 1px solid #333;
  background: #000
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover {
  color: #000;
  background: #007fff
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current {
  background: #c50;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuH0SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TDNEpUTHQoQUJMHLrErGJyHg89uy71MyuHwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/bc1qre8jdw2azrg6tf49wmp652w00xltddxmpk98xp+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==)
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #999
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0e0e0e
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
  color: #c50
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
  background: #c50;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000
}

.xdsoft_dark .xdsoft_time_box {
  border: 1px solid #333
}

.xdsoft_datetimepicker .xdsoft_save_selected {
  display: block;
  margin-top: 5px;
  width: 100%;
  color: #454551;
  font-size: 13px
}

.xdsoft_datetimepicker .blue-gradient-button {
  font-family: museo-sans, "Book Antiqua", sans-serif;
  font-display: swap;
  font-size: 12px;
  color: #82878c;
  height: 28px;
  position: relative;
  background: -moz-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(73%, #f4f8fa));
  background: -webkit-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -o-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -ms-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: linear-gradient(to bottom, #fff 0, #f4f8fa 73%)
}

.xdsoft_datetimepicker .blue-gradient-button:focus,
.xdsoft_datetimepicker .blue-gradient-button:focus span,
.xdsoft_datetimepicker .blue-gradient-button:hover,
.xdsoft_datetimepicker .blue-gradient-button:hover span {
  color: #454551;
  background: -moz-linear-gradient(top, #f4f8fa 0, #fff 73%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f4f8fa), color-stop(73%, #fff));
  background: -webkit-linear-gradient(top, #f4f8fa 0, #fff 73%);
  background: -o-linear-gradient(top, #f4f8fa 0, #fff 73%);
  background: -ms-linear-gradient(top, #f4f8fa 0, #fff 73%);
  background: linear-gradient(to bottom, #f4f8fa 0, #fff 73%)
}

.con-us a::after {
  display: none
}

.video-txt.btn-banner {
  color: #fff
}

p {
  font-weight: 400
}

@media screen and (max-width:768px) {

  .header.is-hover .logo,
  .header.js--scrolled .logo,
  .logo {}

  .fnc-slide__heading-line span {
    font-size: 18px
  }

  .headernav-dropdown__links a:not(.link-arrow) {
    font-size: 14px;
    color: #464646;
    font-weight: 100;
    display: block;
    text-transform: capitalize
  }

  .header-btn {
    display: none
  }

  .fnc-slide__heading-line {
    line-height: 1
  }

  .p.p-large {
    color: #000
  }

  .cms p {
    color: #000;
    font-weight: 400
  }

  .forcast-box p.p-large {
    color: #000;
    font-weight: 400
  }

  p.p-small {
    color: #000;
    font-weight: 400
  }

  .header {
    height: 75px
  }

  .footer address,
  .list-info li {
    font-weight: 400
  }

  .footer-nav a {
    font-weight: 400
  }

  .services-listing li label.checkbox {
    display: inline-grid
  }
}

.ptb-50 {
  padding-bottom: 50px;
  padding-top: 50px
}

.w100-img img {
  width: 100%
}

@media only screen and (max-width:768px) {
  .cms {
    padding: 10px
  }

  .p-m10 {
    padding: 10px
  }

  .mobile-first-features .colm {
    flex: 0 0 303px !important
  }
}

.first-fold {
  position: relative
}

.dot {
  background: var(--second-color);
  width: .3em;
  height: .3em;
  margin-left: -.3em;
  display: inline-block;
  position: relative
}

.featured-bar {
  bottom: 0;
  left: 0;
  right: 0
}

.fnc-slider {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  height: inherit
}

.fnc-slider *,
.fnc-slider :after,
.fnc-slider :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.fnc-slider__slides {
  position: relative;
  height: 100%;
  transition: -webkit-transform 1s .6666666667s;
  -webkit-transition: -webkit-transform 1s .6666666667s;
  transition: transform 1s .6666666667s;
  transition: transform 1s .6666666667s, -webkit-transform 1s .6666666667s
}

.fnc-slider .m--blend-dark .fnc-slide__inner {
  background-color: #8a8a8a
}

.fnc-slider .m--navbg-green {
  background-color: #42605e
}

.fnc-slide {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.fnc-slide.m--active-slide {
  z-index: 1;
  transition: -webkit-transform 1s .6666666667s ease-in-out;
  -webkit-transition: -webkit-transform 1s .6666666667s ease-in-out;
  transition: transform 1s .6666666667s ease-in-out;
  transition: transform 1s .6666666667s ease-in-out, -webkit-transform 1s .6666666667s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.fnc-slide__inner {
  position: relative;
  height: 94%;
  background-size: cover;
  background-position: center top;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  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
}

.m--active-slide .fnc-slide__inner {
  transition: -webkit-transform 1s .6666666667s ease-in-out;
  -webkit-transition: -webkit-transform 1s .6666666667s ease-in-out;
  transition: transform 1s .6666666667s ease-in-out;
  transition: transform 1s .6666666667s ease-in-out, -webkit-transform 1s .6666666667s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.fnc-slide__content {
  width: 100%;
  max-width: 1800px;
  color: #fff;
  padding: 0 7rem
}

.fnc-slide__heading {
  margin-bottom: 10px;
  color: currentColor;
  font-weight: 500
}

.fnc-slide__subheading {
  color: currentColor;
  letter-spacing: normal;
  text-transform: none;
  word-spacing: normal;
  font-size: 1.375rem;
  font-weight: 400;
  max-width: 600px
}

.m--active-slide .fnc-slide__heading-line {
  transition: -webkit-transform 0 0;
  -webkit-transition: -webkit-transform 0 0;
  transition: transform 0 0;
  transition: transform 0 0s, -webkit-transform 0 0;
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.fnc-nav {
  z-index: 5;
  position: absolute;
  right: 0;
  bottom: 0
}

.fnc-nav__bgs {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.fnc-nav__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.fnc-nav__bg.m--active-nav-bg {
  z-index: 1;
  transition: -webkit-transform 1s .6666666667s;
  -webkit-transition: -webkit-transform 1s .6666666667s;
  transition: transform 1s .6666666667s;
  transition: transform 1s .6666666667s, -webkit-transform 1s .6666666667s;
  -webkit-transform: translateX(0);
  transform: translateX(0)
}

.fnc-nav__controls {
  font-size: 0
}

.fnc-nav__control {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background: 0 0;
  border: none;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background-color .5s;
  transition: background-color .5s
}

.fnc-nav__control-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important
}

.demo-cont {
  overflow: hidden;
  position: relative;
  height: 100vh;
  -webkit-perspective: 1500px;
  perspective: 1500px
}

.example-slider {
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: -webkit-transform .7s;
  -webkit-transition: -webkit-transform .7s;
  transition: transform .7s;
  transition: transform .7s, -webkit-transform .7s
}

.featured-in {
  max-width: 1800px;
  margin: 0 auto;
  padding: 2.25rem 7rem;
  padding: 2.25rem 7rem
}

.rating .box {
  padding: 20px 0;
  text-align: center
}

.rating .box-img svg {
  max-width: 230px;
  height: 44px
}

.rating .box-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 15px
}

.rating .box-img svg.clutch {
  max-width: 130px
}

.svg.star {
  height: 18px;
  width: 18px
}

.box-review-count {
  font-size: 20px;
  display: inline-block;
  padding-right: 10px
}

.rating .box-detail ul>li:not(:last-child) {
  padding-right: 2px
}

.rating .box-detail ul>li svg {
  fill: #fbb21b
}

.rating .box-detail ul>li.inactive svg {
  fill: gray
}

.watch-video {
  width: 207px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-top: 50px
}

.play-btn {
  width: 65px;
  height: 100%;
  border-radius: 0
}

.watch-video .video-txt {
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: auto 1 1;
  flex: auto 1 1;
  background-color: #fff;
  color: #3c3b3b;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
  padding: 12px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.video-inner-txt {
  color: #000;
  font-weight: 500
}

.on-btn-hover {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  -webkit-transition: .6s ease;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  line-height: 1.6;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
  z-index: 99;
  padding: 12px 28px
}

.watch-video:hover .on-btn-hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.play-btn::before,
.video-txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  background-color: #f6f5f5;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  z-index: 9
}

.play-btn::before {
  background-color: rgb(255 255 255 / .1)
}

.watch-video:hover .play-btn::before,
.watch-video:hover .video-txt::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.default-info {
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease
}

.watch-video:hover .video-txt .span {
  display: none
}

.video-txt span {
  line-height: 1.6
}

.watch-video:hover .default-info {
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  opacity: 0
}

@media (max-width:1440px) {
  .bg-covid {
    background-position: 58% 30%
  }

  .watch-video {
    width: 176px;
    height: 60px;
    margin-top: 30px
  }

  .on-btn-hover,
  .watch-video .video-txt {
    padding: 12px 15px
  }

  .play-btn {
    width: 56px
  }
}

@media (max-width:1024px) {
  .watch-video .video-txt {
    font-size: 14px
  }

  .bg-covid {
    background-position: center
  }

  .watch-video {
    width: 142px;
    height: 48px
  }

  .on-btn-hover,
  .watch-video .video-txt {
    padding: 10px 16px
  }

  .play-btn {
    width: 45px
  }

  .video-txt span {
    line-height: 1.3
  }

  .video-inner-txt {
    margin-bottom: 2px
  }
}

@media (max-width:1480px) {
  .featured-in {
    display: block
  }

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

  .featured-media li:first-child {
    margin-left: 0
  }
}

@media (max-width:1200px) {
  .demo-cont {
    height: 493px
  }

  .fnc-slide__content {
    padding: 0 4rem
  }

  .featured-in {
    text-align: center
  }

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

  .featured-media svg {
    fill: #000
  }

  .featured-in h5 {
    color: #000
  }

  .featured-media ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .featured-media li:first-child {
    margin-left: 1rem
  }
}

@media only screen and (max-width:1200px) {
  .fnc-slide__inner:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0
  }

  .fnc-slide__content {
    position: relative;
    z-index: 3
  }

  .fnc-slide__subheading {
    max-width: 380px
  }

  #body {
    padding-top: 170px
  }
}

@media only screen and (max-width:1024px) {
  .fnc-slide__content {
    padding-top: 50px
  }
}

@media only screen and (max-width:767px) {
  .fnc-slide__content {
    padding: 0 2rem;
    margin-top: 4.5rem;
    z-index: 9;
    text-align: center
  }

  .demo-cont {
    height: 340px
  }

  .fnc-slide__subheading {
    font-size: 1rem;
    max-width: 100%
  }

  .watch-video {
    margin: 0 auto;
    margin-top: 20px
  }
}

.cms h3,
.cms h4,
.cms h5,
.underline {
  position: relative
}

.cms h3:after,
.cms h4:after,
.cms h5:after,
.underline:after {
  content: "";
  width: 1.75rem;
  height: 4px;
  position: absolute;
  bottom: -5px;
  left: 1px;
  background: var(--second-color)
}

.container {
  padding: 0 2rem
}

@media (min-width:1200px) {
  .container {
    max-width: 1400px;
    padding: 0 100px
  }
}

@media (min-width:1380px) {
  .container {
    max-width: 1800px
  }
}

@media (max-height:699px) {
  .section {
    padding: calc(1rem + 4vw) 0
  }

  html {
    font-size: 14px
  }
}

.slider-controls ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.slider-controls ul li:not(:last-child) {
  padding-right: 30px
}

.slider-btn {
  height: 40px;
  width: 50px;
  position: relative;
  display: block
}

.slider-btn::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 0;
  border-style: solid;
  border-color: #000;
  border-width: 2px 2px 0 0;
  position: absolute;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

.slider-btn::after {
  content: '';
  display: block;
  top: 50%;
  left: 0;
  border-style: solid;
  border-color: #000;
  position: absolute;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

.slider-btn.next-btn::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -9px 2px 0 0;
  right: 0;
  left: auto
}

.slider-btn.prev-btn::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin: -9px 0 0 2px
}

.slider-btn.next-btn::after {
  width: 100%;
  height: 0;
  border-width: 2px 0 0;
  -webkit-transform: translate(0, -1px);
  transform: translate(0, -1px)
}

.slider-btn.prev-btn::after {
  width: 100%;
  height: 0;
  border-width: 2px 0 0;
  -webkit-transform: translate(0, -1px);
  transform: translate(0, -1px)
}

.slider-btn:hover:after,
.slider-btn:hover:before {
  border-color: #23c1cb
}

.more-links {
  padding-left: 2.5rem;
  border-left: 1px solid #d1d1d1;
  height: 100%
}

.more-links li:not(:last-child) {
  margin-bottom: 20px
}

.more-links li a {
  font-size: 1.1em;
  white-space: normal;
  font-weight: 600;
  position: relative;
  color: #2e2e2e;
  text-decoration: none
}

.more-links li a .link-arrow {
  color: currentColor;
  vertical-align: middle
}

.more-links li a:hover {
  color: #23c1cb
}

.more-links li a:hover .link-arrow:after {
  width: 2rem
}

.more-links li a:hover .link-arrow:before {
  margin-right: 0
}

.testimonial--slider {
  padding-top: 3.5rem
}

.testimonial--slider::before {
  content: "";
  background: url(https://www.websutility.com/images/retina/quote-icon.svg) no-repeat center;
  width: 41px;
  height: 33px;
  position: absolute;
  left: 0;
  top: 0
}

.testimonial-detail p {
  font-weight: 600;
  color: #1b1b1b
}

.testimonial-title {
  font-size: calc(112.5% + .29vw);
  font-weight: 300
}

.tabs-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 15px
}

.tabs-links li {
  position: relative
}

.tabs-links li a {
  display: inline-block;
  position: relative
}

.tabs-links li span {
  display: block;
  text-align: center;
  color: var(--font-color2);
  font-size: 1.125rem;
  font-weight: 500
}

.tabs-links li a::after {
  background: var(--second-color);
  width: 0;
  height: 4px;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0
}

.tabs-links li.is--active a::after {
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.our--clients .client-logo {
  margin: 0 auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 2.3rem auto
}

.product-box {
  padding: calc(1rem + 2.2vw)
}

.product-box .svg {
  max-width: 160px;
  height: 75px
}

.product-box:hover {
  border-color: #23c1cb !important
}

.product-box:hover .p-large {
  color: #23c1cb !important
}

.p-7 {
  padding: calc(1rem + 2.2vw)
}

.p-8 {
  padding: calc(1rem + 2.2vw)
}

.tabs-verticle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 378px
}

.tabs-verticle li {
  border: solid 1px var(--border-color);
  margin-bottom: 1.2rem;
  padding-right: 1rem
}

.tabs-verticle li a {
  padding: 1.2rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--font-color2);
  text-align: left;
  font-weight: 500;
  font-size: 2.5vh;
  height: auto
}

.tabs-verticle li a:after {
  margin-left: auto
}

.tabs-verticle li.is--active a {
  color: var(--second-color);
  border-color: var(--second-color)
}

.tabs-verticle li.is--active,
.tabs-verticle li:hover {
  border-color: var(--second-color)
}

.portfolio--slider .portfolio-slide {
  position: relative;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in
}

.portfolio-slide .portfolio-detail {
  padding: 0 2.5rem 0 0
}

.portfolio--slider h4 {
  font-size: calc(112.5% + .21vw);
  font-weight: 300;
  position: relative;
  color: var(--font-color);
  margin-bottom: 1rem
}

.portfolio--slider h4:before {
  content: "";
  position: relative;
  left: 2px;
  width: 1.75rem;
  height: 4px;
  display: block;
  margin-bottom: 5px;
  background: var(--second-color)
}

.portfolio--slider p {
  font-size: calc(112.5% + .42vw);
  font-weight: 500;
  color: var(--font-color2)
}

.portfolio-image {
  position: relative;
  margin-bottom: 3.125rem
}

.portfolio-image img {
  margin: 0
}

.portfolio-image:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff0), to(rgb(0 0 0 / .75)));
  background: linear-gradient(to bottom, #fff0 0, rgb(0 0 0 / .75) 100%)
}

.portfolio--slider .slick-dots {
  padding-top: 25px;
  position: relative
}

.tabs-content {
  min-height: 100%
}

.min-height {
  min-height: 640px
}

.trend-stats>span {
  font-weight: 500;
  margin-bottom: .8rem;
  display: block;
  font-size: calc(112.5% + .21vw)
}

.forcast-box {
  padding: calc(1rem + 2vw);
  padding-right: calc(1rem + .95vw)
}

.forcast-box .forcast-box-text {
  display: block;
  font-size: calc(112.5% + 1.67vw);
  font-weight: 300;
  color: var(--font-color2)
}

.forcast-box p.p-large {
  font-size: calc(112.5% + .18vw) !important
}

.list--tech ul {
  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;
  margin: 0 -1rem
}

.list--tech ul li {
  margin: 0 1rem
}

.list--tech svg {
  max-width: 100%;
  height: 55px
}

.c-logo {
  max-height: 114px;
  line-height: 50px;
  display: inline-block;
  color: #3e789f;
  background: url(https://www.websutility.com/cdn/client-strip.png) no-repeat;
  max-width: 296px;
  background-size: 1482px;
  background-size: 1482px;
  position: absolute;
  left: 0;
  display: block;
  top: 0;
  right: 0;
  bottom: 0
}

.client-logos .col-auto {
  width: 20%;
  position: relative;
  overflow: hidden
}

.icon-box i {
  min-height: 68px;
  display: block
}

.icon-box .svg {
  display: block;
  margin: 0 auto
}

.icon-box p {
  font-weight: 400;
  color: var(--font-color2);
  text-align: center;
  margin: 1.5rem 0
}

@media only screen and (max-width:1380px) {
  .services-content>.row {
    display: block;
    width: auto !important
  }

  .tabs-content-services {
    padding: 30px 0 0
  }

  .more-links {
    padding: 2rem 0 0;
    margin: 2rem 0 0;
    border: none;
    border-top: 1px solid #d1d1d1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .more-links li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .portfolio--slider p {
    font-size: 1.25rem
  }

  .product-box {
    padding: calc(.5rem + 1.2vw)
  }

  p.p-large {
    font-size: 16px !important
  }

  .product-box .svg {
    max-width: 100px;
    height: 46px
  }

  .forcast-box p.p-large {
    font-size: calc(100% + .18vw) !important
  }

  .forcast-box {
    padding: calc(1rem + .5vw);
    padding-right: calc(1rem + .95vw)
  }

  .forcast-box .forcast-box-text {
    font-size: calc(112.5% + 1.3vw)
  }

  .p-7 {
    padding: calc(1rem + 2vw)
  }

  .tabs-links li a::after {
    height: 2px;
    bottom: -8px
  }

  .icon-box .svg {
    max-height: 54px
  }

  .icon-box p {
    margin: 1rem 0
  }

  .slider-btn {
    height: 40px;
    width: 40px
  }

  .slider-btn::before {
    width: 14px;
    height: 14px
  }

  .slider-btn.next-btn::before {
    margin: -7px 2px 0 0
  }

  .slider-btn.prev-btn::before {
    margin: -7px 0 0 2px
  }

  .portfolio--slider h4::before {
    height: 2px
  }
}

@media only screen and (max-width:1200px) {
  .featured-bar {
    position: static
  }

  .featured-in {
    padding: 2.25rem 2rem
  }

  .more-links {
    display: block
  }

  .min-height {
    min-height: inherit
  }

  .tabs-content-services {
    padding: 20px 0 0
  }

  .more-links li {
    max-width: inherit
  }

  .list--tech ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0
  }

  .list--tech ul li {
    padding: 1.2rem;
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }

  .testimonial-title {
    font-size: calc(112.5% + .1vw)
  }

  .tabs-links li:after {
    height: 2px
  }

  .tabs-links li span {
    font-size: 1rem
  }

  .tabs-verticle-wrap {
    background-color: #fbfbfb;
    overflow: hidden;
    padding: 4rem 4rem 0
  }

  .tabs-verticle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-top: -21px
  }

  .tabs-verticle li {
    border: none;
    padding: 0;
    margin-right: 19px
  }

  .tabs-verticle li a {
    padding: 0 0 5px;
    font-size: 12px
  }

  .tabs-verticle li a.link-arrow:after,
  .tabs-verticle li a.link-arrow:before {
    display: none
  }

  .tabs-verticle li.is--active a:after {
    background: var(--second-color);
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    display: block
  }

  .portfolio-image {
    margin-bottom: 1.125rem
  }

  .portfolio--slider .portfolio-detail {
    padding: 0
  }

  .client-logos .col-auto {
    width: 25%
  }
}

@media only screen and (max-width:767px) {
  .section {
    padding: calc(1rem + 4vw) 0
  }

  .tabs-links li a {
    display: inline-block
  }

  .testimonial--slider .slick-dots {
    padding-top: 25px;
    position: relative
  }

  .tabs-verticle-wrap {
    padding: 2.3rem 2.3rem 0
  }

  .tabs-links li {
    padding: 0 1.5rem
  }

  .list--tech ul li {
    padding: 1rem 1.5rem;
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%
  }

  .list--tech ul li img {
    max-width: 80%
  }

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

  .featured-media svg.inc {
    width: 55px;
    height: 22px
  }

  .featured-media svg.entrepreneur {
    width: 80px;
    height: 18px
  }

  .featured-media svg.huffpost {
    width: 99px;
    height: 10px
  }

  .featured-media svg.business_reporter {
    width: 125px;
    height: 18px
  }

  .featured-media svg.indian_express {
    width: 125px;
    height: 12px
  }

  .featured-media li {
    padding: 1rem .8rem;
    -webkit-box-flex: 0;
    margin: 0
  }

  .featured-media li:first-child {
    margin-left: 0
  }

  .client-logos .col-auto {
    width: 33.33%
  }

  .our--clients .client-logo {
    margin: 1.5rem auto;
    max-width: 100%;
    height: auto
  }

  .icon-box i {
    min-height: inherit
  }

  .icon-box .svg {
    max-height: 42px
  }

  p.p-large {
    font-size: 14px !important
  }

  .demo-cont {
    height: 440px
  }
}

@media only screen and (max-width:575px) {
  .client-logos .col-auto {
    width: 50%
  }

  .list--tech ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }

  .link-arrow.link--more {
    font-size: 1rem
  }

  .demo-cont {
    height: 700px
  }
}

.popupbtnbox {
  position: relative
}

@media only screen and (max-width:767px) {
  .best-services-area .nav-pills .nav-link {
    width: 100%;
    margin-bottom: 30px
  }

  .tabs-verticle-wrap {
    margin: -46px 0 0 -29px
  }

  .content-data {
    width: 299px
  }

  .mobile-image {
    height: 145px
  }

  .top-bar {
    padding-top: 10px;
    padding-bottom: 12px
  }
}

.fatbit-social ul li .fa {
  font-size: 30px
}

p.p-large.p-726 a {
  color: #04f0ff !important
}

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 100px
}

.bounce2 {
  animation: bounce2 2s ease infinite
}

.slider-form {
  background: rgb(255 255 255 / 50%);
  padding: 25px
}

.slider-form h3 {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center
}

.slider-form input {
  font-size: 1.4rem;
  height: 40px
}

@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0)
  }

  40% {
    transform: translateY(-30px)
  }

  60% {
    transform: translateY(-15px)
  }
}

@media only screen and (max-width:420px) {
  .top-bar {
    flex-direction: column
  }

  .top-bar .col-md-6 {
    padding: 0
  }

  .fnc-slide__inner:after {
    background-color: none
  }
}







.social-icons {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  justify-content: center;
  position: absolute !important;
  left: 16px;
}

.social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.social-icons li .fa {
  font-size: 16px !important;
}

/* Individual background colors */
.social-icons .facebook a {
  background-color: #3b5998;
}

.social-icons .twitter a {
  background-color: #1da1f2;
}

.social-icons .linkedin a {
  background-color: #0077B5;
  color: #fff;
}

.social-icons .instagram a {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 50%, #d6249f 70%, #285AEB 100%);
}

.social-icons .youtube a {
  background-color: #ff0000;
}

.social-icons .email a {
  background-color: #6c757d;
  /* Gray, adjust as needed */
}

.social-icons.header_icon {
  position: relative !important;
  gap: 6px;
  padding-top: 6px;
}

.support-top {
  display: flex;
  align-items: center;
}

.header-btn.btnt {
  margin-top: -5px;
}

@media screen and (max-width:768px) {
  .social-icons {
    position: relative !important;
    left: -69px !important;
  }

  .social-icons.header_icon {
    position: relative !important;
    display: contents;
    left: 0 !important;
  }

  .social-icons.header_icon li {
    padding: 2px !important;
  }
}

.pb-40 {
  padding-bottom: 40px
}