@charset "UTF-8";

:root {
  --as-theme: #e72e28;
  --as-theme-dark: #d12f2a;
  --as-body-bg: #fff;
  --as-body-text: #000;
  --as-black: #000;
  --as-white: #fff;
  --as-blue: #1f44de;
  --as-light-blue: #6683ff;
  --text-opacity-70: rgba(255, 255, 255, 0.7);
  --as-gray: #f5f5f5;
  --as-light-gray: #c9c9c9;
  --as-purple: #ae45d1;
  --as-gray-200: #cfcfcf;
  --as-gray-300: #d0d0d0;
  --as-gray-400: #c0c0c0;
  --as-gray-500: #6f6f7d;
  --as-gray-600: #9d9d9d;
  --as-gray-700: #b5b5b5;
  --as-gray-800: #6a6a6a;
  --as-gray-900: #1f1f1f;
  --as-muted: #393939;
  --as-font: Karla, sans-serif;
  --as-font-alt: Montserrat, sans-serif, sans-serif;
  --as-base-font: 19px;
  --as-font-180: 180px;
  --as-font-135: 135px;
  --as-font-100: 100px;
  --as-font-76: 76px;
  --as-font-70: 70px;
  --as-font-50: 50px;
  --as-font-60: 60px;
  --as-font-47: 47px;
  --as-font-40: 40px;
  --as-font-30: 30px;
  --as-font-34: 34px;
  --as-font-36: 36px;
  --as-font-28: 28px;
  --as-font-25: 25px;
  --as-font-24: 24px;
  --as-font-23: 23px;
  --as-font-21: 21px;
  --as-font-20: 20px;
  --as-font-19: 19px;
  --as-font-18: 18px;
  --as-font-17: 17px;
  --as-font-16: 16px;
  --as-font-15: 15px;
  --as-font-14: 14px;
  --as-font-13: 13px;
  --as-text-light: #d6d6d6;
  --as-text-light-2: #9d9d9d;
  --as-text-blue: #2640cc;
  --as-border-color: #f5f5f5;
  --as-border-width: 1px;
  --as-p: null;
  --as-p-sm: null;
  --as-p-md: null;
  --as-p-lg: null;
  --as-p-xl: null;
  --as-m: null;
  --as-m-sm: null;
  --as-m-md: null;
  --as-m-lg: null;
  --as-m-xl: null;
  --as-w: null;
  --as-w-sm: null;
  --as-w-md: null;
  --as-w-lg: null;
  --as-w-xl: null;
  --as-w-fix: null;
  --as-w-fix-sm: null;
  --as-w-fix-md: null;
  --as-w-fix-lg: null;
  --as-w-fix-xl: null;
  --as-h: null;
  --as-h-sm: null;
  --as-h-md: null;
  --as-h-lg: null;
  --as-h-xl: null;
  --as-min-h: null;
  --as-min-h-sm: null;
  --as-min-h-md: null;
  --as-min-h-lg: null;
  --as-min-h-xl: null;
}

@media (max-width: 1600px) {
  :root {
    --as-font-76: calc(1.175rem + 2vw);
  }
}

@media (max-width: 1200px) {
  :root {
    --as-font-180: calc(1.575rem + 5.9vw);
    --as-font-135: calc(1.575rem + 5vw);
    --as-font-100: calc(1.575rem + 4.9vw);
    --as-font-76: calc(1.375rem + 2.9vw);
    --as-font-70: calc(1.525rem + 3.3vw);
    --as-font-50: calc(1.475rem + 2.7vw);
    --as-font-40: calc(1.375rem + 1.5vw);
    --as-font-36: calc(1.375rem + 1.6vw);
    --as-font-34: calc(1.375rem + 1.4vw);
    --as-font-30: calc(1.325rem + .9vw);
    --as-font-28: calc(1.3rem + .6vw);
    --as-font-25: calc(1.275rem + .35vw);
    --as-font-24: calc(1.275rem + .3vw);
    --as-font-23: calc(1.275rem + .28vw);
    --as-font-21: calc(1.275rem + .25vw);
    --as-font-20: calc(1.275rem + .2vw);
    --as-font-19: 17px;
    --as-font-18: 16px;
    --as-font-17: 15px;
    --as-font-15: 14px;
    --as-font-14: 13px;
    --as-font-13: 12px;
  }
}

@media (max-width: 991px) {
  :root {
    --as-base-font: 17px;
  }
}

@media (max-width: 767px) {
  :root {
    --as-base-font: 15px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--as-font);
  font-size: var(--as-base-font);
  font-weight: 400;
  line-height: 1.4;
  color: var(--as-body-text);
  background-color: var(--as-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.03rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small,
.small {
  font-size: 0.875em;
}

mark,
.mark {
  padding: 0.1875em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--as-theme);
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--as-body-bg);
  background-color: var(--as-body-text);
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

.avatar-sm {
  width: 40px;
  height: 40px;
}

.avatar-lg {
  width: 85px;
  height: 85px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-style-01 .tab-nav {
  border-bottom: 1px solid var(--as-gray-700);
  overflow-x: auto;
}

.tab-style-01 .tab-nav li {
  padding-bottom: 30px;
  position: relative;
  filter: grayscale(1);
  opacity: 0.5;
}

.tab-style-01 .tab-nav li+li {
  margin-left: 25px;
}

@media (max-width: 767px) {
  .tab-style-01 .tab-nav li+li {
    margin-left: 10px;
  }
}

.tab-style-01 .tab-nav li:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 0;
  height: 5px;
  background: var(--as-theme);
  bottom: 0;
  transition: ease all 0.35s;
}

.tab-style-01 .tab-nav li.active {
  filter: grayscale(0);
  opacity: 1;
}

.tab-style-01 .tab-nav li.active:after,
.tab-style-01 .tab-nav li:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

body.home .testimonials_trigger h4 {
  color: #111;
}

body.home .testimonials_trigger .text-muted {
  color: #4a4a4a;
}

@media (max-width: 767px) {
  .tab-style-01 .font-34 {
    font-size: 20px;
  }

  .tab-style-01 .font-28 {
    font-size: 15px;
  }

  .tab-style-01 .desgignation {
    font-size: 14px;
  }
}

.testimonials_tab:not(:first-child) {
  display: none;
}

.as-video-modal-wrapp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11111;
}

.as-video-modal-wrapp .video-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  z-index: 111;
}

.as-video-modal-wrapp .video-container:after {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.as-video-modal-wrapp .video-container>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.as-video-modal-wrapp .video-overlay {
  position: fixed;
  z-index: 111;
  background: rgba(0, 0, 0, 0.75);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.as-video-modal-wrapp .close-video {
  width: 35px;
  height: 35px;
  top: -15px;
  left: auto;
  bottom: auto;
  right: -15px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.as-video-modal-wrapp .close-video span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.as-video-modal-wrapp .close-video span:after,
.as-video-modal-wrapp .close-video span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #000;
}

.as-video-modal-wrapp .close-video span:before {
  width: 2px;
  height: 100%;
}

.as-video-modal-wrapp .close-video span:after {
  width: 100%;
  height: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--as-font-alt);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.content_sc p {
  font-weight: 500;
}

/* Font Size
---------------------------*/
.font-180 {
  font-size: var(--as-font-180);
  line-height: 1.08;
}

.font-135 {
  font-size: var(--as-font-135);
  line-height: 1.08;
}

.font-100 {
  font-size: var(--as-font-100);
  line-height: 1.08;
}

.font-76 {
  font-size: var(--as-font-76);
  line-height: 1.08;
}

.font-70 {
  font-size: var(--as-font-70);
  line-height: 1.08;
}

.font-50 {
  font-size: var(--as-font-50);
  line-height: 1.1;
}

.font-60 {
  font-size: var(--as-font-60);
  line-height: 1.1;
}

.font-47 {
  font-size: var(--as-font-47);
  line-height: 1.3;
}

.font-40 {
  font-size: var(--as-font-40);
  line-height: 1.2;
}

.font-30 {
  font-size: var(--as-font-30);
  line-height: 1.3;
}

.font-34 {
  font-size: var(--as-font-34);
  line-height: 1.3;
}

.font-36 {
  font-size: var(--as-font-36);
  line-height: 1.2;
}

.font-28 {
  font-size: var(--as-font-28);
  line-height: 1.3;
}

.font-24 {
  font-size: var(--as-font-24);
  line-height: 1.3;
}

.font-23 {
  font-size: var(--as-font-23);
  line-height: 1.3;
}

.font-25 {
  font-size: var(--as-font-25);
  line-height: 1.3;
}

.font-21 {
  font-size: var(--as-font-21);
}

.font-20 {
  font-size: var(--as-font-20);
}

.font-19 {
  font-size: var(--as-font-19);
}

.font-18 {
  font-size: var(--as-font-18);
}

.font-17 {
  font-size: var(--as-font-17);
}

.font-16 {
  font-size: var(--as-font-16);
}

.font-15 {
  font-size: var(--as-font-15);
}

.font-14 {
  font-size: var(--as-font-14);
}

.font-13 {
  font-size: var(--as-font-13);
}

.font-12 {
  font-size: var(--as-font-12);
}

@media (max-width: 991px) {
  .font-lg-18 {
    font-size: 18px !important;
  }

  .font-md-17 {
    font-size: 17px !important;
  }

  .font-md-16 {
    font-size: 16px !important;
  }

  .font-md-14 {
    font-size: 14px !important;
  }

  .font-md-15 {
    font-size: 15px !important;
  }

  .font-md-12 {
    font-size: 12px !important;
  }

  .font-md-30 {
    font-size: 30px !important;
  }

  .font-md-34 {
    font-size: 34px !important;
  }

  .font-md-36 {
    font-size: 36px !important;
  }
}

@media (max-width: 767px) {
  .font-md-16 {
    font-size: 16px !important;
  }

  .font-md-14 {
    font-size: 14px !important;
  }

  .font-sm-12 {
    font-size: 12px !important;
  }

  .font-50 {
    font-size: 28px;
  }

  .font-60 {
    font-size: 35px;
  }
}

/* Font weight
---------------------------*/
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* Font Faml
---------------------------*/
.font-base {
  font-family: var(--as-font);
}

.font-alt {
  font-family: var(--as-font-alt);
}

.ls-sm {
  letter-spacing: -0.07rem;
}

.ls-xs {
  letter-spacing: -0.03rem;
}

/* Text Align
---------------------------*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-italic {
  font-style: italic;
}

.text-nowrap {
  white-space: nowrap;
}

.text-uppercase {
  text-transform: uppercase;
}

@media (min-width: 568px) {
  .text-sm-center {
    text-align: center;
  }

  .text-sm-left {
    text-align: left;
  }

  .text-sm-right {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }

  .text-md-left {
    text-align: left;
  }

  .text-md-right {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }

  .text-lg-left {
    text-align: left;
  }

  .text-lg-right {
    text-align: right;
  }
}

@media (min-width: 1201px) {
  .text-xl-center {
    text-align: center;
  }

  .text-xl-left {
    text-align: left;
  }

  .text-xl-right {
    text-align: right;
  }
}

.text-gradient {
  background: #df4c68;
  background: linear-gradient(160deg, #df4c68 31%, #8923e8 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-eclipse-line5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

img {
  max-width: 100%;
  height: auto;
}

picture.w-100 img {
  width: 100%;
  display: inherit;
}

@media (min-width: 992px) {
  .img-max-w-auto {
    max-width: none;
  }

  picture.img-max-w-auto img {
    max-width: inherit;
  }
}

@media (min-width: 992px) and (max-width: 767px) {
  picture.img-max-w-auto img {
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 992px) {
  picture.w-100 img {
    width: 100%;
    display: inherit;
  }
}

@media (max-width: 991px) {
  picture.moshocart_logo {
    width: 184px;
  }

  picture.our_product_logo {
    width: 114px;
  }
}

.star-icon picture img {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .star-icon picture img {
    width: 35px;
  }
}

.case-studies-card {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.case-studies-card:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  padding-bottom: 117.4%;
}

.case-studies-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 45%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7), transparent);
}

.case-studies-card .case-studies-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.case-study-card-full {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  background-position-x: center;
}

.case-studies-card-default .case-study-img {
  border-radius: 20px;
  position: relative;
}

.case-studies-card-default .case-study-tag {
  position: absolute;
  bottom: 22px;
  left: 20px;
  right: 0;
}

.case-studies-card-default .case-study-title {
  transition: all ease-in-out 0.25s;
}

.case-studies-card-default:hover .case-studies-card-body .case-study-title {
  color: var(--as-theme);
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-type-01 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type-01 li {
  position: relative;
  position: relative;
  padding: 7px 15px 7px 22px;
}

.list-type-01 li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--as-theme);
  border-right: 2px solid var(--as-theme);
  transform: rotate(45deg);
}

.list-type-01 a:hover {
  color: var(--as-theme);
}

.list-type-02 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type-02 li {
  position: relative;
  position: relative;
  padding: 7px 15px 7px 22px;
}

.list-type-02 li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--as-theme);
}

.list-type-02 a:hover {
  color: var(--as-theme);
}

.list-type-2-col {
  display: flex;
  flex-wrap: wrap;
}

.list-type-2-col li {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .list-type-2-col li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.odoo-list-purple li:after {
  background-color: var(--as-purple) !important;
}

.list-type-03 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type-03 li {
  padding: 20px 0 20px 20px;
  position: relative;
}

@media (max-width: 767px) {
  .list-type-03 li {
    padding: 15px 0 15px 20px;
    font-size: 15px;
  }
}

.list-type-03 li+li {
  border-top: 1px solid #c5c5c5;
}

.list-type-03 li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--as-theme);
  margin: auto;
}

.list-type-04 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  border-top: 1px solid var(--as-black);
  flex-wrap: wrap;
  border-right: 1px solid var(--as-black);
}

.list-type-04 li {
  flex: 0 0 50%;
  width: 50%;
  border-left: 1px solid var(--as-black);
  border-bottom: 1px solid var(--as-black);
  padding: 40px 40px 34px 82px;
  position: relative;
}

@media (max-width: 767px) {
  .list-type-04 li {
    flex: 0 0 100%;
    width: 100%;
  }
}

.list-type-04 li:after {
  content: "";
  position: absolute;
  top: 50px;
  left: 40px;
  width: 18px;
  height: 8px;
  border-bottom: 2px solid var(--as-black);
  border-left: 2px solid var(--as-black);
  transform: rotate(-45deg);
}

.list-type-04 li h5 {
  margin-bottom: 20px;
}

.list-type-05 {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--as-black);
}

.list-type-05 li {
  display: flex;
}

.list-type-05 li+li {
  border-top: 1px solid var(--as-black);
}

.list-type-05 li a {
  color: var(--as-black);
  position: relative;
  padding: 21px 20px 21px 70px;
  font-family: var(--as-font-alt);
  font-size: 17px;
  font-weight: 600;
}

.list-type-05 li a:after {
  content: "";
  position: absolute;
  left: 36px;
  top: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--as-theme);
  border-right: 2px solid var(--as-theme);
  transform: rotate(45deg);
  bottom: 0;
  margin: auto;
}

.list-type-05 li a:hover {
  color: var(--as-theme);
}

.list-type-05.white {
  border: 1px solid var(--as-white);
}

.list-type-05.white li+li {
  border-top: 1px solid var(--as-white);
}

.list-type-05.white li a {
  color: var(--as-white);
}

.list-type-05.white li a:after {
  border-top: 2px solid var(--as-white);
  border-right: 2px solid var(--as-white);
}

.list-type-05.white li:hover {
  color: var(--as-theme);
}

.list-type-06 {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 23px;
}

.list-type-06 li {
  padding: 12px 0 6px 36px;
  position: relative;
  color: var(--as-white);
}

.list-type-06 li:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--as-white);
  border-left: 2px solid var(--as-white);
  transform: rotate(-45deg);
}

.list-type-06 li h5 {
  margin-bottom: 20px;
}

.list-type-06.black li {
  color: var(--as-black);
  font-weight: 500;
}

.list-type-06.black li:after {
  border-bottom: 2px solid var(--as-black);
  border-left: 2px solid var(--as-black);
  transform: rotate(-45deg);
}

.list-type-06.black li h5 {
  margin-bottom: 20px;
}

.list-type-07 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.list-type-07 li {
  flex: 0 0 32%;
  width: 32%;
  margin: 2px;
  background-color: #eff1fa;
  padding: 20px 25px 20px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .list-type-07 li {
    flex: 0 0 100%;
    width: 100%;
  }
}

.list-type-07 li:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 18px;
  height: 8px;
  border-bottom: 2px solid var(--as-black);
  border-left: 2px solid var(--as-black);
  transform: rotate(-45deg);
}

.list-type-08 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type-08 li {
  padding: 20px 0 20px 0px;
  position: relative;
  border-bottom: 1px solid #c5c5c5;
}

.list-type-09 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.list-type-09 li {
  flex: 0 0 31.8%;
  width: 31.8%;
  margin: 5px;
  background-color: #1536b2;
  padding: 20px 20px 20px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .list-type-09 li {
    flex: 0 0 100%;
    width: 100%;
  }
}

.list-type-09 li:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 18px;
  height: 8px;
  border-bottom: 2px solid var(--as-white);
  border-left: 2px solid var(--as-white);
  transform: rotate(-45deg);
}

.list-type-10 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-type-10 li {
  position: relative;
  position: relative;
  padding: 7px 15px 7px 60px;
}

.list-type-10 li:after {
  content: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/green-tick-icon.png);
  position: absolute;
  left: 0;
  top: 7px;
}

.list-type-10 a:hover {
  color: var(--as-theme);
}

.list-type-11 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.list-type-11 li {
  flex: 0 0 50%;
  width: 50%;
  padding: 10px 0px 0px 80px;
  position: relative;
}

@media (max-width: 767px) {
  .list-type-11 li {
    flex: 0 0 100%;
    width: 100%;
  }
}

.list-type-11 li p {
  margin: 0;
}

.list-type-11 li:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  width: 8px;
  height: 8px;
  background-color: var(--as-theme);
}

.list-type-12 {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.list-type-12 li {
  flex: 0 0 32%;
  width: 32%;
  margin: 4px;
  background-color: #eff1fa;
  padding: 20px 20px 20px 35px;
  position: relative;
}

@media (max-width: 767px) {
  .list-type-12 li {
    flex: 0 0 100%;
    width: 100%;
  }
}

.pe-none {
  pointer-events: none;
}

.btn-arrow {
  display: inline-block;
  width: 23px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  vertical-align: middle;
  margin-left: 3px;
}

.btn-arrow:before,
.btn-arrow:after {
  content: "";
  position: absolute;
  background-color: currentColor;
  right: 2px;
  height: 7px;
  width: 1px;
}

.btn-arrow:after {
  bottom: -1px;
  transform: rotate(-45deg);
}

.btn-arrow:before {
  top: -1px;
  transform: rotate(45deg);
}

.btn-arrow-md {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  position: relative;
  vertical-align: middle;
  left: 7px;
  transition: ease-in-out all 0.2s;
}

.btn-arrow-md:before,
.btn-arrow-md:after {
  content: "";
  position: absolute;
  background-color: currentColor;
  right: 1px;
  height: 10px;
  width: 2px;
}

.btn-arrow-md:after {
  bottom: -1px;
  transform: rotate(-45deg);
}

.btn-arrow-md:before {
  top: -1px;
  transform: rotate(45deg);
}

.btn-arrow-lg {
  display: inline-block;
  width: 48px;
  height: 3px;
  background-color: currentColor;
  position: relative;
  vertical-align: middle;
}

.btn-arrow-lg:before,
.btn-arrow-lg:after {
  content: "";
  position: absolute;
  background-color: currentColor;
  right: 4px;
  height: 18px;
  width: 3px;
}

.btn-arrow-lg:after {
  bottom: -2px;
  transform: rotate(-45deg);
}

.btn-arrow-lg:before {
  top: -2px;
  transform: rotate(45deg);
}

.btn {
  font-size: var(--as-base-font);
  font-weight: 500;
  display: inline-block;
  padding: 25px 50px;
  line-height: normal;
  transition: all 0.4s ease;
  text-decoration: none;
}

@media (max-width: 767px) {
  .btn {
    padding: 18px 25px;
  }
}

.btn.btn-lg {
  font-size: var(--as-font-21);
  font-weight: 600;
  font-family: var(--as-font-alt);
  padding: 22px 62px;
}

@media (max-width: 991px) {
  .btn.btn-lg {
    padding: 22px 40px;
  }
}

@media (max-width: 767px) {
  .btn.btn-lg {
    font-size: var(--as-font-17);
    padding: 18px 36px;
  }
}

@media (max-width: 767px) {
  .btn-sm-block {
    width: 100%;
    text-align: center;
  }
}

.btn-g-border {
  border: 2px solid;
  border-image-slice: 1;
  background-color: transparent;
  border-image-source: linear-gradient(to right, #f0537e, #ff8839);
  transition: all ease-in-out 0.35s;
  color: var(--as-white);
}

.btn-g-border:hover {
  background: linear-gradient(90deg, #f0537e 0%, #ff8839 100%);
}

.btn-g-border.btn-lg {
  font-size: var(--as-font-21);
  font-weight: 600;
  font-family: var(--as-font-alt);
  padding: 25px 62px;
}

@media (max-width: 767px) {
  .btn-g-border.btn-lg {
    font-size: var(--as-font-17);
    padding: 18px 36px;
  }
}

.btn-red {
  background-color: #c61f1a;
  color: var(--as-white);
  border: 1px solid #c61f1a;
}

.btn-red:hover {
  background-color: #a91a16;
}

.bg-black .text-muted {
  color: rgba(255, 255, 255, 0.75);
}

.btn-white {
  background-color: var(--as-white);
  color: var(--as-black);
}

.btn-white:hover {
  background-color: var(--as-theme);
  color: var(--as-white);
}

.btn-black {
  background-color: var(--as-black);
  color: var(--as-white);
}

.btn-black:hover {
  background-color: var(--as-theme);
  color: var(--as-white);
}

.btn-round-arrow {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--as-theme);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.btn-round-arrow.gray {
  color: var(--as-black);
  border: 1px solid var(--as-light-gray);
}

.btn-round-arrow.gray:hover {
  color: var(--as-white);
  border: 1px solid var(--as-black);
  background-color: var(--as-black);
}

.btn-round-arrow.white {
  color: var(--as-white);
  border: 1px solid var(--as-white);
}

.btn-round-arrow.white:hover {
  color: var(--as-black);
  border: 1px solid var(--as-white);
  background-color: var(--as-white);
}

.btn-round-arrow.theme {
  border: 1px solid var(--as-theme);
}

.btn-round-arrow.theme:hover {
  color: var(--as-red);
  border: 1px solid var(--as-white);
  background-color: var(--as-white);
}

.btn-round-arrow.md {
  width: 45px;
  height: 45px;
}

@media (max-width: 767px) {
  .btn-round-arrow {
    width: 40px;
    height: 40px;
  }
}

.btn-white-outline {
  background-color: transparent;
  color: var(--as-white);
  border: 2px solid var(--as-white);
}

.btn-white-outline:hover {
  background-color: var(--as-white);
  color: var(--as-black);
}

.stretched-link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.btn-link {
  display: inline-block;
  text-decoration: none;
}

.btn-link.white {
  color: var(--as-white);
}

.btn-link.white:hover {
  color: var(--as-theme);
}

.btn-link.black {
  color: var(--as-black);
}

.btn-link.black:hover {
  color: var(--as-theme);
}

.btn-link.red {
  color: var(--as-theme);
}

.btn-link.red:hover {
  color: var(--as-theme-dark);
}

.btn-link .btn-round-arrow {
  margin-left: 15px;
}

.btn-link.arrow {
  position: relative;
  padding-right: 15px;
}

.btn-link.arrow:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--as-theme);
  border-right: 2px solid var(--as-theme);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  right: 0;
}

.btn-video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  background-color: var(--as-theme);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: 0;
  color: var(--as-white);
  z-index: 1;
}

@media (max-width: 767px) {
  .btn-video {
    width: 65px;
    height: 65px;
  }
}

.btn-video.btn-video-sm {
  width: 77px;
  height: 77px;
}

.btn-video:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--as-white);
}

.btn-video:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  animation: pulse-border 1.5s ease-out infinite;
  pointer-events: none;
  background: var(--as-theme);
  z-index: -1;
}

@keyframes pulse-border {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.bg-cover {
  background-size: cover;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-center {
  background-position: center;
}

.bg-top {
  background-position: top;
}

.bg-center-right {
  background-position: center right;
}

.bg-white {
  background-color: var(--as-white);
}

.bg-theme {
  background-color: var(--as-theme);
}

.bg-gray {
  background-color: var(--as-gray);
}

.bg-black {
  background-color: var(--as-black);
}

.bg-purple {
  background-color: var(--as-purple);
}

.bg-gray-900 {
  background-color: var(--as-gray-900);
}

.bg-gray-400 {
  background-color: var(--as-gray-400);
}

.bg-blue {
  background-color: var(--as-blue);
}

.bg-g-1 {
  background-image: -moz-linear-gradient(7deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 41%, rgb(239, 132, 87) 85%);
  background-image: -webkit-linear-gradient(7deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 41%, rgb(239, 132, 87) 85%);
  background-image: -ms-linear-gradient(7deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 41%, rgb(239, 132, 87) 85%);
}

.bg-g-2 {
  background-image: -moz-linear-gradient(7deg, rgb(38, 64, 204) 30%, rgb(139, 98, 146) 75%, rgb(239, 132, 87) 104%);
  background-image: -webkit-linear-gradient(7deg, rgb(38, 64, 204) 30%, rgb(139, 98, 146) 75%, rgb(239, 132, 87) 104%);
  background-image: -ms-linear-gradient(7deg, rgb(38, 64, 204) 30%, rgb(139, 98, 146) 75%, rgb(239, 132, 87) 104%);
}

.bg-g-3 {
  background-image: linear-gradient(-128deg, #710478 24%, #FF4772 80%);
}

.bg-g-4 {
  background-image: -moz-linear-gradient(-25deg, rgb(38, 64, 204) 38%, rgb(139, 98, 146) 60%, rgb(239, 132, 87) 86%);
  background-image: -webkit-linear-gradient(-25deg, rgb(38, 64, 204) 38%, rgb(139, 98, 146) 60%, rgb(239, 132, 87) 86%);
  background-image: -ms-linear-gradient(-25deg, rgb(38, 64, 204) 38%, rgb(139, 98, 146) 60%, rgb(239, 132, 87) 86%);
}

.bg-g-5 {
  background-image: -moz-linear-gradient(-25deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 56%, rgb(239, 132, 87) 100%);
  background-image: -webkit-linear-gradient(-25deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 56%, rgb(239, 132, 87) 100%);
  background-image: -ms-linear-gradient(-25deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 56%, rgb(239, 132, 87) 100%);
}

.bg-g-6 {
  background-image: -moz-linear-gradient(0deg, rgb(34, 41, 180) 0%, rgb(108, 24, 130) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(34, 41, 180) 0%, rgb(108, 24, 130) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(34, 41, 180) 0%, rgb(108, 24, 130) 100%);
}

.bg-g-7 {
  background-image: -moz-linear-gradient(-108deg, rgb(69, 0, 140) 0%, rgb(154, 66, 114) 56%, rgb(239, 132, 87) 100%);
  background-image: -webkit-linear-gradient(-108deg, rgb(69, 0, 140) 0%, rgb(154, 66, 114) 56%, rgb(239, 132, 87) 100%);
  background-image: -ms-linear-gradient(-108deg, rgb(69, 0, 140) 0%, rgb(154, 66, 114) 56%, rgb(239, 132, 87) 100%);
}

@media (max-width: 767px) {
  .bg-g-mobile {
    background-image: -moz-linear-gradient(-25deg, rgb(38, 64, 204) 38%, rgb(139, 98, 146) 60%, rgb(239, 132, 87) 86%) !important;
    background-image: -webkit-linear-gradient(-25deg, rgb(38, 64, 204) 38%, rgb(139, 98, 146) 60%, rgb(239, 132, 87) 86%) !important;
    background-image: -ms-linear-gradient(-25deg, rgb(38, 64, 204) 38%, rgb(139, 98, 146) 60%, rgb(239, 132, 87) 86%) !important;
  }
}

.text-reset {
  color: inherit;
}

.text-black {
  color: var(--as-black);
}

.text-blue {
  color: var(--as-text-blue);
}

.text-light-blue {
  color: var(--as-light-blue);
}

.text-white {
  color: var(--as-white);
}

.text-opacity-70 {
  color: var(--text-opacity-70);
}

.text-muted {
  color: var(--as-muted);
}

.text-gray-200 {
  color: var(--as-gray-200);
}

.text-gray-800 {
  color: var(--as-gray-800);
}

.text-gray-600 {
  color: var(--as-gray-600);
}

.text-theme {
  color: var(--as-theme);
}

.text-light {
  color: var(--as-text-light);
}

.text-light-2 {
  color: var(--as-text-light-2);
}

.square-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: top;
  background-color: var(--as-theme);
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.min-vh-100 {
  min-height: 100vh;
}

.h-custom {
  height: var(--as-h);
}

.h-min-custom {
  min-height: var(--as-min-h);
}

@media (min-width: 568px) {
  .h-sm-custom {
    height: var(--as-h-sm);
  }

  .h-min-sm-custom {
    min-height: var(--as-min-h-sm);
  }
}

@media (min-width: 768px) {
  .h-md-custom {
    height: var(--as-h-md);
  }

  .h-min-md-custom {
    min-height: var(--as-min-h-md);
  }
}

@media (min-width: 992px) {
  .h-lg-custom {
    height: var(--as-h-lg);
  }

  .h-min-lg-custom {
    min-height: var(--as-min-h-lg);
  }
}

@media (min-width: 1201px) {
  .h-xl-custom {
    height: var(--as-h-xl);
  }

  .h-min-xl-custom {
    min-height: var(--as-min-h-xl);
  }
}

.w-100 {
  width: 100%;
}

.w-custom {
  max-width: var(--as-w);
}

.w-fix-custom {
  width: var(--as-w-fix);
}

@media (min-width: 568px) {
  .w-sm-custom {
    max-width: var(--as-w-sm);
  }

  .w-fix-sm-custom {
    width: var(--as-w-fix-sm);
  }
}

@media (max-width: 767px) {
  .w-55 {
    width: 55%;
  }
}

@media (min-width: 768px) {
  .w-md-custom {
    max-width: var(--as-w-md);
  }

  .w-fix-md-custom {
    width: var(--as-w-fix-md);
  }
}

@media (min-width: 992px) {
  .w-lg-custom {
    max-width: var(--as-w-lg);
  }

  .w-fix-lg-custom {
    width: var(--as-w-fix-lg);
  }
}

@media (min-width: 1201px) {
  .w-xl-custom {
    max-width: var(--as-w-xl);
  }

  .w-fix-xl-custom {
    width: var(--as-w-fix-xl);
  }
}

@media (max-width: 1908px) {
  .mw-100 {
    width: 100%;
  }
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  max-width: 1200px;
}

.container-xxl {
  max-width: 1614px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-inline-flex {
  display: inline-flex;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

@media (min-width: 568px) {
  .d-sm-none {
    display: none;
  }

  .d-sm-block {
    display: block;
  }

  .d-sm-flex {
    display: flex;
  }

  .flex-sm-wrap {
    flex-wrap: wrap;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }

  .align-items-sm-center {
    align-items: center;
  }

  .align-items-sm-start {
    align-items: flex-start;
  }

  .align-items-sm-end {
    align-items: flex-end;
  }

  .justify-content-sm-center {
    justify-content: center;
  }

  .justify-content-sm-start {
    justify-content: flex-start;
  }

  .justify-content-sm-end {
    justify-content: flex-end;
  }

  .justify-content-sm-between {
    justify-content: space-between;
  }

  .flex-sm-column {
    flex-direction: column;
  }

  .flex-sm-row {
    flex-direction: row;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }

  .d-md-block {
    display: block;
  }

  .d-md-flex {
    display: flex;
  }

  .flex-md-wrap {
    flex-wrap: wrap;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap;
  }

  .align-items-md-center {
    align-items: center;
  }

  .align-items-md-start {
    align-items: flex-start;
  }

  .align-items-md-end {
    align-items: flex-end;
  }

  .justify-content-md-center {
    justify-content: center;
  }

  .justify-content-md-start {
    justify-content: flex-start;
  }

  .justify-content-md-end {
    justify-content: flex-end;
  }

  .justify-content-md-between {
    justify-content: space-between;
  }

  .flex-md-column {
    flex-direction: column;
  }

  .flex-md-row {
    flex-direction: row;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }

  .d-lg-block {
    display: block;
  }

  .d-lg-flex {
    display: flex;
  }

  .flex-lg-wrap {
    flex-wrap: wrap;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }

  .align-items-lg-center {
    align-items: center;
  }

  .align-items-lg-start {
    align-items: flex-start;
  }

  .align-items-lg-end {
    align-items: flex-end;
  }

  .justify-content-lg-center {
    justify-content: center;
  }

  .justify-content-lg-start {
    justify-content: flex-start;
  }

  .justify-content-lg-end {
    justify-content: flex-end;
  }

  .justify-content-lg-between {
    justify-content: space-between;
  }

  .flex-lg-column {
    flex-direction: column;
  }

  .flex-lg-row {
    flex-direction: row;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1201px) {
  .d-xl-none {
    display: none;
  }

  .d-xl-block {
    display: block;
  }

  .d-xl-flex {
    display: flex;
  }

  .flex-xl-wrap {
    flex-wrap: wrap;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }

  .align-items-xl-center {
    align-items: center;
  }

  .align-items-xl-start {
    align-items: flex-start;
  }

  .align-items-xl-end {
    align-items: flex-end;
  }

  .justify-content-xl-center {
    justify-content: center;
  }

  .justify-content-xl-start {
    justify-content: flex-start;
  }

  .justify-content-xl-end {
    justify-content: flex-end;
  }

  .justify-content-xl-between {
    justify-content: space-between;
  }

  .flex-xl-column {
    flex-direction: column;
  }

  .flex-xl-row {
    flex-direction: row;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 992px) {
  .center-2nd-col .col-lg-4:nth-child(3n+2) {
    display: flex;
    justify-content: center;
  }

  .center-2nd-col .col-lg-4:nth-child(3n+0) {
    display: flex;
    justify-content: flex-end;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  --col-pl: 15px;
  --col-pr: 15px;
}

.row>* {
  padding-left: var(--col-pl);
  padding-right: var(--col-pr);
}

.g-5 {
  margin-top: -4px;
  margin-left: -50px;
  margin-right: -50px;
  --col-pl: 50px;
  --col-pr: 50px;
}

.g-5>* {
  margin-top: 4px;
}

.g-6 {
  margin-top: -4px;
  margin-left: -50px;
  margin-right: -50px;
  --col-pl: 50px;
  --col-pr: 50px;
}

.g-6>* {
  margin-top: 4px;
}

.g-3 {
  margin-top: -30px;
}

.g-3>* {
  margin-top: 30px;
}

.g-1 {
  margin-top: -4px;
  margin-left: -2px;
  margin-right: -2px;
  --col-pl: 2px;
  --col-pr: 2px;
}

.g-1>* {
  margin-top: 4px;
}

.g-0 {
  margin-left: 0;
  margin-right: 0;
  --col-pl: 0;
  --col-pr: 0;
}

.col-auto {
  flex: 0 0 auto;
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  max-width: 8.33333333%;
  flex: 0 0 8.33333333%;
}

.col-2 {
  max-width: 16.66666667%;
  flex: 0 0 16.66666667%;
}

.col-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

.col-4 {
  max-width: 33.33333333%;
  flex: 0 0 33.33333333%;
}

.col-5 {
  max-width: 41.66666667%;
  flex: 0 0 41.66666667%;
}

.col-6 {
  max-width: 50%;
  flex: 0 0 50%;
}

.col-7 {
  max-width: 58.33333333%;
  flex: 0 0 58.33333333%;
}

.col-8 {
  max-width: 66.66666667%;
  flex: 0 0 66.66666667%;
}

.col-9 {
  max-width: 75%;
  flex: 0 0 75%;
}

.col-10 {
  max-width: 83.33333333%;
  flex: 0 0 83.33333333%;
}

.col-11 {
  max-width: 91.66666667%;
  flex: 0 0 91.66666667%;
}

.col-12 {
  max-width: 100%;
  flex: 0 0 100%;
}

@media (max-width: 991px) {
  .g-5 {
    margin-top: -4px;
    margin-left: 0px;
    margin-right: 0px;
    --col-pl: 0px;
    --col-pr: 0;
  }

  .g-6 {
    margin-top: -4px;
    margin-left: 0px;
    margin-right: 0px;
    --col-pl: 5px;
    --col-pr: 5px;
  }
}

@media (min-width: 568px) {
  .col-sm-auto {
    flex: 0 0 auto;
  }

  .col-sm {
    flex: 1 0 0%;
  }

  .col-sm-1 {
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
  }

  .col-sm-2 {
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
  }

  .col-sm-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .col-sm-4 {
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
  }

  .col-sm-5 {
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
  }

  .col-sm-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .col-sm-7 {
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
  }

  .col-sm-8 {
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
  }

  .col-sm-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .col-sm-10 {
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
  }

  .col-sm-11 {
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
  }

  .col-sm-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
  }

  .col-md {
    flex: 1 0 0%;
  }

  .col-md-1 {
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
  }

  .col-md-2 {
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
  }

  .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .col-md-4 {
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
  }

  .col-md-5 {
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
  }

  .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .col-md-7 {
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
  }

  .col-md-8 {
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
  }

  .col-md-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .col-md-10 {
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
  }

  .col-md-11 {
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
  }

  .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
  }

  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-1 {
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
  }

  .col-lg-2 {
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
  }

  .col-lg-2-half {
    max-width: 18.66666667%;
    flex: 0 0 18.66666667%;
  }

  .col-lg-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .col-lg-4 {
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
  }

  .col-lg-5 {
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
  }

  .col-lg-5-2 {
    max-width: 44.866667%;
    flex: 0 0 44.866667%;
  }

  .col-lg-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .col-lg-7 {
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
  }

  .col-lg-8 {
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
  }

  .col-lg-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .col-lg-10 {
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
  }

  .col-lg-11 {
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
  }

  .col-lg-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (min-width: 1201px) {
  .col-xl-auto {
    flex: 0 0 auto;
  }

  .col-xl {
    flex: 1 0 0%;
  }

  .col-xl-1 {
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
  }

  .col-xl-2 {
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
  }

  .col-xl-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .col-xl-4 {
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
  }

  .col-xl-5 {
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
  }

  .col-xl-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .col-xl-7 {
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
  }

  .col-xl-8 {
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
  }

  .col-xl-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .col-xl-10 {
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
  }

  .col-xl-11 {
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
  }

  .col-xl-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.p-custom {
  padding: var(--as-p);
}

.m-custom {
  margin: var(--as-m);
}

@media (min-width: 568px) {
  .p-sm-custom {
    padding: var(--as-p-sm);
  }

  .m-sm-custom {
    margin: var(--as-m-sm);
  }
}

@media (min-width: 768px) {
  .p-md-custom {
    padding: var(--as-p-md);
  }

  .m-md-custom {
    margin: var(--as-m-md);
  }
}

@media (min-width: 992px) {
  .p-lg-custom {
    padding: var(--as-p-lg);
  }

  .m-lg-custom {
    margin: var(--as-m-lg);
  }
}

@media (min-width: 1201px) {
  .p-xl-custom {
    padding: var(--as-p-xl);
  }

  .m-xl-custom {
    margin: var(--as-m-xl);
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

@media (max-width: 991px) {
  .order-1 {
    display: block;
    order: 1;
    text-align: center;
  }

  .order-2 {
    display: flex;
    order: 2;
  }

  .m-order-4 {
    order: 4;
  }

  .m-order-5 {
    order: 5;
  }

  .m-order-6 {
    order: 6;
  }
}

.hover-scale .hover-scale-in {
  overflow: hidden;
}

.hover-scale .hover-scale-in img {
  transform: scale(1);
  transition: ease all 0.35s;
}

.hover-scale:hover .hover-scale-in img {
  transform: scale(1.05);
}

.hover-top {
  position: relative;
  transition: ease all 0.35s;
  top: 0;
}

.hover-top:hover {
  top: -5px;
}

.border {
  border: var(--as-border-width) solid var(--as-border-color);
}

.border-bottom {
  border-bottom: var(--as-border-width) solid var(--as-border-color);
}

.border-top {
  border-top: var(--as-border-width) solid var(--as-border-color);
}

.border-right {
  border-right: var(--as-border-width) solid var(--as-border-color);
}

.border-left {
  border-left: var(--as-border-width) solid var(--as-border-color);
}

.border-2 {
  --as-border-width: 2px;
}

.border-3 {
  --as-border-width: 3px;
}

.border-4 {
  --as-border-width: 4px;
}

.border-5 {
  --as-border-width: 5px;
}

.border-6 {
  --as-border-width: 6px;
}

.border-theme {
  --as-border-color: var(--as-theme);
}

.border-black {
  --as-border-color: var(--as-black);
}

.border-orange {
  --as-border-color: #ff855a;
}

.border-gray-400 {
  border-color: var(--as-gray-400);
}

.border-grey-500 {
  border-color: var(--as-gray-500);
}

.border-dark {
  border-color: #555555;
}

.border-light {
  --as-border-color: #5f78ff;
}

.border-blue {
  --as-border-color: #5f78ff;
}

.border-gray-500 {
  --as-border-color: #4e4e64;
}

.border-hover-theme:hover {
  border-color: var(--as-theme) !important;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-inherit {
  overflow: inherit;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-nav-style-01 .slick-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: var(--as-gray);
  color: var(--as-black);
  transition: all 0.4s ease;
  font-size: 0;
  cursor: pointer;
  position: relative;
}

.slick-nav-style-01 .slick-arrow:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: -4px;
  right: 0;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  bottom: 0;
  transform: rotate(136deg);
}

.slick-nav-style-01 .slick-arrow.slick-prev:before {
  transform: rotate(-45deg);
  left: 4px;
}

.slick-nav-style-01 .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.slick-nav-style-01 .slick-arrow:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
  background-color: var(--as-gray-light);
}

.slick-nav-style-01.slick-nav-theme-hover .slick-arrow:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
  background-color: var(--as-theme);
  color: var(--as-white);
}

.slick-nav-style-02 .slick-arrow {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--as-white);
  border-radius: 50%;
  transition: all 0.4s ease;
  color: var(--as-white);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
  right: auto;
  z-index: 2;
}

@media (min-width: 1740px) {
  .slick-nav-style-02 .slick-arrow {
    left: -67px;
  }
}

.slick-nav-style-02 .slick-arrow:hover {
  background-color: var(--as-white);
  color: var(--as-black);
}

.slick-nav-style-02 .slick-arrow span {
  display: inline-block;
  width: 23px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  vertical-align: middle;
  margin-left: 3px;
}

.slick-nav-style-02 .slick-arrow span:before,
.slick-nav-style-02 .slick-arrow span:after {
  content: "";
  position: absolute;
  background-color: currentColor;
  right: 2px;
  height: 7px;
  width: 1px;
}

.slick-nav-style-02 .slick-arrow span:after {
  bottom: -1px;
  transform: rotate(-45deg);
}

.slick-nav-style-02 .slick-arrow span:before {
  top: -1px;
  transform: rotate(45deg);
}

.slick-nav-style-02 .slick-arrow.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slick-nav-style-02 .slick-arrow.slick-prev span {
  transform: rotate(180deg);
}

.slick-nav-style-02 .slick-arrow.slick-next {
  left: auto;
  right: 10px;
}

@media (min-width: 1740px) {
  .slick-nav-style-02 .slick-arrow.slick-next {
    right: -67px;
  }
}

.slick-nav-style-03 .slick-arrow {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: -2px 1px 10px #b1b1b1;
  border: 1px solid var(--as-white);
  border-radius: 50%;
  transition: all 0.4s ease;
  color: var(--as-black);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
  right: auto;
  z-index: 2;
}

@media (min-width: 1740px) {
  .slick-nav-style-03 .slick-arrow {
    left: 0px;
  }
}

.slick-nav-style-03 .slick-arrow:hover {
  background-color: var(--as-white);
  color: var(--as-black);
}

.slick-nav-style-03 .slick-arrow span {
  display: inline-block;
  width: 23px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  vertical-align: middle;
  margin-left: 3px;
}

.slick-nav-style-03 .slick-arrow span:before,
.slick-nav-style-03 .slick-arrow span:after {
  content: "";
  position: absolute;
  background-color: currentColor;
  right: 2px;
  height: 7px;
  width: 1px;
}

.slick-nav-style-03 .slick-arrow span:after {
  bottom: -1px;
  transform: rotate(-45deg);
}

.slick-nav-style-03 .slick-arrow span:before {
  top: -1px;
  transform: rotate(45deg);
}

.slick-nav-style-03 .slick-arrow.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slick-nav-style-03 .slick-arrow.slick-prev span {
  transform: rotate(180deg);
}

.slick-nav-style-03 .slick-arrow.slick-next {
  left: auto;
  right: 10px;
}

@media (min-width: 1740px) {
  .slick-nav-style-03 .slick-arrow.slick-next {
    right: 0px;
  }
}

.client_project_slider .slick-list {
  overflow: inherit;
}

.client_project_slider .slick-slide img {
  width: 100%;
}

.odoo_theme_Bigslider .slick-list {
  overflow: inherit;
}

.slick-slider-top-arrow {
  padding-top: 70px;
}

@media (max-width: 767px) {
  .slick-slider-top-arrow {
    padding-top: 50px;
  }
}

.slick-slider-top-arrow .slick-arrow {
  position: absolute;
  top: 0;
}

.slick-slider-top-arrow .slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.slick-slider-top-arrow .slick-arrow.slick-prev {
  left: auto;
  right: 50px;
}

.slick-slider-middle-arrow-02 .slick-arrow {
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  z-index: 5;
}

.slick-slider-middle-arrow-02 .slick-arrow:hover {
  background-color: var(--as-theme);
  color: var(--as-white);
}

.slick-slider-middle-arrow-02 .slick-prev {
  left: 0;
}

.slick-slider-middle-arrow-02 .slick-next {
  right: 0;
}

.slick-slider-overflow .slick-list {
  overflow: inherit;
}

.slick-spacing-30 .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

.slick-spacing-30 .slick-list .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

.slick-flex .slick-track {
  display: flex;
}

.slick-flex .slick-track .slick-slide {
  height: inherit;
}

.slick-flex .slick-track .slick-slide>* {
  height: 100%;
}

.rounded-pill {
  border-radius: 40px;
}

.rounded-lg {
  border-radius: 10px;
}

.rounded {
  border-radius: 50%;
}

.z-1 {
  z-index: 1;
}

.shadow-1 {
  box-shadow: 8px 0 73px rgba(0, 0, 0, 0.1);
}

.shadow-2 {
  box-shadow: 4px 7px 73px 0px #e8eaef;
}

.categories_selection .widget_categories {
  margin: 0;
}

.categories_selection .widget_categories .widget-title {
  display: none;
}

.categories_selection .widget_categories select {
  margin-left: auto;
  display: flex;
  height: 58px;
  width: 354px;
  padding: 15px;
}

@media (max-width: 991px) {
  .categories_selection .widget_categories select {
    width: 330px;
  }
}

.archive .btn-arrow {
  color: var(--as-theme);
}

.blog_newsletter_right_form {
  padding-left: 60px !important;
}

@media (max-width: 991px) {
  .blog_newsletter_right_form {
    padding-left: 0px !important;
  }
}

.blog_newsletter_right_form .widgettitle {
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .blog_newsletter_right_form .widgettitle {
    font-size: 28px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.blog_newsletter_right_form .mailpoet_form_paragraph {
  color: var(--as-white);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 50px;
  margin-top: 10px;
}

.blog_newsletter_right_form .mailpoet_paragraph .mailpoet_text {
  background-color: transparent !important;
  color: var(--as-white);
  border-color: var(--as-white) !important;
  padding: 15px 10px !important;
}

.blog_newsletter_right_form .mailpoet_paragraph .parsley-required,
.blog_newsletter_right_form .mailpoet_paragraph .parsley-custom-error-message {
  color: var(--as-white);
}

.blog_newsletter_right_form .mailpoet_paragraph.last .mailpoet_submit {
  width: 100%;
  border-radius: 0;
  height: 62px;
  font-weight: 600;
  font-size: 20px;
  background-color: var(--as-theme);
  color: var(--as-white);
  border: none;
}

.blog_newsletter_right_form .mailpoet_paragraph.last .mailpoet_submit:hover {
  background-color: var(--as-black);
}

.postconetnt p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.postconetnt a:hover {
  color: var(--as-theme);
}

.eclipse_line2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-small-post {
  display: flex;
  align-items: center;
  padding-bottom: 55px;
}

@media (max-width: 767px) {
  .blog-small-post {
    padding-bottom: 25px;
  }
}

.blog-small-post .blog-small-post-photo {
  flex: 0 0 200px;
  max-width: 200px;
}

@media (max-width: 767px) {
  .blog-small-post .blog-small-post-photo {
    flex: 0 0 120px;
    max-width: 120px;
  }
}

.blog-small-post .blog-small-post-content {
  padding: 0 43px;
  max-width: 355px;
}

.blog-small-post .blog-small-post-content a:hover {
  color: var(--as-theme);
}

@media (max-width: 991px) {
  .blog-small-post .blog-small-post-content {
    padding: 0 0 0 20px;
  }
}

.blog-small-post .post-title {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -1px;
  margin: 0 0 10px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .blog-small-post .post-title {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .blog-small-post .post-title {
    font-size: 16px;
    line-height: 1.5;
  }
}

.blog-small-post .post-title a {
  color: #000;
}

.blog-small-post .datetime-post {
  color: #6a6a6a;
  font-size: 19px;
  line-height: normal;
  letter-spacing: -1px;
}

.social-icon-full {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.social-icon-full li {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  width: 25%;
  min-height: 70px;
}

@media (max-width: 767px) {
  .social-icon-full li {
    min-height: 40px;
  }
}

.social-icon-full li:not(:last-child) {
  border-right: 1px solid #cacaca;
}

.social-icon-full li span {
  font-size: 20px;
  line-height: 32px;
  display: inline-block;
  color: #000;
  font-weight: 600;
  letter-spacing: normal;
  vertical-align: text-top;
  font-family: Montserrat, sans-serif;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .social-icon-full li span {
    display: none;
  }
}

input[type=email].mailpoet_text::-webkit-input-placeholder {
  color: #fff;
}

.blog-detail-wrapper .fix-wrap .blog-detail-sidebar .widget_recent_entries ul {
  margin-top: 20px !important;
}

.contactus-or {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .contactus-or {
    display: none;
  }
}

.contactus-or:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--as-gray-300);
  width: 1px;
}

.contactus-or span {
  background-color: var(--as-white);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.contactus-lets-talk {
  padding-left: 15.6%;
}

@media (max-width: 991px) {
  .contactus-lets-talk {
    padding-left: 0;
    padding-top: 30px;
  }
}

.request-qoute-form {
  padding-right: 16%;
}

@media (max-width: 991px) {
  .request-qoute-form {
    padding-right: 0;
  }
}

span.wpcf7-not-valid-tip {
  font-size: 14px;
  font-family: "Karla", sans-serif;
}

div.wpcf7 {
  margin: 0;
  padding: 0;
}

div.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

div.wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #ff0000;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #398f14;
}

div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
  border: 2px solid #ff0000;
}

div.wpcf7-spam-blocked {
  border: 2px solid #ffa500;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 2px solid #f7e700;
}

.wpcf7-form-control-wrap {
  position: relative;
}

span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 100;
  border: 1px solid #ff0000;
  background: #fff;
  padding: 0.2em 0.8em;
}

span.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

span.wpcf7-list-item-label::before,
span.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-display-none {
  display: none;
}

div.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-image: url("../../images/ajax-loader.gif");
  width: 16px;
  height: 16px;
  border: none;
  padding: 0;
  margin: 0 0 0 4px;
  vertical-align: middle;
}

div.wpcf7 .ajax-loader.is-active {
  visibility: visible;
}

div.wpcf7 div.ajax-error {
  display: none;
}

div.wpcf7 .placeheld {
  color: #888;
}

div.wpcf7 .wpcf7-recaptcha iframe {
  margin-bottom: 0;
}

div.wpcf7 input[type=file] {
  cursor: pointer;
}

div.wpcf7 input[type=file]:disabled {
  cursor: default;
}

div.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.attach-file-input {
  position: relative;
}

.attach-file-input input[type=file],
.attach-file-input .wpcf7-form-control-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  font-size: 14px;
}

.attach-file-input .wpcf7-not-valid-tip {
  position: absolute;
  top: 43px;
}

@media (max-width: 767px) {
  .attach-file-input .wpcf7-not-valid-tip {
    top: 63px;
  }
}

.attach-file-input input[type=file] {
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.attach-file-input .attach-file-content {
  position: relative;
  padding-left: 54px;
}

.attach-file-input .attach-file-content:before {
  content: "";
  width: 54px;
  height: 54px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/attach-file-icon.png) no-repeat center;
  background-size: 27px;
}

.attach-file-input .attach-file-content strong {
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin: 0;
  padding: 0;
}

.attach-file-input .attach-file-content small {
  font-size: 12px;
  display: block;
  line-height: normal;
  color: #848484;
  font-family: "Montserrat", sans-serif;
}

.attach-file-input .attach-file-content br {
  display: none;
}

/*teliphone field change*/
.request-qoute-form-row.country-colmun {
  display: flex;
}

.request-qoute-form-row.country-colmun flag-container {
  display: none;
}

.request-qoute-form-row.country-colmun span.wpcf7-form-control-wrap {
  min-width: 40px;
  max-width: 40px;
  z-index: 1;
  position: relative;
}

.request-qoute-form-row.country-colmun span.wpcf7-form-control-wrap.phonetext-759 {
  display: none;
}

.request-qoute-form-row.country-colmun span.wpcf7-form-control-wrap.PhoneNumber {
  max-width: 100%;
  width: 100%;
  position: static;
  left: 0;
  z-index: 0;
}

.request-qoute-form-row.country-colmun .intl-tel-input.allow-dropdown input {
  padding: 0 0 0 0;
  text-align: center;
  border-right: 0;
  pointer-events: none;
  background: none;
}

.request-qoute-form-row.country-colmun .intl-tel-input.allow-dropdown input:focus {
  background: none;
  box-shadow: none;
}

.contactus-left-form-block .request-qoute-form {
  padding: 40px 0 0;
}

@media (max-width: 991px) {
  .contactus-left-form-block .request-qoute-form {
    padding: 30px 0 0;
  }
}

.contactus-left-form-block .attach-file-input {
  margin-bottom: 40px;
}

.contactus-left-form-block .request-qoute-form-row {
  margin-bottom: 15px;
  position: relative;
}

.contactus-left-form-block .request-qoute-form-row>.ajax-loader {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.contactus-left-form-block .request-qoute-form-row.attach-file-input {
  margin-bottom: 40px;
}

.contactus-left-form-block .request-qoute-form-row.request-qoute-form-btn {
  margin-bottom: 0;
}

.contactus-left-form-block input[type=text],
.contactus-left-form-block input[type=email],
.contactus-left-form-block input[type=tel],
.contactus-left-form-block textarea {
  width: 100%;
  padding: 10px 25px;
  height: 58px;
  border: 1px #000 solid;
  color: var(--as-black);
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.contactus-left-form-block input[type=text]::-webkit-input-placeholder,
.contactus-left-form-block input[type=email]::-webkit-input-placeholder,
.contactus-left-form-block input[type=tel]::-webkit-input-placeholder,
.contactus-left-form-block textarea::-webkit-input-placeholder {
  color: var(--as-black);
}

.contactus-left-form-block input[type=text]::-moz-placeholder,
.contactus-left-form-block input[type=email]::-moz-placeholder,
.contactus-left-form-block input[type=tel]::-moz-placeholder,
.contactus-left-form-block textarea::-moz-placeholder {
  color: var(--as-black);
}

.contactus-left-form-block input[type=text]:-ms-input-placeholder,
.contactus-left-form-block input[type=email]:-ms-input-placeholder,
.contactus-left-form-block input[type=tel]:-ms-input-placeholder,
.contactus-left-form-block textarea:-ms-input-placeholder {
  color: var(--as-black);
}

.contactus-left-form-block input[type=text]:-moz-placeholder,
.contactus-left-form-block input[type=email]:-moz-placeholder,
.contactus-left-form-block input[type=tel]:-moz-placeholder,
.contactus-left-form-block textarea:-moz-placeholder {
  color: var(--as-black);
}

.contactus-left-form-block input[type=text]:focus,
.contactus-left-form-block input[type=email]:focus,
.contactus-left-form-block input[type=tel]:focus,
.contactus-left-form-block textarea:focus {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #f5f5f5;
}

.contactus-left-form-block textarea {
  padding: 15px 25px;
  height: 131px;
  resize: none;
}

.contactus-left-form-block input[type=submit],
.contactus-left-form-block input[type=button] {
  width: 100%;
  border-radius: 0;
  height: 62px;
  font-weight: 600;
  font-size: 20px;
  background-color: var(--as-black);
  color: var(--as-white);
  border: none;
  font-family: "Montserrat", sans-serif;
}

.contactus-left-form-block input[type=submit]:focus,
.contactus-left-form-block input[type=submit]:visited,
.contactus-left-form-block input[type=button]:focus,
.contactus-left-form-block input[type=button]:visited {
  background-color: var(--as-black);
  color: var(--as-white);
}

.contactus-left-form-block input[type=submit]:hover,
.contactus-left-form-block input[type=button]:hover {
  background-color: var(--as-theme);
  color: var(--as-white);
  box-shadow: 0 21px 35px -5px rgba(0, 0, 0, 0.3);
}

.contactus-left-form-block div.wpcf7-response-output {
  margin: 0 0;
  padding: 10px;
  border-width: 1px;
  width: 100%;
  text-align: left;
  line-height: normal;
  font-size: 15px;
}

@media (max-width: 767px) {
  .contactus-left-form-block div.wpcf7-response-output {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .banner-image-sc-ipad {
    background-color: #1536b2;
    background-image: none !important;
  }
}

@media (max-width: 991px) {
  .banner-image-sc-ipad {
    background-position: right;
  }

  .banner-image-sc-ipad h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .single-page-banner-blue {
    background-color: #1536b2;
    background-image: none !important;
  }
}

@media (max-width: 991px) {
  .single-page-banner-blue {
    background-position: center;
  }

  .single-page-banner-blue h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .single-page-banner-black {
    background-color: #000;
    background-image: none !important;
  }
}

@media (max-width: 991px) {
  .single-page-banner-black {
    background-position: center;
  }

  .single-page-banner-black h1 {
    font-size: 40px;
  }
}

.technology-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.technology-row .technology-col {
  flex: 0 0 20%;
  max-width: 20%;
  border-right: 1px solid #65656f;
  margin: 20px 0;
}

.technology-row .technology-col:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .technology-row .technology-col {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .technology-row .technology-col:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 567px) {
  .technology-row .technology-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .technology-row .technology-col:nth-child(4),
  .technology-row .technology-col:nth-child(2) {
    border-right: none;
  }

  .technology-row .technology-col:nth-child(3) {
    border-right: 1px solid #65656f;
  }
}

.technology-row .technology-box {
  text-align: center;
  width: 100%;
}

.blue-box {
  background-color: #273fbe;
  border-color: #273fbe;
  color: #fff;
  width: 100%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all ease-in-out 0.3s;
}

.blue-box:hover {
  background-color: var(--as-theme);
  border-color: var(--as-theme);
}

.blue-box:hover .btn-link.white:hover {
  color: #fff !important;
}

.web-portal-slution {
  background-color: #273fbe;
}

.web-portal-slution .list-style-5 {
  color: var(--as-white);
}

.feature-box-1 {
  background-color: transparent;
  color: var(--as-black);
  transition: all ease-in-out 0.3s;
}

.feature-box-1:hover {
  background-color: #273fbe;
  color: var(--as-white);
}

.feature-box-1:hover .btn-round-arrow.gray {
  background-color: var(--as-white);
}

.feature-box-1:hover .feature-box-ab {
  opacity: 1;
}

.feature-box-1 .btn-round-arrow.gray:hover {
  background-color: transparent;
  border-color: var(--as-red);
}

.feature-box-1 .feature-box-ab {
  background-color: #273fbe;
  color: #fff;
  top: 0;
  padding: 47px 42px;
  opacity: 0;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.as-process-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.as-process-section .process-pr-development-1 .process-div {
  background-color: #e4eaff;
  border-radius: 10px;
  padding: 38px 40px;
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 991px) {
  .as-process-section .process-pr-development-1 .process-div {
    padding: 8px 8px;
  }
}

.as-process-section .process-pr-development-1 .process-div img {
  margin-right: 13px;
}

@media (max-width: 991px) {
  .as-process-section .process-pr-development-1 .process-div img {
    margin-right: 8px;
  }
}

@media (min-width: 992px) {
  .as-process-section .process-pr-development-1 .process-div:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -19px;
    margin: auto;
    border-left: 10px solid #1536b2;
    border-top: 10px solid transparent;
    height: 0px;
    transform: rotate(-136deg);
  }
}

.as-process-section .process-pr-development-1 .col-lg-3:nth-child(8) .process-div:after {
  display: none;
}

.as-process-section .process-pr-development-1 .col-lg-3:nth-child(5) .process-div:after,
.as-process-section .process-pr-development-1 .col-lg-3:nth-child(6) .process-div:after,
.as-process-section .process-pr-development-1 .col-lg-3:nth-child(7) .process-div:after {
  transform: rotate(45deg);
  right: -24px;
}

.as-process-section .process-pr-development-1 .col-lg-3:nth-child(4) .process-div:after {
  transform: rotate(-45deg);
  right: 0;
  left: 0;
  top: auto;
  bottom: -18px;
  width: 0px;
}

.before-gradient-box {
  position: relative;
  margin: 0;
  letter-spacing: -0.7px;
}

.before-gradient-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 304px;
  height: 7px;
  background: #df4c68;
  background: linear-gradient(160deg, #df4c68 36%, #8923e8 55%);
}

@media (max-width: 1023px) {
  .before-gradient-box::before {
    width: 150px;
    height: 5px;
    top: 17px;
  }
}

@media (max-width: 767px) {
  .before-gradient-box::before {
    width: 30px;
    height: 5px;
    top: 11px;
  }
}

.as-breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.as-breadcrumb li {
  margin-right: 8px;
  list-style: none;
  color: var(--as-white);
}

.as-breadcrumb li a {
  color: var(--as-white);
}

.as-breadcrumb li+li:before {
  content: ">";
}

@media (min-width: 768px) {
  .intro-case-study .row .col-sm-4:last-child {
    border-right: 0;
  }

  .intro-case-study .row .col-sm-4 {
    border-right: 1px solid var(--as-black);
  }
}

.process-box:after {
  content: "";
  position: absolute;
  width: 74%;
  left: 38%;
  top: 21%;
  border: 1px dashed rgba(255, 255, 255, 0.4509803922);
}

.process-box:nth-child(4):after {
  content: none;
}

.process-box:nth-child(4) .arrow-icon {
  display: none;
}

.arrow-icon {
  display: inline-flex;
  position: absolute;
  top: 19%;
  left: 70%;
}

@media (max-width: 991px) {
  .process-box:after {
    content: none;
  }

  .process-box .process-number {
    width: 50px;
    min-height: 50px;
  }

  .arrow-icon {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-box:after {
    content: none;
  }

  .process-box .process-number {
    width: 50px;
    min-height: 50px;
  }

  .arrow-icon {
    display: none;
  }
}

.process-box-eight:after {
  content: "";
  position: absolute;
  width: 82%;
  left: 28%;
  top: 23%;
  border: 1px dashed #57696a;
}

.process-box-eight:nth-child(3):after {
  border-radius: 0 200px 200px 0;
  height: 316px;
  border-left: none;
}

.process-box-eight:nth-child(3) .arrow-icon-eight {
  display: inline-flex;
  position: absolute;
  top: 70%;
  left: 108%;
  transform: rotate(90deg);
}

.process-box-eight:nth-child(4) .arrow-icon-eight {
  transform: rotate(180deg);
}

.process-box-eight:nth-child(5) .arrow-icon-eight {
  transform: rotate(180deg);
}

.process-box-eight:nth-child(6):after {
  content: none;
}

.process-box-eight:nth-child(6) .arrow-icon-eight {
  display: none;
}

.arrow-icon-eight {
  display: inline-flex;
  position: absolute;
  top: 20.5%;
  left: 65%;
  z-index: 111;
}

@media (max-width: 1200px) {
  .process-box-eight:nth-child(3):after {
    display: none;
  }

  .process-box-eight:nth-child(3) .arrow-icon-eight {
    display: none;
  }
}

@media (max-width: 991px) {
  .process-box-eight:after {
    content: none;
  }

  .process-box-eight .process-number {
    width: 50px;
    min-height: 50px;
  }

  .process-box-eight:nth-child(3) .arrow-icon-eight {
    display: none;
  }

  .process-box-eight:nth-child(4) {
    order: 6;
  }

  .process-box-eight:nth-child(5) {
    order: 5;
  }

  .process-box-eight:nth-child(6) {
    order: 4;
  }

  .arrow-icon-eight {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .process-box-eight:after {
    content: "";
    position: absolute;
    width: 79%;
    left: 33%;
    top: 21%;
    border: 1px dashed #57696a;
  }

  .arrow-icon-eight {
    top: 19%;
  }
}

@media (max-width: 768px) {
  .process-box-eight:after {
    content: none;
  }
}

@media (max-width: 767px) {
  .process-box-eight:after {
    content: none;
  }

  .process-box-eight .process-number {
    width: 50px;
    min-height: 50px;
  }

  .process-box-eight:nth-child(3) .arrow-icon-eight {
    display: none;
  }

  .process-box-eight:nth-child(4) {
    order: 6;
  }

  .process-box-eight:nth-child(5) {
    order: 5;
  }

  .process-box-eight:nth-child(6) {
    order: 4;
  }

  .arrow-icon-eight {
    display: none;
  }
}

@media only screen and (max-width: 1600px) and (min-width: 1201px) {
  .process-box-eight:after {
    content: "";
    position: absolute;
    width: 81%;
    left: 30%;
    top: 22%;
    border: 1px dashed #57696a;
  }

  .process-box-eight:nth-child(3):after {
    border-radius: 0 200px 200px 0;
    height: 346px;
    border-left: none;
  }

  .process-box-eight:nth-child(3) .arrow-icon-eight {
    display: inline-flex;
    position: absolute;
    top: 70%;
    left: 109%;
    transform: rotate(90deg);
  }

  .process-box-eight:nth-child(4) .arrow-icon-eight {
    transform: rotate(180deg);
  }

  .process-box-eight:nth-child(5) .arrow-icon-eight {
    transform: rotate(180deg);
  }

  .process-box-eight:nth-child(6):after {
    content: none;
  }

  .process-box-eight:nth-child(6) .arrow-icon-eight {
    display: none;
  }

  .arrow-icon-eight {
    display: inline-flex;
    position: absolute;
    top: 19.5%;
    left: 65%;
    z-index: 111;
  }
}

@media (max-width: 991px) {
  .case_studies_slider .font-36 {
    font-size: 15px;
  }
}

@media (max-width: 1260px) {
  .case_studies_slider .font-36 {
    font-size: 15px !important;
  }
}

.three-grid-img .col-lg-3:nth-child(2) {
  max-width: 50%;
  flex: 0 0 50%;
}

@media (max-width: 767px) {
  .three-grid-img .col-lg-3:nth-child(2) {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 15px 0;
  }
}

/* New Team design start */
.cursive-font {
  color: #fff;
  max-width: 623px;
  line-height: normal;
  position: relative;
  padding: 36px 0 0;
  letter-spacing: -0.9px;
  font-family: "Reenie Beanie", cursive;
}

.cursive-font:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 26px;
  background: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/double-quote.png) no-repeat;
  background-size: 100% 100%;
}

.lh-custom-text {
  line-height: -1.5px;
}

.red-quate:after {
  content: "";
  position: absolute;
  left: 65px;
  top: 0;
  width: 36px;
  height: 26px;
  background: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/double-quote.png) no-repeat;
  background-size: 100% 100%;
}

.black-sm-quote:before {
  content: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/q-start.png);
  padding-right: 5px;
}

.black-sm-quote:after {
  content: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/q-end.png);
  padding-left: 5px;
}

.white-sm-quote:before {
  content: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/q-start-white-1.png);
  padding-left: 5px;
}

.white-sm-quote:after {
  content: url(https://www.atharvasystem.com/wp-content/uploads/2023/09/q-end-white-1.png);
  padding-left: 5px;
}

@media (max-width: 767px) {
  .red-quate:after {
    left: 15px;
  }
}

.three-grid-img .col-lg-3:nth-child(2) {
  max-width: 50%;
  flex: 0 0 50%;
}

@media (max-width: 767px) {
  .three-grid-img .col-lg-3:nth-child(2) {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 15px 0;
  }
}

.rated-logo {
  background-color: #fff;
  margin: 0 20px 0 20px;
  width: 90px;
  height: 80px;
  justify-content: center;
  display: flex;
  align-items: center;
  border: 1px solid #c0c0c0;
  border-radius: 10px;
  box-shadow: 0px 14px 13px 0px rgba(2, 2, 2, 0.16);
}

@media (max-width: 991px) {
  .rated-logo {
    margin: 0 10px 0 10px;
  }
}

.rated-logo:hover {
  border: 1px solid var(--as-theme);
}

.wp_estores_sc .estores_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 154px;
  height: 154px;
  border: 1px solid #020202;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
}

.wp_estores_sc .estores_list:hover {
  border: 1px solid #e72e28;
}

.wp_estores_sc .col-lg-2 {
  max-width: 19.666667%;
  flex: 0 0 19.666667%;
}

@media (max-width: 991px) {
  .wp_estores_sc .col-lg-2 {
    max-width: 24%;
    flex: 0 0 24%;
  }
}

@media (max-width: 767px) {
  .wp_estores_sc .col-lg-2 {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

.wp_estores_sc h6 {
  color: #020202;
}

.wp_estores_sc h6:hover {
  color: #e72e28;
}

.web-btn {
  border: 1px solid #2640cc;
  border-radius: 35px;
}

.web-btn:hover {
  background-color: #2640cc;
  color: #fff;
}

.office_address_blocks .office_address_block_items:nth-child(1) {
  border-right: 1px solid var(--as-gray-400);
}

.office_address_blocks .office_address_block_items:nth-child(2) {
  padding-left: 115px;
}

.contactus-left-form-block .request-qoute-form-row p {
  width: 100%;
  margin: 0;
}

@media (max-width: 991px) {
  .office_address_blocks .office_address_block_items:nth-child(2) {
    padding-left: 15px;
  }
}

.dashed-process-border-sc .process-number {
  display: none;
}

@media (max-width: 991px) {
  .dashed-process-border-sc {
    background-image: none !important;
    height: auto !important;
  }

  .dashed-process-border-sc .process-number {
    display: flex;
  }
}

.hover-block {
  overflow: hidden;
  border-radius: 20px;
}

.hover-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%);
  opacity: 0.3;
  pointer-events: none;
  border-radius: 20px;
}

.hover-block .full-img {
  transition: ease-in-out all 0.35s;
  transform: scale(1);
}

.hover-block:hover .full-img {
  transform: scale(1.1);
}

.full-grid-hover:hover p span {
  color: var(--as-theme);
}

.full-grid-hover:hover .btn-arrow-md {
  left: 10px;
  transition: ease-in-out all 0.2s;
}

@media (max-width: 767px) {
  .vector-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .moshocart_bg_none {
    background-color: #82f4f9 !important;
    background-image: none !important;
  }
}

@media (max-width: 991px) {
  .moshocart_logo {
    width: 184px;
  }
}

@media (max-width: 991px) {
  .our_product_logo {
    width: 114px;
  }
}

@media (max-width: 767px) {
  .process-pr-development-1 .process-orders:nth-child(8) {
    order: 5;
  }

  .process-pr-development-1 .process-orders:nth-child(7) {
    order: 6;
  }

  .process-pr-development-1 .process-orders:nth-child(6) {
    order: 7;
  }

  .process-pr-development-1 .process-orders:nth-child(5) {
    order: 8;
  }
}

.industries-section .industries-rows {
  padding-top: 35px;
  padding-bottom: 35px;
}

.industries-section .industries-rows.bg-industries {
  background-color: #212121;
}

.industries-section .industries-rows.bg-industries h3 {
  color: var(--as-white);
}

.industries-section .industries-rows.bg-industries .text-gray-800 {
  color: var(--as-gray-800);
}

.industries-section .industries-rows.industries-top {
  padding-top: 100px;
  margin-top: 65px;
}

.industries-section .industries-rows.industries-bottom {
  padding-bottom: 100px;
}

@media (min-width: 992px) {
  .industries-section .industries-rows:nth-child(odd) .industries-banner img {
    margin-left: auto;
    display: block;
  }
}

.industries-section .industries-rows:nth-child(even) .row {
  flex-direction: row-reverse;
}

@media (min-width: 992px) {
  .industries-section .industries-rows:nth-child(even) .industries-banner img {
    margin-right: auto;
    display: block;
  }

  .industries-section .industries-rows:nth-child(even) .w-custom {
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .technologies-icons-row .col-lg-1-5 {
    flex: 0 0 20%;
  }
}

.technologies-icons-row .ti-box {
  width: 134px;
  position: relative;
}

.technologies-icons-row .ti-box .ti-icon {
  width: 134px;
  height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d0d0;
  transition: ease all 0.35s;
}

.technologies-icons-row .ti-box .ti-icon img {
  transition: ease all 0.35s;
  transform: scale(1);
}

.technologies-icons-row .ti-box h5 {
  color: var(--as-dark);
  text-align: center;
  font-weight: 600;
  font-size: var(--as-base-font);
  margin-top: 27px;
}

.technologies-icons-row .ti-box h5 a {
  color: inherit;
}

.technologies-icons-row .ti-box h5 a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.technologies-icons-row .ti-box:hover .ti-icon {
  border-color: var(--as-theme);
}

.technologies-icons-row .ti-box:hover .ti-icon img {
  transform: scale(0.95);
}

.technologies-icons-row.light .ti-box .ti-icon {
  border-color: #505068;
}

.technologies-icons-row.light .ti-box h5 {
  color: var(--as-white);
}

.technologies-icons-row.light .ti-box:hover .ti-icon {
  border-color: var(--as-theme);
}

.testimonial-achiements .testimon-element-1 {
  top: -14%;
  left: 23%;
}

@media (max-width: 991px) {
  .testimonial-achiements .testimon-element-1 {
    display: none;
  }
}

.testimonial-achiements .testimon-element-2 {
  bottom: -14%;
  right: 23%;
  z-index: 1;
}

@media (max-width: 991px) {
  .testimonial-achiements .testimon-element-2 {
    display: none;
  }
}

@media (max-width: 991px) {
  .testimonial-achiements .testimon-element-3 {
    display: none;
  }
}

.testimonial-achiements .testimon-element-4 {
  bottom: -8%;
  right: 25%;
  z-index: 1;
}

@media (max-width: 991px) {
  .testimonial-achiements .testimon-element-4 {
    display: none;
  }
}

.testimonial-achiements .border-xy {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

@media (max-width: 991px) {
  .testimonial-achiements .border-xy {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 30px 0;
  }
}

.testimonial-achiements.testimon-reverse .testimon-element-1 {
  right: 18%;
  left: auto;
}

.testimonial-achiements.testimon-reverse .testimon-element-2 {
  left: 15%;
  right: auto;
}

.job_list_landing .awsm-job-more-container {
  display: none;
}

.awsm-job-featured-image {
  display: none;
}

.jobs-sidebarlist .awsm-job-specification-wrapper {
  display: none !important;
}

.awsm-grid-item .awsm-job-item {
  box-shadow: none !important;
  border: 1px solid #c0c0c0 !important;
  padding: 25px;
  height: 210px;
  max-height: 210px;
  overflow: hidden;
  position: relative;
}

.awsm-grid-item .awsm-job-item:after {
  content: "→";
  color: var(--as-theme);
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 26px;
  font-size: 28px;
}

.awsm-grid-item .awsm-job-item .awsm-grid-right-col .awsm-job-more-container .awsm-job-more {
  color: #fff;
}

.awsm-grid-item .awsm-job-item .awsm-grid-right-col .awsm-job-more-container .awsm-job-more span {
  color: red;
}

.awsm-grid-item .awsm-job-item .awsm-grid-right-col .awsm-job-more-container .awsm-job-more span:before {
  font-size: 33px;
}

.awsm-grid-item a {
  color: #000;
}

.awsm-grid-item .awsm-job-item:hover,
.awsm-grid-item .awsm-job-item:focus {
  box-shadow: none !important;
}

.awsm-job-item h2.awsm-job-post-title {
  font-size: 23px !important;
}

.awsm-filter-item-search {
  width: 650px;
  height: 60px;
}

.awsm-filter-item-search .awsm-filter-item-search {
  padding-left: 15px;
}

.awsm-filter-item-search .awsm-job-search-icon-wrapper {
  width: 160px;
  height: 60px;
  background-color: var(--as-theme);
  color: #fff;
  font-size: 19px;
  padding: 6px;
}

@media (max-width: 991px) {
  .awsm-filter-item-search .awsm-job-search-icon-wrapper {
    width: 90px;
  }
}

.awsm-filter-wrap {
  position: absolute;
  top: 620px;
  z-index: 1;
}

.awsm-filter-wrap .awsm-filter-item {
  width: 100%;
  max-width: 330px;
  padding: 0px !important;
  margin-left: 10px;
}

.awsm-filter-wrap .awsm-filter-item .awsm-job-form-control {
  padding-left: 15px;
  padding-right: 180px;
}

@media (max-width: 991px) {
  .awsm-filter-wrap .awsm-filter-item .awsm-job-form-control {
    padding-right: 105px;
  }
}

.awsm-job-search {
  height: 60px;
  background-color: transparent;
  border: 1px solid #737373;
  color: #fff;
  padding-left: 15px;
}

@media (max-width: 991px) {
  .awsm-job-search {
    color: #000;
  }
}

.awsm-application-form .awsm-job-form-control {
  border: 0px solid #737373;
}

.awsm-job-search-btn.awsm-job-search-icon-wrapper {
  width: 160px;
  height: 60px;
  background-color: var(--as-theme);
  color: #fff;
  font-size: 19px;
  padding: 6px;
}

.awsm-job-icon-close-circle:before {
  color: #fff;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0px !important;
}

.awsm-row .awsm-load-more-main {
  padding: 0;
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.awsm-load-more-main a.awsm-load-more {
  background-color: var(--as-theme);
  color: #fff;
  font-size: 19px;
  box-shadow: none !important;
  width: 200px;
}

.awsm-job-specification-job-experience .awsm-job-specification-term:before {
  content: "Experience: ";
}

.awsm-job-specification-job-position .awsm-job-specification-term:before {
  content: "Position: ";
}

.awsm-job-specification-term {
  font-size: 19px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .awsm-filter-wrap {
    position: static;
  }

  .awsm-filter-item-search {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .awsm-filter-wrap {
    position: static;
  }
}

@media (max-width: 567px) {
  .awsm-filter-wrap {
    position: static;
  }
}

.innovative-mind-box {
  top: -95px;
}

.innovative-mind-box img {
  top: 40px;
  right: 40px;
}

@media (max-width: 991px) {
  .innovative-mind-box img {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 991px) {
  .innovative-mind-box {
    top: -5px;
    width: 180px !important;
    height: 108px !important;
  }

  .innovative-mind-box h2 {
    font-size: 18px;
  }
}

.as-row-reverse .row:nth-child(3) {
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .as-row-reverse .row:nth-child(3) {
    flex-direction: inherit;
  }
}

.as-row-reverse .row:nth-child(3) .col-lg-6:nth-child(1) {
  text-align: right;
}

.dashboard-filter-tabs ul {
  padding-left: 0;
  margin-top: 20px;
  display: flex;
  justify-content: end;
}

@media (max-width: 767px) {
  .dashboard-filter-tabs ul {
    display: block;
  }
}

.dashboard-filter-tabs ul li {
  display: inline-block;
  margin-left: 15px;
}

.dashboard-filter-tabs ul li button {
  background: transparent;
  border: 0;
}

.dashboard-filter-tabs ul li .is-checked {
  border-bottom: 3px solid var(--as-theme);
}

.poc-app-banner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.poc-app-banner .service-page-title h1 {
  font-size: 76px;
  line-height: 85px;
  font-weight: 800;
}

.poc-app-banner .service-page-title p {
  margin: 22px 0 20px;
}

.poc-app-banner p {
  max-width: 95% !important;
}

.dashboard-filter-tabs .button-group li .button {
  border-bottom-width: 3px !important;
  font-weight: 700;
  font-size: 17px;
}

.dashboard-poc-scn {
  margin-bottom: 0 !important;
}

.dashboard-poc-scn .dashboard-column-items .dashboard-column-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%);
}

.dashboard-poc-scn .dashboard-column-items .dashboard-column-img img {
  border-radius: 22px;
  height: 253px;
  width: 100%;
  object-fit: cover;
}

.dashboard-poc-scn .dashboard-column-items .dashboard-column-img span.subtitle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  border-radius: 50px;
  padding: 2px 20px;
  font-size: 16px;
}

.dashboard-poc-scn .dashboard-column-items .dashboard-column {
  margin-top: 21px;
}

.dashboard-poc-scn .dashboard-column-items .buy-now-tag {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 107px;
  height: 102px;
  border-radius: 0;
  overflow: visible;
  opacity: 1;
  z-index: 1;
}

.dashboard-poc-scn .dashboard-column-items .title {
  margin-top: 45px;
  color: #000;
  font-size: 30px;
  font-weight: 800;
  line-height: 35px;
  margin-bottom: 10px;
}

.dashboard-poc-scn .dashboard-column-items:hover .read-more {
  color: #e63b30 !important;
}

.dashboard-poc-scn .dashboard-column-items:hover .read-more:after {
  right: -6px;
}

.dashboard-poc-scn .dashboard-column-items.grid-item {
  padding: 0 15px !important;
}

.dashboard-poc-scn .read-more:after {
  transition: all ease-in-out 0.35s;
}

.dashboard-poc-scn .dashboard-column-list {
  width: calc(100% + 30px);
  margin-left: -15px !important;
  margin-right: -15px !important;
  margin-top: 20px !important;
}

@media (max-width: 991px) {
  .dashboard-poc-scn .dashboard-column-items .title {
    margin-top: 30px;
  }

  .dashboard-poc-scn .dashboard-column-items .dashboard-column {
    margin-top: 30px;
  }
}

.hover-scale {
  overflow: hidden;
}

.hover-scale .dashboard-column-img img {
  transition: ease-in-out all 0.35s;
  transform: scale(1);
}

.hover-scale:hover .dashboard-column-img img {
  transform: scale(1.1);
}

.hover-scale:hover .dashboard-column-content .dashboard-column-btns a .text-black {
  color: #e72e28;
}

.hover-scale:hover .dashboard-column-content .dashboard-column-btns a .btn-arrow {
  margin-left: 14px;
  transition: ease-in-out all 0.35s;
}

.hover-scale .dashboard-column-content .dashboard-column-btns a .btn-arrow {
  transition: ease-in-out all 0.35s;
}

.price-tag {
  background-color: #333;
  padding: 5px 15px;
  position: absolute;
  z-index: 1;
  top: 50px;
  left: 14px;
  border: 2px solid #fff;
  border-radius: 0 10px 10px 0;
}

.dashboard-column-content {
  min-height: 140px;
}

@media (max-width: 767px) {
  .dashboard-column-content {
    min-height: 100%;
  }
}

.more-dashboard-detail-scn {
  padding: 0 !important;
}

.dashboard-poc-scn .full-anchor,
.pos-emb-transform .full-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.pos-emb-transform {
  padding-top: 90px;
  padding-bottom: 120px;
  background-size: cover;
  background-repeat: no-repeat;
}

.pos-emb-transform .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.pos-emb-transform .pos-list-items {
  width: calc(33.3333333333% - 0px);
  padding: 0 15px;
}

.pos-emb-transform .pos-list-items .pos-box-content {
  border-radius: 10px;
  background-image: -moz-linear-gradient(7deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 55%, rgb(239, 132, 87) 100%);
  background-image: -webkit-linear-gradient(7deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 55%, rgb(239, 132, 87) 100%);
  background-image: -ms-linear-gradient(7deg, rgb(38, 64, 204) 0%, rgb(139, 98, 146) 55%, rgb(239, 132, 87) 100%);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px;
  position: relative;
}

.pos-emb-transform .pos-list-items .pos-box-content h5 {
  color: #fff;
  font-size: 21px;
  font-family: "Montserrat";
  margin-bottom: 0;
}

.pos-emb-transform .section-title {
  margin-bottom: 60px;
}

.pos-emb-transform .section-title .h2 {
  color: #fff;
}

@media (max-width: 767px) {
  .pos-emb-transform .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .pos-emb-transform {
    padding: 60px 0;
  }

  .pos-emb-transform .pos-list-items {
    width: 100%;
    padding: 15px;
  }
}

.casestudies-recents-block.dashboard-column-block .dashboard-gridlist {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.casestudies-recents-block.dashboard-column-block .casestudies-recents-column {
  margin: 2px 2px;
  width: calc(33.3333333333% - 4px);
  padding: 0;
}

@media (max-width: 991px) {
  .casestudies-recents-block.dashboard-column-block .casestudies-recents-column img {
    width: auto !important;
  }
}

.casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content {
  margin: 40px 0 0;
}

.casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content .title {
  min-height: 154px;
}

@media (max-width: 1200px) {
  .casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content .title {
    min-height: 88px;
  }
}

@media (max-width: 991px) {
  .casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content .title {
    min-height: 68px;
  }
}

.casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content .subtitle {
  margin: 0 0 13px;
  letter-spacing: -0.5px;
}

.casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content .full-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content .read-more {
  letter-spacing: -0.5px;
}

@media (max-width: 1200px) {
  .casestudies-recents-block.dashboard-column-block .casestudies-recents-column .casestudies-block-wrapper .casestudies-block-content {
    margin: 10px 0 0;
  }
}

@media (max-width: 767px) {
  .casestudies-recents-block.dashboard-column-block .casestudies-recents-column {
    width: calc(50% - 4px);
  }
}

@media (max-width: 567px) {
  .casestudies-recents-block.dashboard-column-block .casestudies-recents-column {
    width: calc(100% - 4px);
  }
}

.casestudies-recents-block.dashboard-column-block .dashboard-load-more-btn {
  clear: both;
  display: block;
  text-align: center;
  margin-bottom: 0;
  margin-top: 40px;
}

.casestudies-recents-block.dashboard-column-block .dashboard-load-more-btn button {
  padding: 15px 30px;
  color: #fff;
  font-family: "Karla", sans-serif;
  font-size: 30px;
  font-weight: 600;
  background-color: #2a2a2a;
  display: inline-block;
  text-decoration: none !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
}

.casestudies-recents-block.dashboard-column-block .dashboard-load-more-btn button:hover {
  background-color: #e72e28;
}

@media (max-width: 767px) {
  .casestudies-recents-block.dashboard-column-block .dashboard-load-more-btn button {
    padding: 12px 20px;
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .casestudies-recents-block.dashboard-column-block .dashboard-load-more-btn {
    margin-top: 22px;
  }
}

.dashboard-chart-iframe>iframe {
  width: 100% !important;
  padding: 10px !important;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08) !important;
}

.dashboard-chart-iframe .tableauPlaceholder {
  width: 100% !important;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08) !important;
}

.dashboard-chart-iframe .iframe-src-txt {
  display: table;
  margin-right: 0;
  margin-left: auto;
  color: #e9e9e9;
  font-size: 9px;
  font-style: italic;
}

.dashboard-chart-iframe .agricultural-analytics-chart-frame>iframe {
  height: 977px !important;
}

.flex-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .flex-buttons {
    display: block;
  }
}

.flex-buttons .btn-buy-now {
  display: inline-block;
  margin: 0 10px 30px;
  min-width: 240px;
  height: 64px;
  line-height: 64px;
  border-radius: 0;
  padding: 0 10px;
  background: #e62e28;
}

.flex-buttons .btn-enquire {
  border: 2px solid;
  margin: 0 10px 30px;
  font-weight: 600;
  min-width: 240px;
  height: 64px;
  line-height: normal;
  padding: 19px 47px;
  border-image-slice: 1;
  background-color: transparent;
  border-image-source: linear-gradient(to right, #f0537e, #ff8839);
  transition: all ease-in-out 0.35s;
  color: #000 !important;
}

.flex-buttons .btn-enquire:hover {
  color: #fff !important;
  background: linear-gradient(to right, #f0537e, #ff8839);
}

.flex-buttons .btn-enquire:hover .btn-arrow {
  color: white;
}

.as-buy-now-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.as-buy-now-modal .modal-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1rem 1.5rem;
  width: 24rem;
  border-radius: 0.5rem;
  max-height: 80%;
  overflow: auto;
}

.as-buy-now-modal .modal-content .header-title {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .as-buy-now-modal .modal-content {
    width: 100%;
    top: 0;
    bottom: 0;
    padding: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0px, 10px);
  }
}

.as-buy-now-modal .close-button {
  float: right;
  width: 30px;
  height: 30px;
  line-height: 30px !important;
  text-align: center;
  cursor: pointer;
  border-radius: 50px;
  background-color: #F44336;
  color: #fff !important;
}

.as-buy-now-modal .close-button:hover {
  background-color: #F44336;
}

@media (max-width: 767px) {
  .as-buy-now-modal {
    z-index: 1060;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
  }
}

.show-modal {
  opacity: 1;
  z-index: 111;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.wpfs-w-60 {
  max-width: 480px !important;
  margin: 0px auto 15px !important;
}

.wpfs-tooltip {
  z-index: 999999 !important;
}

.wpfs-form-group {
  margin-bottom: 12px;
}

.wpfs-btn-primary {
  background-color: #F44336 !important;
  border-radius: 0 !important;
}

.wpfs-btn-link {
  display: none !important;
}

#stripForm .dashboard-price {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  #stripForm form {
    width: 100% !important;
  }
}

/* Variable */
/*@include breakpoint(sm_desktop) {}*/
/*@include breakpoint(mobile) {}*/
/* Common Style */
.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  width: 100%;
  clear: both;
  float: none;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 1600px) {
  .container {
    max-width: 1100px;
  }
}

.set_bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home_hero_section,
.home-banner-items {
  position: relative;
  overflow: hidden;
}

.as-hero-fallback {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.home-banner-items picture,
.home_hero_section picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-banner-items picture img,
.home_hero_section picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-banner-items picture,
.home_hero_section picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-banner-items picture img,
.home_hero_section picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home_hero_section .container,
.home-banner-items .container {
  position: relative;
  z-index: 1;
}

.btn_default {
  background-color: #e72e28;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  display: inline-block;
  padding: 25px 50px;
  line-height: normal;
  transition: all 0.4s ease;
}

.btn_default:hover,
.btn_default:focus {
  background-color: #d12f2a;
  color: #fff;
}

.btn_default .arrow_right {
  margin-left: 3px;
}

.arrow_right {
  display: inline-block;
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: relative;
  vertical-align: middle;
}

.arrow_right:after {
  content: "";
  position: absolute;
  right: 2px;
  top: -1px;
  height: 7px;
  width: 1px;
  background-color: #fff;
  transform: rotate(45deg);
}

.arrow_right:before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 2px;
  height: 7px;
  width: 1px;
  background-color: #fff;
  transform: rotate(-45deg);
}

/* New Header Style */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  height: 158px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  margin: 0 !important;
}

@media (max-width: 1600px) {
  .page-header {
    height: 118px;
  }
}

@media (max-width: 1023px) {
  .page-header {
    height: 90px;
  }
}

.page-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-header ul li {
  margin: 0;
  padding: 0;
  line-height: 2;
}

@media (max-width: 767px) {
  .page-header ul li {
    line-height: 2;
  }
}

.page-header .container {
  max-width: 1610px;
  display: flex;
  align-items: center;
}

@media (max-width: 1365px) {
  .page-header .container {
    max-width: 1200px;
  }
}

.page-header .site_logo {
  width: 218px;
}

@media (max-width: 1023px) {
  .page-header .site_logo {
    width: 156px;
  }
}

@media (max-width: 767px) {
  .page-header .site_logo {
    width: 168px;
  }
}

.page-header .site_logo .logo1 {
  display: block;
}

.page-header .site_logo .logo2 {
  display: none;
}

.page-header .header_menu_wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.page-header .header_menu_wrapper .border-button.white {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 767px) {
  .page-header .header_menu_wrapper #navigation {
    display: none;
  }
}

.page-header .main-menu {
  display: flex;
}

.page-header .main-menu>.menu-item>a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 0 18px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1199px) {
  .page-header .main-menu>.menu-item>a {
    padding: 0 10px;
  }
}

@media (max-width: 1023px) {
  .page-header .main-menu>.menu-item>a {
    padding: 0 0 0 10px;
    font-size: 12px;
  }
}

.page-header .main-menu>.menu-item>a:hover {
  color: #e72e28;
}

.page-header .main-menu>.menu-item>a:focus,
.page-header .main-menu>.menu-item>a:visited {
  text-decoration: none;
}

.page-header .main-menu>.menu-item.current_page_item>a {
  color: #e72e28;
}

.page-header .main-menu-more {
  display: none;
}

/* Sticky Header CSS */
body.sticky-header .page-header {
  background-color: #fff;
  height: 90px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  body.sticky-header .page-header {
    height: 75px;
  }
}

body.sticky-header .page-header .site_logo .logo1 {
  display: none;
}

body.sticky-header .page-header .site_logo .logo2 {
  display: block;
}

body.sticky-header .page-header .main-menu>.menu-item>a {
  color: #181818;
}

body.sticky-header .page-header .main-menu>.menu-item.current_page_item>a {
  color: #e72e28;
}

body.sticky-header .page-header .more_menu_toggle {
  background-color: #181818;
  width: 60px;
  height: 60px;
}

@media (max-width: 1600px) {
  body.sticky-header .page-header .more_menu_toggle {
    width: 55px;
    height: 55px;
    margin-left: auto;
  }
}

body.sticky-header .page-header .more_menu_toggle span {
  background-color: #e72e28;
}

body.sticky-header .page-header .more_menu_toggle span:after,
body.sticky-header .page-header .more_menu_toggle span:before {
  background-color: #e72e28;
}

body:not(.home) {
  padding-top: 100px;
}

@media (max-width: 767px) {
  body:not(.home) {
    padding-top: 80px;
  }
}

body:not(.home) .page-header {
  background-color: #fff;
  height: 100px;
}

@media (max-width: 767px) {
  body:not(.home) .page-header {
    height: 80px;
  }
}

body:not(.home) .page-header .site_logo .logo1 {
  display: none;
}

body:not(.home) .page-header .site_logo .logo2 {
  display: block;
}

body:not(.home) .page-header .main-menu>.menu-item>a {
  color: #181818;
}

body:not(.home) .page-header .main-menu>.menu-item.current_page_item>a {
  color: #e72e28;
}

body:not(.home) .page-header .more_menu_toggle {
  background-color: #181818;
}

body:not(.home) .page-header .more_menu_toggle span {
  background-color: #e72e28;
}

body:not(.home) .page-header .more_menu_toggle span:after,
body:not(.home) .page-header .more_menu_toggle span:before {
  background-color: #e72e28;
}

body:not(.home).sticky-header .page-header {
  height: 80px;
}

@media (max-width: 767px) {
  body:not(.home).sticky-header .page-header {
    height: 75px;
  }
}

.arrow_right.red {
  background-color: #e72e28;
}

.arrow_right.red:before,
.arrow_right.red:after {
  background-color: #e72e28;
}

.read_more_circle {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px #e72e28 solid;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.more_menu_toggle-wrap {
  min-width: 85px;
}

@media (max-width: 1365px) {
  .more_menu_toggle-wrap {
    min-width: 75px;
  }
}

@media (max-width: 767px) {
  .more_menu_toggle-wrap {
    min-width: 55px;
    display: flex;
    justify-content: center;
  }
}

.more_menu_toggle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

@media (max-width: 1600px) {
  .more_menu_toggle {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .more_menu_toggle {
    margin-left: 0;
    width: 55px;
    height: 55px;
  }
}

.more_menu_toggle span {
  width: 16px;
  height: 3px;
  background-color: #e63b30;
  display: block;
  position: relative;
  border-radius: 6px;
}

.more_menu_toggle span:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #e63b30;
  position: absolute;
  top: -6px;
  left: 0;
  border-radius: 6px;
}

.more_menu_toggle span:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #e63b30;
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 6px;
}

.desktop_navigation {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

@media (max-width: 1279px) {
  .desktop_navigation {
    width: 290px;
    left: inherit;
    right: -290px;
  }
}

.desktop_navigation.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1279px) {
  .desktop_navigation.show {
    right: 0;
  }
}

.desktop_navigation .navigation_rightside {
  background-color: #000000;
  width: 446px;
  height: 100%;
  margin-left: auto;
  padding: 40px 50px;
}

@media (max-width: 1679px) {
  .desktop_navigation .navigation_rightside {
    padding: 30px;
    width: 360px;
  }
}

@media (max-width: 1600px) {
  .desktop_navigation .navigation_rightside {
    width: 310px;
    padding: 20px 30px 30px;
  }
}

@media (max-width: 1365px) {
  .desktop_navigation .navigation_rightside {
    width: 290px;
  }
}

.desktop_navigation .navigation_rightside .lets_connect_wrap .border-button {
  min-width: 230px;
  padding: 19px 10px;
}

@media (max-width: 1600px) {
  .desktop_navigation .navigation_rightside .lets_connect_wrap .border-button {
    min-width: 190px;
    padding: 10px;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .desktop_navigation .navigation_rightside .lets_connect_wrap .border-button {
    min-width: auto;
    padding: 10px 20px;
  }
}

.desktop_navigation .navigation_leftside {
  width: calc(100% - 446px);
  padding: 1.5% 5%;
  overflow: hidden;
  overflow-y: auto;
}

@media (max-width: 1679px) {
  .desktop_navigation .navigation_leftside {
    padding: 1.5% 2% 1.5% 3%;
    width: calc(100% - 360px);
  }
}

@media (max-width: 1600px) {
  .desktop_navigation .navigation_leftside {
    width: calc(100% - 310px);
  }
}

@media (max-width: 1365px) {
  .desktop_navigation .navigation_leftside {
    width: calc(100% - 290px);
    padding: 1.5% 2%;
  }
}

@media (max-width: 1279px) {
  .desktop_navigation .navigation_leftside {
    display: none;
  }
}

.desktop_navigation_close {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e72e28;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1600px) {
  .desktop_navigation_close {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1365px) {
  .desktop_navigation_close {
    width: 50px;
    height: 50px;
  }
}

.desktop_navigation_close span {
  width: 32px;
  height: 2px;
  display: block;
  position: relative;
}

@media (max-width: 1600px) {
  .desktop_navigation_close span {
    width: 28px;
  }
}

@media (max-width: 1365px) {
  .desktop_navigation_close span {
    width: 25px;
  }
}

.desktop_navigation_close span:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-radius: 5px;
}

.desktop_navigation_close span:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
  border-radius: 5px;
}

.navigation_menu {
  padding: 50px 0 35px;
}

@media (max-width: 1679px) {
  .navigation_menu {
    padding: 30px 0 25px;
  }
}

@media (max-width: 1600px) {
  .navigation_menu {
    padding: 25px 0 20px;
  }
}

@media (max-width: 1279px) {
  .navigation_menu {
    display: none;
  }
}

.navigation_menu ul li {
  margin-bottom: 15px;
}

@media (max-width: 1679px) {
  .navigation_menu ul li {
    margin-bottom: 12px;
  }
}

@media (max-width: 1600px) {
  .navigation_menu ul li {
    margin-bottom: 10px;
  }
}

@media (max-width: 1365px) {
  .navigation_menu ul li {
    margin-bottom: 8px;
  }
}

.navigation_menu ul li a.active {
  color: #e72e28;
}

.navigation_menu ul li a.active:before {
  opacity: 1;
  visibility: visible;
  width: 36px;
  left: -75px;
}

@media (max-width: 1679px) {
  .navigation_menu ul li a.active:before {
    width: 26px;
    left: -45px;
  }
}

.navigation_menu ul li a {
  color: #fff;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: normal;
  position: relative;
}

@media (max-width: 1600px) {
  .navigation_menu ul li a {
    font-size: 24px;
  }
}

@media (max-width: 1365px) {
  .navigation_menu ul li a {
    font-size: 22px;
  }
}

.navigation_menu ul li a:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 7px;
  width: 10px;
  background-color: #e72e28;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1279px) {
  .navigation_menu ul li a:before {
    display: none;
  }
}

.navigation_menu ul li a:hover {
  color: #e72e28;
}

.menu-mobile-menu-container {
  display: none;
}

@media (max-width: 1279px) {
  .menu-mobile-menu-container {
    display: block;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.menu-mobile-menu-container ul a {
  color: #fff;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: normal;
}

.social_media_icons {
  margin-top: 60px;
}

@media (max-width: 1679px) {
  .social_media_icons {
    margin-top: 35px;
  }
}

@media (max-width: 1199px) {
  .social_media_icons {
    margin-top: 30px;
  }
}

.social_media_icons ul {
  display: flex;
}

.social_media_icons ul li:not(:last-child) {
  margin-right: 10px;
}

.social_media_icons ul a {
  width: 52px;
  height: 52px;
  border: 2px #675e5e solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

@media (max-width: 1600px) {
  .social_media_icons ul a {
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .social_media_icons ul a {
    border-radius: 6px;
    width: 50px;
    height: 50px;
  }
}

.social_media_icons ul a:hover {
  background-color: #383333;
  border-color: #383333;
}

.social_media_icons ul a img {
  width: 30px;
}

.navigation_leftside .service_menu_wrpper {
  display: flex;
  flex-flow: wrap;
}

.navigation_leftside .title {
  color: #000;
  font-weight: 800;
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  display: block;
  margin: 0 0 30px;
}

@media (max-width: 1600px) {
  .navigation_leftside .title {
    line-height: normal;
    font-size: 32px;
    margin: 0 0 15px;
  }
}

@media (max-width: 1199px) {
  .navigation_leftside .title {
    line-height: normal;
    font-size: 28px;
    margin: 0 0 10px;
  }
}

.navigation_leftside .menu_left_grid {
  display: flex;
  flex-flow: wrap;
  width: 45%;
}

.navigation_leftside .menu_left_grid .menu_item_block {
  width: 50%;
  padding-right: 10px;
}

.navigation_leftside .menu_right_grid {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  width: 55%;
}

.navigation_leftside .menu_right_grid .menu_item_block {
  width: 37%;
  padding-right: 10px;
}

@media (max-width: 1679px) {
  .navigation_leftside .menu_right_grid .menu_item_block {
    width: 35%;
  }
}

.navigation_leftside .menu_right_grid .menu_item_block:nth-child(3n) {
  margin-left: auto;
  width: auto;
  max-width: 33.3333333333%;
}

@media (max-width: 1715px) {
  .navigation_leftside .menu_right_grid .menu_item_block:nth-child(3n) {
    max-width: calc(33.3333333333% - 45px);
  }
}

@media (max-width: 1679px) {
  .navigation_leftside .menu_right_grid .menu_item_block:nth-child(3n) {
    max-width: 33.3333333333%;
  }
}

.navigation_leftside .menu_right_grid .contact_stamp {
  margin-left: 0;
}

@media (max-width: 1750px) {
  .navigation_leftside .menu_right_grid .contact_stamp {
    justify-content: space-between;
  }
}

@media (max-width: 1679px) {
  .navigation_leftside .menu_right_grid .contact_stamp {
    width: 100%;
    max-width: 100%;
    justify-content: space-evenly;
  }
}

@media (max-width: 1679px) {
  .navigation_leftside .menu_right_grid .contact_stamp a {
    font-size: 20px;
  }
}

@media (max-width: 1600px) {
  .navigation_leftside .menu_right_grid .contact_stamp a {
    font-size: 18px;
  }
}

@media (max-width: 1365px) {
  .navigation_leftside .menu_right_grid .contact_stamp a {
    font-size: 17px;
  }
}

@media (max-width: 1750px) {
  .navigation_leftside .menu_right_grid .contact_stamp a:first-child {
    min-width: inherit;
  }
}

@media (max-width: 1679px) {
  .navigation_leftside .menu_right_grid .contact_stamp a:first-child {
    min-width: 245px;
  }
}

@media (max-width: 1470px) {
  .navigation_leftside .menu_right_grid .contact_stamp a:first-child {
    min-width: inherit;
  }
}

.menu_item_block {
  margin-bottom: 20px;
}

.menu_item_block .sub-title {
  color: #000;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-bottom: 20px;
  display: block;
  margin-bottom: 15px;
}

@media (max-width: 1600px) {
  .menu_item_block .sub-title {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1399px) {
  .menu_item_block .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.menu_item_block .sub-title:before {
  content: "";
  height: 3px;
  width: 37px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #e72e28;
}

.menu_item_block ul li {
  margin-bottom: 5px;
  display: block;
  line-height: normal;
}

@media (max-width: 1365px) {
  .menu_item_block ul li {
    margin-bottom: 3px;
  }
}

.menu_item_block ul li a {
  color: #4a4a4a;
  font-size: 15px;
  line-height: normal;
  display: inline-block;
}

@media (max-width: 1600px) {
  .menu_item_block ul li a {
    font-size: 14px;
    letter-spacing: -0.2px;
  }
}

@media (max-width: 1365px) {
  .menu_item_block ul li a {
    font-size: 13px;
  }
}

.menu_item_block ul li a:hover {
  color: #e72e28;
}

.contact_stamp {
  border: 2px #675e5e solid;
  background-color: #f8f8f8;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  max-width: 667px;
  margin-left: auto;
}

@media (max-width: 1679px) {
  .contact_stamp {
    height: 70px;
    padding: 0 5px;
    width: auto;
    max-width: fit-content;
  }
}

.contact_stamp a {
  color: #000;
  font-size: 19px;
  font-weight: 700;
  display: inline-block;
  min-width: 245px;
}

@media (max-width: 1715px) {
  .contact_stamp a {
    min-width: 221px;
  }
}

@media (max-width: 1679px) {
  .contact_stamp a {
    font-size: 19px;
    min-width: auto;
    min-width: 245px;
  }
}

.contact_stamp a:not(:last-child) {
  margin-right: 10px;
}

.contact_stamp a img {
  max-width: 40px;
  margin-right: 12px;
}

@media (max-width: 1762px) {
  .contact_stamp a img {
    max-width: 34px;
  }
}

@media (max-width: 1679px) {
  .contact_stamp a img {
    max-width: 30px;
    margin-right: 5px;
  }
}

#solutions_menu .contact_stamp,
#healthcare_menu .contact_stamp {
  margin-left: auto;
}

.solutions_menu_grid {
  margin: 0 -15px 40px;
  display: flex;
  flex-flow: wrap;
}

@media (max-width: 1600px) {
  .solutions_menu_grid {
    margin: 0 -15px 20px;
  }
}

.solutions_menu_grid .solutions_menu_item {
  width: calc(25% - 30px);
  margin: 0 15px 30px;
  background-color: #f6f6f6;
  padding: 35px;
  transition: all 0.4s ease;
}

@media (max-width: 1679px) {
  .solutions_menu_grid .solutions_menu_item {
    padding: 20px;
  }
}

.solutions_menu_grid .solutions_menu_item:hover {
  background-color: #e72e28;
}

.solutions_menu_grid .solutions_menu_item:hover .sub-title,
.solutions_menu_grid .solutions_menu_item:hover p {
  color: #fff;
}

.solutions_menu_grid .solutions_menu_item:hover .read_more_circle {
  background-color: #fff;
  border-color: #fff;
}

.solutions_menu_grid .solutions_menu_item:hover .read_more_circle .arrow_right.red {
  background-color: #e72e28;
}

.solutions_menu_grid .solutions_menu_item:hover .read_more_circle .arrow_right.red:after,
.solutions_menu_grid .solutions_menu_item:hover .read_more_circle .arrow_right.red:before {
  background-color: #e72e28;
}

.solutions_menu_grid .solutions_menu_item .sub-title {
  font-size: 32px;
  color: #000;
  font-family: var(--as-font-alt);
  font-weight: 700;
  margin: 0 0 5px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1399px) {
  .solutions_menu_grid .solutions_menu_item .sub-title {
    font-size: 28px;
  }
}

.solutions_menu_grid .solutions_menu_item p {
  padding: 0;
  margin: 0 0 15px;
  min-height: 56px;
  color: #000;
}

@media (max-width: 1679px) {
  .solutions_menu_grid .solutions_menu_item p {
    font-size: 16px;
  }
}

@media (max-width: 1600px) {
  .solutions_menu_grid .solutions_menu_item p {
    min-height: 40px;
  }
}

.technologies_menu_row .sub-title {
  color: #000;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-bottom: 20px;
  display: block;
  margin-bottom: 15px;
}

.technologies_menu_row .sub-title:before {
  content: "";
  height: 3px;
  width: 37px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #e72e28;
}

.technologies_menu_row {
  margin-bottom: 25px;
}

.technologies_menu_grid {
  display: flex;
  flex-flow: wrap;
  margin: 0;
}

.technologies_menu_grid .technologies_menu_item {
  width: 70px;
  margin: 0 20px 15px 0;
}

@media (max-width: 1679px) {
  .technologies_menu_grid .technologies_menu_item {
    margin: 0 14px 15px 0;
  }
}

@media (max-width: 1600px) {
  .technologies_menu_grid .technologies_menu_item {
    margin: 0 10px 15px 0;
    width: 60px;
  }
}

.technologies_menu_grid .technologies_menu_item .tech_logo {
  width: 100%;
  height: 70px;
  background-color: #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1600px) {
  .technologies_menu_grid .technologies_menu_item .tech_logo {
    height: 60px;
  }
}

.technologies_menu_grid .technologies_menu_item img {
  max-width: 35px;
  max-height: 35px;
  width: auto;
  object-fit: contain;
}

.technologies_menu_grid .technologies_menu_item span {
  display: block;
  color: #000;
  line-height: 18px;
  font-size: 15px;
  margin-top: 3px;
}

@media (max-width: 1600px) {
  .technologies_menu_grid .technologies_menu_item span {
    line-height: 16px;
    font-size: 13px;
    letter-spacing: -0.3px;
  }
}

.technologies_menu_leftside {
  width: 55%;
  padding-right: 30px;
}

@media (max-width: 1365px) {
  .technologies_menu_leftside {
    padding-right: 10px;
    width: 52%;
  }
}

.technologies_menu_rightside {
  width: 45%;
  padding-left: 10px;
  display: flex;
  flex-flow: wrap;
}

@media (max-width: 1365px) {
  .technologies_menu_rightside {
    width: 48%;
  }
}

.technologies_menu_rightside .technologies_menu_row {
  margin-bottom: 10px;
}

.technologies_menu_rightside .technologies_menu_grid .technologies_menu_item {
  margin-bottom: 10px;
}

.healthcare_menu_grid {
  display: flex;
  flex-flow: wrap;
  margin: 0 -15px 40px;
}

.healthcare_menu_grid .healthcare_menu_item {
  width: calc(25% - 30px);
  margin: 0 15px 30px;
  position: relative;
  overflow: hidden;
}

.healthcare_menu_grid .healthcare_menu_item:hover img {
  transform: scale(1.1);
}

.healthcare_menu_grid .healthcare_menu_item a {
  display: block;
  position: relative;
}

.healthcare_menu_grid .healthcare_menu_item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.healthcare_menu_grid .healthcare_menu_item img {
  width: 100%;
  transition: all 0.4s ease;
}

.healthcare_menu_grid .healthcare_menu_item .caption {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  z-index: 2;
  padding: 25px;
  line-height: 34px;
  display: block;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1679px) {
  .healthcare_menu_grid .healthcare_menu_item .caption {
    font-size: 26px;
  }
}

.healthcare_menu_grid .healthcare_menu_item.meny_more {
  background-color: #e72e28;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.healthcare_menu_grid .healthcare_menu_item.meny_more strong {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  z-index: 2;
  line-height: 34px;
  display: block;
}

@media (max-width: 1679px) {
  .healthcare_menu_grid .healthcare_menu_item.meny_more strong {
    font-size: 26px;
  }
}

.healthcare_menu_grid .healthcare_menu_item.meny_more .subtext {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  display: block;
  max-width: 200px;
  text-align: center;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.8px;
  margin: 15px 0 20px;
  padding: 0 20px;
}

.healthcare_menu_grid .healthcare_menu_item.meny_more .read_more_circle {
  display: flex;
  background-color: #fff;
}

.healthcare_menu_grid .healthcare_menu_item.meny_more .read_more_circle .arrow_right {
  background-color: #e72e28;
}

.healthcare_menu_grid .healthcare_menu_item.meny_more .read_more_circle .arrow_right:before,
.healthcare_menu_grid .healthcare_menu_item.meny_more .read_more_circle .arrow_right:after {
  background-color: #e72e28;
}

.healthcare_menu_grid .healthcare_menu_item.meny_more .read_more_circle:before {
  display: none;
}

.casestudies_grid_wrapper {
  margin-left: -12px;
  margin-right: -12px;
}

.casestudies_grid_wrapper:not(.slick-slider) {
  display: flex;
}

.casestudies_grid_wrapper:not(.slick-slider)>div {
  width: calc(33.3333333333% - 24px);
  margin: 0 12px;
}

.casestudies_grid_wrapper:not(.slick-slider)>div:nth-child(n+4) {
  display: none;
}

.casestudies_grid_wrapper.slick-slider .slick-slide {
  padding: 0 12px;
}

.casestudies_grid_wrapper.slick-slider .slick-arrow {
  position: absolute;
  right: 55px;
  bottom: -80px;
}

.casestudies_grid_wrapper.slick-slider .slick-arrow.slick-next {
  right: 10px;
}

.slick-slider .slick-arrow {
  padding: 0;
}

.slick-slider.slider_arrow_style .slick-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: #f5f5f5;
  transition: all 0.4s ease;
  font-size: 0;
  cursor: pointer;
}

.slick-slider.slider_arrow_style .slick-arrow:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
  background-color: #f7f7f7;
}

.slick-slider.slider_arrow_style .slick-arrow:after {
  content: "";
  width: 7px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -6px;
  margin: auto;
  transform: rotate(45deg);
}

.slick-slider.slider_arrow_style .slick-arrow:before {
  content: "";
  width: 1px;
  height: 7px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3px;
  margin: auto;
  transform: rotate(45deg);
}

.slick-slider.slider_arrow_style .slick-arrow.slick-next:after {
  transform: rotate(-45deg);
}

.slick-slider.slider_arrow_style .slick-arrow.slick-next:before {
  transform: rotate(135deg);
}

.casestudies_item {
  background-color: #000;
}

.casestudies_item .casestudies_photo {
  width: 100%;
}

.casestudies_item .casestudies_photo img {
  width: 100%;
}

.casestudies_item .casestudies_details {
  padding: 30px 35px;
  position: relative;
}

@media (max-width: 1679px) {
  .casestudies_item .casestudies_details {
    padding: 20px 25px;
  }
}

.casestudies_item .casestudies_details:before {
  content: "";
  background-color: #e72e28;
  width: 130px;
  height: 7px;
  position: absolute;
  left: -8px;
  top: -3px;
}

.casestudies_item .casestudies_details .read_more {
  position: absolute;
  bottom: 54px;
  right: 40px;
  display: block;
  line-height: normal;
}

@media (max-width: 1600px) {
  .casestudies_item .casestudies_details .read_more {
    bottom: 44px;
  }
}

.casestudies_item .casestudies_details .read_more:hover .arrow_right {
  background-color: #e72e28;
}

.casestudies_item .casestudies_details .read_more:hover .arrow_right:before,
.casestudies_item .casestudies_details .read_more:hover .arrow_right:after {
  background-color: #e72e28;
}

.casestudies_item .sub-title {
  font-size: 22px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0 0 15px;
  clear: both;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1365px) {
  .casestudies_item .sub-title {
    font-size: 18px;
    line-height: 28px;
  }
}

.casestudies_item .sub-title a {
  font-size: 22px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1365px) {
  .casestudies_item .sub-title a {
    font-size: 18px;
    line-height: 28px;
  }
}

.casestudies_item ul {
  max-width: calc(100% - 30px);
}

.casestudies_item ul li {
  color: #969696;
  font-size: 15px;
  line-height: normal;
  display: block;
  margin-bottom: 5px;
}

.casestudies_view_all {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 32px 0 100px;
}

@media (max-width: 1679px) {
  .casestudies_view_all {
    margin: 32px 0 60px;
  }
}

.casestudies_view_all a {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  color: #e72e28;
}

@media (max-width: 1365px) {
  .casestudies_view_all a {
    font-size: 24px;
  }
}

.casestudies_view_all a:hover {
  color: #000;
}

.casestudies_view_all a .read_more_circle {
  margin-right: 18px;
}

.hire_resources_menu-left {
  width: 35%;
  position: relative;
  display: flex;
  flex-flow: wrap;
  align-self: flex-start;
}

.hire_resources_menu-left:before {
  content: "";
  height: 7px;
  width: 60px;
  background-color: #e72e28;
  position: absolute;
  left: 0;
  top: 0;
}

.hire_resources_menu-right {
  width: 65%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 500px;
  padding: 55px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 60px;
}

.hire_resources_col {
  width: 50%;
  padding: 50px 35px 0 0;
}

.hire_resources_col .sub-title {
  font-size: 50px;
  color: #e72e28;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1600px) {
  .hire_resources_col .sub-title {
    font-size: 40px;
  }
}

.hire_resources_col strong {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
  display: block;
  max-width: 90%;
}

.hire_resources_says {
  max-width: 80%;
}

@media (max-width: 1600px) {
  .hire_resources_says {
    max-width: 100%;
  }
}

.hire_resources_says strong {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
  display: block;
}

.hire_resources_says p {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  line-height: normal;
  display: block;
  margin: 15px 0 20px;
}

@media (max-width: 1600px) {
  .hire_resources_says p {
    font-size: 28px;
  }
}

.hire_resources_says .read_more_circle {
  border-color: #fff;
  border-width: 2px;
}

.shape_future_left {
  background-color: #f6f6f6;
  width: 35%;
  padding: 40px 40px 55px;
  align-self: flex-start;
}

@media (max-width: 1600px) {
  .shape_future_left {
    padding: 30px 25px 35px;
  }
}

.shape_future_left .sub-title {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
  display: block;
  position: relative;
  margin: 0 0 30px;
}

@media (max-width: 1600px) {
  .shape_future_left .sub-title {
    font-size: 24px;
  }
}

.shape_future_left .sub-title:before {
  content: "";
  width: 7px;
  height: 90%;
  background-color: #e72e28;
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 1600px) {
  .shape_future_left .sub-title:before {
    left: -25px;
  }
}

.shape_future_left ul {
  padding-bottom: 50px;
}

@media (max-width: 1399px) {
  .shape_future_left ul {
    padding-bottom: 27px;
  }
}

.shape_future_left ul li {
  font-size: 17px;
  color: #757575;
  font-weight: 600;
  line-height: normal;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 10px;
}

@media (max-width: 1399px) {
  .shape_future_left ul li {
    margin: 0 0 5px;
  }
}

.shape_future_left ul li a {
  font-size: 15px;
  color: #757575;
  font-weight: normal;
  line-height: normal;
  font-family: Karla, sans-serif;
}

.shape_future_left ul li a:hover {
  color: #e72e28;
}

.current_opening {
  width: 65%;
  padding-left: 60px;
}

@media (max-width: 1600px) {
  .current_opening {
    padding-left: 40px;
  }
}

.current_opening .sub-title {
  color: #000;
  font-size: 16px;
  line-height: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 20px;
}

.current_opening .sub-title:after {
  content: "";
  height: 3px;
  width: 37px;
  background-color: #e72e28;
  position: absolute;
  left: 0;
  bottom: 0;
}

.current_opening .view_more_block {
  margin-top: 20px;
  width: 100%;
  display: flex;
}

.current_opening .view_more_block .view_more {
  margin-left: auto;
  color: #e72e28;
}

.view_more {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  color: #e72e28;
}

@media (max-width: 1600px) {
  .view_more {
    font-size: 28px;
  }
}

@media (max-width: 1365px) {
  .view_more {
    font-size: 24px;
  }
}

.view_more .read_more_circle {
  margin-right: 18px;
}

@media (max-width: 1600px) {
  .view_more .read_more_circle {
    margin-right: 15px;
  }
}

.view_more:hover {
  color: #000;
}

.current_opening_grid {
  display: flex;
  flex-flow: wrap;
  margin: 0 -12px;
}

.current_opening_grid .current_opening_col {
  width: calc(50% - 24px);
  margin: 12px;
  border: 1px #cacaca solid;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
}

@media (max-width: 1600px) {
  .current_opening_grid .current_opening_col {
    padding: 25px;
  }
}

@media (max-width: 1365px) {
  .current_opening_grid .current_opening_col {
    padding: 20px;
  }
}

.current_opening_grid .current_opening_col:hover {
  border-color: #f9f9f9;
  background-color: #f9f9f9;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.current_opening_grid .current_opening_col .sub-title-text {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1600px) {
  .current_opening_grid .current_opening_col .sub-title-text {
    font-size: 18px;
  }
}

.current_opening_grid .current_opening_col .read_more {
  color: #6e6e6e;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.current_opening_grid .current_opening_col .read_more:hover {
  color: #e72e28;
}

.current_opening_grid .current_opening_col .read_more .arrow_right {
  margin-left: 6px;
}

.current_opening_grid .current_opening_col .current_opening_col_link {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.recent_blogs-category {
  width: 25%;
  padding-bottom: 35px;
}

.recent_blogs-category ul {
  padding-bottom: 0;
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
}

.recent_blogs {
  width: 100%;
  padding-left: 0;
}

.recent_blogs .sub-title {
  margin-bottom: 30px;
}

.recent_blogs .view_more_block {
  margin-top: 35px;
}

.recent_blogs .view_more_block .view_more {
  margin: auto;
  color: #e72e28;
}

.recent_blogs_grid {
  margin-left: -12px;
  margin-right: -12px;
}

.recent_blogs_grid:not(.slick-slider) {
  display: flex;
}

.recent_blogs_grid:not(.slick-slider)>div {
  width: calc(33.3333333333% - 24px);
  margin: 0 12px;
}

.recent_blogs_grid:not(.slick-slider)>div:nth-child(n+4) {
  display: none;
}

.recent_blogs_grid.slick-slider .slick-track {
  display: flex;
}

.recent_blogs_grid.slick-slider .slick-slide {
  padding: 0 12px;
  height: inherit;
}

.recent_blogs_grid.slick-slider .slick-arrow {
  position: absolute;
  right: 55px;
  bottom: -80px;
}

.recent_blogs_grid.slick-slider .slick-arrow.slick-next {
  right: 10px;
}

.recent_blog-col {
  border: 1px #cacaca solid;
  width: 100%;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.recent_blog-col:hover {
  border-color: #e72e28;
}

.recent_blog-col .recent_blog-img img {
  width: 100%;
  max-height: 186px;
  object-fit: cover;
}

.recent_blog-col .recent_blog-info {
  padding: 30px;
}

@media (max-width: 1679px) {
  .recent_blog-col .recent_blog-info {
    padding: 15px 15px 25px;
  }
}

.recent_blog-col .recent_blog-info .blog-title-text {
  font-size: 19px;
  font-weight: 700;
  line-height: normal;
  display: block;
  color: #000;
  font-family: "Montserrat", sans-serif;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent_blog-col .recent_blog-info .blog-title-text a {
  font-size: 19px;
  font-weight: 700;
  line-height: normal;
  display: block;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.recent_blog-col .recent_blog-info .blog-title-text a:hover {
  color: #e72e28;
}

@media (max-width: 1679px) {
  .recent_blog-col .recent_blog-info .blog-title-text a {
    font-size: 18px;
  }
}

.recent_blog-col .recent_blog-info .recent_blog-tag {
  color: #6a6a6a;
  font-size: 15px;
  font-weight: normal;
  display: block;
  letter-spacing: 0;
  width: calc(100% - 50px);
  min-height: 40px;
}

.recent_blog-col .recent_blog-info .recent_blog-tag a {
  color: #6a6a6a;
}

.recent_blog-col .recent_blog-info .read_more_circle {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

@media (max-width: 1679px) {
  .recent_blog-col .recent_blog-info .read_more_circle {
    right: 10px;
    bottom: 16px;
    width: 45px;
    height: 45px;
  }
}

.open_main_menu {
  overflow: hidden;
}

@media (max-width: 1279px) {
  .open_main_menu .more_menu_toggle-wrap:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.site-header.featured-image {
  /* Hide overflow for overflowing featured image */
  overflow: hidden;
  /* Need relative positioning to properly align layers. */
  position: relative;
  /* Add text shadow to text, to increase readability. */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  /* Set white text color when featured image is set. */
  /* add focus state to social media icons */
  /* Entry header */
  /* Custom Logo Link */
  /* Make sure important elements are above pseudo elements used for effects. */
  /* Set up image filter layer positioning */
  /* Background & Effects */
  /* Shared background settings between pseudo elements. */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* The intensity of each blend mode is controlled via layer opacity. */
  /* Second layer: screen. */
  /* Third layer: multiply. */
  /* When image filters are inactive, a black overlay is added. */
  /* Fourth layer: overlay. */
  /* Fifth layer: readability overlay */
}

.site-header.featured-image .site-branding .site-title,
.site-header.featured-image .site-branding .site-description,
.site-header.featured-image .main-navigation a:after,
.site-header.featured-image .main-navigation .main-menu>li.menu-item-has-children:after,
.site-header.featured-image .main-navigation li,
.site-header.featured-image .social-navigation li,
.site-header.featured-image .entry-meta,
.site-header.featured-image .entry-title {
  color: #fff;
}

.site-header.featured-image .main-navigation a,
.site-header.featured-image .main-navigation a+svg,
.site-header.featured-image .social-navigation a,
.site-header.featured-image .site-title a,
.site-header.featured-image .site-featured-image a {
  color: #fff;
  transition: opacity 110ms ease-in-out;
}

.site-header.featured-image .main-navigation a:hover,
.site-header.featured-image .main-navigation a:active,
.site-header.featured-image .main-navigation a:hover+svg,
.site-header.featured-image .main-navigation a:active+svg,
.site-header.featured-image .main-navigation a+svg:hover,
.site-header.featured-image .main-navigation a+svg:active,
.site-header.featured-image .main-navigation a+svg:hover+svg,
.site-header.featured-image .main-navigation a+svg:active+svg,
.site-header.featured-image .social-navigation a:hover,
.site-header.featured-image .social-navigation a:active,
.site-header.featured-image .social-navigation a:hover+svg,
.site-header.featured-image .social-navigation a:active+svg,
.site-header.featured-image .site-title a:hover,
.site-header.featured-image .site-title a:active,
.site-header.featured-image .site-title a:hover+svg,
.site-header.featured-image .site-title a:active+svg,
.site-header.featured-image .site-featured-image a:hover,
.site-header.featured-image .site-featured-image a:active,
.site-header.featured-image .site-featured-image a:hover+svg,
.site-header.featured-image .site-featured-image a:active+svg {
  color: #fff;
  opacity: 0.6;
}

.site-header.featured-image .main-navigation a:focus,
.site-header.featured-image .main-navigation a:focus+svg,
.site-header.featured-image .main-navigation a+svg:focus,
.site-header.featured-image .main-navigation a+svg:focus+svg,
.site-header.featured-image .social-navigation a:focus,
.site-header.featured-image .social-navigation a:focus+svg,
.site-header.featured-image .site-title a:focus,
.site-header.featured-image .site-title a:focus+svg,
.site-header.featured-image .site-featured-image a:focus,
.site-header.featured-image .site-featured-image a:focus+svg {
  color: #fff;
}

.site-header.featured-image .main-navigation .sub-menu a {
  opacity: inherit;
}

.site-header.featured-image .social-navigation a:focus {
  color: #fff;
  opacity: 1;
  border-bottom: 1px solid #fff;
}

.site-header.featured-image .social-navigation svg,
.site-header.featured-image .site-featured-image svg {
  /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.site-header.featured-image .site-featured-image {
  /* First layer: grayscale. */
}

.site-header.featured-image .site-featured-image .post-thumbnail img {
  height: auto;
  left: 50%;
  max-width: 1000%;
  min-height: 100%;
  min-width: 100vw;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  z-index: 1;
  /* When image filters are active, make it grayscale to colorize it blue. */
}

@supports (object-fit: cover) {
  .site-header.featured-image .site-featured-image .post-thumbnail img {
    height: 100%;
    left: 0;
    object-fit: cover;
    top: 0;
    transform: none;
    width: 100%;
  }
}

.image-filters-enabled .site-header.featured-image .site-featured-image .post-thumbnail img {
  filter: grayscale(100%);
}

.site-header.featured-image .site-featured-image .entry-header {
  margin-top: calc(4 * 1rem);
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  /* Entry meta */
}

@media only screen and (min-width: 768px) {
  .site-header.featured-image .site-featured-image .entry-header {
    margin-left: calc(10% + 60px);
    margin-right: calc(10% + 60px);
  }
}

.site-header.featured-image .site-featured-image .entry-header .entry-title:before {
  background: #fff;
}

.site-header.featured-image .site-featured-image .entry-header .entry-meta {
  font-weight: 500;
}

.site-header.featured-image .site-featured-image .entry-header .entry-meta>span {
  margin-right: 1rem;
  display: inline-block;
}

.site-header.featured-image .site-featured-image .entry-header .entry-meta>span:last-child {
  margin-right: 0;
}

.site-header.featured-image .site-featured-image .entry-header .entry-meta a {
  transition: color 110ms ease-in-out;
  color: currentColor;
}

.site-header.featured-image .site-featured-image .entry-header .entry-meta a:hover {
  text-decoration: none;
}

.site-header.featured-image .site-featured-image .entry-header .entry-meta .svg-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

.site-header.featured-image .site-featured-image .entry-header .entry-meta .discussion-avatar-list {
  display: none;
}

@media only screen and (min-width: 768px) {
  .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta {
    display: flex;
    position: relative;
  }

  .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-title {
    padding-right: calc(1 * (100vw / 12) + 1rem);
  }

  .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .comment-count {
    position: absolute;
    right: 0;
  }

  .site-header.featured-image .site-featured-image .entry-header.has-discussion .entry-meta .discussion-avatar-list {
    display: block;
    position: absolute;
    bottom: 100%;
  }
}

.site-header.featured-image .custom-logo-link {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.site-header.featured-image .custom-logo-link:hover,
.site-header.featured-image .custom-logo-link:active,
.site-header.featured-image .custom-logo-link:focus {
  box-shadow: 0 0 0 2px white;
}

.site-header.featured-image .site-branding {
  position: relative;
  z-index: 10;
}

.site-header.featured-image .site-featured-image .entry-header {
  position: relative;
  z-index: 9;
}

.site-header.featured-image .site-branding-container:after,
.site-header.featured-image .site-featured-image:before,
.site-header.featured-image .site-featured-image:after,
.site-header.featured-image:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
}

.image-filters-enabled .site-header.featured-image .site-featured-image:before {
  background: #0073aa;
  mix-blend-mode: screen;
  opacity: 0.1;
}

.site-header.featured-image .site-featured-image:after {
  background: #000;
  mix-blend-mode: multiply;
  opacity: 0.7;
  /* When image filters are active, a blue overlay is added. */
}

.image-filters-enabled .site-header.featured-image .site-featured-image:after {
  background: #0073aa;
  opacity: 0.8;
  z-index: 3;
  /* Browsers supporting mix-blend-mode don't need opacity < 1 */
}

@supports (mix-blend-mode: multiply) {
  .image-filters-enabled .site-header.featured-image .site-featured-image:after {
    opacity: 1;
  }
}

.image-filters-enabled .site-header.featured-image .site-branding-container:after {
  background: rgba(0, 0, 0, 0.35);
  mix-blend-mode: overlay;
  opacity: 0.5;
  z-index: 4;
  /* Browsers supporting mix-blend-mode can have a light overlay */
}

@supports (mix-blend-mode: overlay) {
  .image-filters-enabled .site-header.featured-image .site-branding-container:after {
    background: rgba(255, 255, 255, 0.35);
  }
}

.site-header.featured-image:after {
  background: #000;
  /**
   * Add a transition to the readability overlay, to add a subtle
   * but smooth effect when resizing the screen.
   */
  transition: opacity 1200ms ease-in-out;
  opacity: 0.7;
  z-index: 5;
  /* When image filters are active, a blue overlay is added. */
}

.image-filters-enabled .site-header.featured-image:after {
  background: #000e14;
  opacity: 0.38;
}

@media only screen and (min-width: 768px) {
  .image-filters-enabled .site-header.featured-image:after {
    opacity: 0.18;
  }
}

.site-header.featured-image ::-moz-selection {
  background: rgba(255, 255, 255, 0.17);
}

.site-header.featured-image ::selection {
  background: rgba(255, 255, 255, 0.17);
}

/* Variable */
/*@include breakpoint(sm_desktop) {}*/
/*@include breakpoint(mobile) {}*/
.wpcc-bottom.wpcc-banner.wpcc-container {
  background-color: rgba(255, 255, 255, 0.99) !important;
  border: 0 !important;
  border-top: 2px solid #5d5c5c !important;
  margin: 0;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 35px 18px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  z-index: 9999999999 !important;
}

@media (max-width: 1199px) {
  .wpcc-bottom.wpcc-banner.wpcc-container {
    padding: 15px 20px;
  }
}

@media (max-width: 767px) {
  .wpcc-bottom.wpcc-banner.wpcc-container {
    padding: 10px 15px;
    border-top: 1px solid #5d5c5c !important;
  }
}

.wpcc-bottom.wpcc-banner.wpcc-container .wpcc-message {
  display: inline-block;
  flex: 0 0 55%;
  width: 55%;
  line-height: normal;
  margin: 0 0 0px;
  font-size: 0.813em;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #696969;
}

@media (max-width: 1600px) {
  .wpcc-bottom.wpcc-banner.wpcc-container .wpcc-message {
    flex: 0 0 70%;
    width: 70%;
  }
}

@media (max-width: 1199px) {
  .wpcc-bottom.wpcc-banner.wpcc-container .wpcc-message {
    flex: 0 0 82%;
    width: 82%;
  }
}

@media (max-width: 1023px) {
  .wpcc-bottom.wpcc-banner.wpcc-container .wpcc-message {
    flex: 0 0 78%;
    width: 78%;
  }
}

@media (max-width: 767px) {
  .wpcc-bottom.wpcc-banner.wpcc-container .wpcc-message {
    margin: 0 0 10px;
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }
}

.wpcc-bottom.wpcc-banner.wpcc-container .wpcc-message .wpcc-privacy {
  text-decoration: none;
  color: #e72e28;
  font-weight: 700;
}

.wpcc-bottom.wpcc-banner.wpcc-container .wpcc-message .wpcc-privacy:hover {
  color: #bd0e08;
}

.wpcc-bottom.wpcc-banner.wpcc-container .wpcc-compliance {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 767px) {
  .wpcc-bottom.wpcc-banner.wpcc-container .wpcc-compliance {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.wpcc-bottom.wpcc-banner.wpcc-container .wpcc-compliance .wpcc-btn {
  border-radius: 0;
  padding: 5px 15px;
  min-width: 125px;
  height: 44px;
  line-height: 35px;
  background-color: #e72e28;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .wpcc-bottom.wpcc-banner.wpcc-container .wpcc-compliance .wpcc-btn {
    min-width: 100%;
    height: 38px;
    line-height: 28px;
    font-size: 13px;
  }
}

.wpcc-bottom.wpcc-banner.wpcc-container .wpcc-compliance .wpcc-btn:hover {
  background-color: #bd0e08;
}

.page_footer {
  clear: both;
  background-color: #000;
}

.page_footer .container {
  max-width: 1440px;
}

.page_footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page_footer .footer_top {
  display: flex;
  padding: 88px 0 48px;
}

@media (max-width: 1279px) {
  .page_footer .footer_top {
    padding: 55px 0 30px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer_top {
    flex-flow: wrap;
  }
}

@media (max-width: 767px) {
  .page_footer .footer_top {
    padding: 35px 0 0;
  }
}

.page_footer .footer-logo-col {
  width: 360px;
  margin-right: 100px;
}

@media (max-width: 1680px) {
  .page_footer .footer-logo-col {
    width: 340px;
    margin-right: 30px;
  }
}

@media (max-width: 1365px) {
  .page_footer .footer-logo-col {
    width: 270px;
    margin-right: 20px;
  }
}

@media (max-width: 1279px) {
  .page_footer .footer-logo-col {
    width: 200px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-logo-col {
    width: 50%;
    margin: 0 0 40px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-logo-col {
    width: 100%;
  }
}

.page_footer .footer-logo-col p {
  font-family: "Montserrat", sans-serif;
  color: #e72e28;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  margin: 32px 0 40px;
  letter-spacing: 0;
}

@media (max-width: 1600px) {
  .page_footer .footer-logo-col p {
    font-size: 23px;
    margin: 22px 0 30px;
  }
}

@media (max-width: 1279px) {
  .page_footer .footer-logo-col p {
    font-size: 18px;
    margin: 12px 0 30px;
  }
}

.page_footer .footer-logo-col .border-button {
  min-width: auto;
  padding: 7px 29px;
}

@media (max-width: 1680px) {
  .page_footer .footer-logo-col .border-button {
    padding: 7px 20px;
  }
}

@media (max-width: 1600px) {
  .page_footer .footer-logo-col .border-button {
    font-size: 16px;
  }
}

@media (max-width: 1279px) {
  .page_footer .footer-logo-col .border-button {
    width: 100%;
    margin: 0 0 5px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-logo-col .border-button {
    width: auto;
    margin: 0 10px 5px 0;
  }
}

.page_footer .footer-logo-col .border-button.contact {
  margin-right: 30px;
}

@media (max-width: 1680px) {
  .page_footer .footer-logo-col .border-button.contact {
    margin-right: 10px;
  }
}

.page_footer .title_text {
  color: #fff;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 23px;
}

@media (max-width: 1600px) {
  .page_footer .title_text {
    margin: 0 0 20px;
  }
}

@media (max-width: 1199px) {
  .page_footer .title_text {
    margin: 0 0 13px;
  }
}

@media (max-width: 767px) {
  .page_footer .title_text {
    position: relative;
  }
}

.page_footer .title_text .toggleLinks {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.page_footer .title_text .toggleLinks:after,
.page_footer .title_text .toggleLinks:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background-color: #fff;
  display: block;
}

.page_footer .title_text .toggleLinks:before {
  transform: rotate(90deg);
  transition: all 0.4s ease;
}

.page_footer .title_text .toggleLinks.active:before {
  transform: rotate(0deg);
}

@media (min-width: 768px) {
  .page_footer .title_text .toggleLinks {
    display: none;
  }
}

.page_footer .quick-links {
  display: none;
  margin: 0;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .page_footer .quick-links {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .page_footer .quick-links {
    margin-bottom: 20px;
  }
}

.page_footer .quick-links li {
  margin-bottom: 6px;
  display: block;
  line-height: 18px;
}

@media (max-width: 1199px) {
  .page_footer .quick-links li {
    margin-bottom: 3px;
  }
}

.page_footer .quick-links a {
  color: #979797;
  font-size: 15px;
  line-height: normal;
  display: inline-block;
}

@media (max-width: 1600px) {
  .page_footer .quick-links a {
    font-size: 14px;
  }
}

.page_footer .quick-links a:hover {
  color: #fff;
}

.page_footer .footer-quick-link.company {
  width: 170px;
  padding-right: 10px;
}

@media (max-width: 1600px) {
  .page_footer .footer-quick-link.company {
    width: 140px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-quick-link.company {
    order: 3;
    width: 25%;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-quick-link.company {
    width: 100%;
    border-bottom: 1px #fff solid;
    margin-bottom: 20px;
    padding-right: 0;
  }
}

.page_footer .footer-quick-link.solutions {
  width: 370px;
  padding-right: 10px;
}

@media (max-width: 1199px) {
  .page_footer .footer-quick-link.solutions {
    width: 210px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-quick-link.solutions {
    order: 4;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-quick-link.solutions {
    order: 1;
    width: 100%;
    border-bottom: 1px #fff solid;
    margin-bottom: 15px;
    padding-right: 0;
  }
}

.page_footer .footer-quick-link.services {
  width: 275px;
  padding-right: 10px;
}

@media (max-width: 1600px) {
  .page_footer .footer-quick-link.services {
    width: 250px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-quick-link.services {
    order: 1;
    width: 33.33%;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-quick-link.services {
    order: 2;
    width: 100%;
    border-bottom: 1px #fff solid;
    margin-bottom: 15px;
    padding-right: 0;
  }
}

.page_footer .footer-quick-link.industries {
  width: 220px;
  padding-right: 10px;
}

@media (max-width: 1199px) {
  .page_footer .footer-quick-link.industries {
    width: 210px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-quick-link.industries {
    order: 2;
    width: 33.33%;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-quick-link.industries {
    order: 3;
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    padding-right: 0;
  }
}

.page_footer .footer-quick-link.explore {
  padding-right: 10px;
  width: auto;
}

@media (max-width: 1600px) {
  .page_footer .footer-quick-link.explore {
    width: 230px;
  }
}

@media (max-width: 1199px) {
  .page_footer .footer-quick-link.explore {
    width: 190px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-quick-link.explore {
    order: 3;
    width: 33.33%;
    padding-right: 0;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-quick-link.explore {
    order: 4;
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    padding-right: 0;
  }
}

.page_footer .connect-us {
  width: 329px;
  margin-left: auto;
}

@media (max-width: 1600px) {
  .page_footer .connect-us {
    width: 379px;
  }
}

@media (max-width: 1023px) {
  .page_footer .connect-us {
    width: 50%;
    order: 5;
  }
}

@media (max-width: 767px) {
  .page_footer .connect-us {
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
  }
}

.page_footer .connect-us ul li {
  display: flex;
  align-items: center;
  padding: 4px 0 10px;
  border-bottom: 1px solid #5f5f5f;
}

@media (max-width: 767px) {
  .page_footer .connect-us ul li {
    margin-bottom: 6px;
    border-bottom-width: 1px;
  }
}

.page_footer .connect-us ul li label {
  font-size: 15px;
  text-transform: uppercase;
  color: #ababab;
  display: inline-block;
}

@media (max-width: 1199px) {
  .page_footer .connect-us ul li label {
    font-size: 13px;
    line-height: 13px;
  }
}

.page_footer .connect-us ul li a {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: calc(100% - 67px);
  color: #fff;
  font-size: 15px;
  line-height: normal;
  font-weight: normal;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 1279px) {
  .page_footer .connect-us ul li a {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .page_footer .connect-us ul li a {
    width: calc(100% - 47px);
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 1023px) {
  .page_footer .connect-us ul li a {
    font-size: 14px;
    width: calc(100% - 57px);
  }
}

.page_footer .connect-us ul li a:hover {
  color: #e72e28;
}

.page_footer .connect-us ul li a .arrow_right {
  margin-left: auto;
  width: 25px;
  transition: all 0.5s ease-in-out 0s;
}

.page_footer .connect-us ul li a:hover .arrow_right {
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 767px) {
  .page_footer .connect-us ul li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.page_footer .footer-middle .footer-mid-view {
  display: flex;
  align-items: center;
  padding: 21px 0 22px;
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #5f5f5f;
}

@media (max-width: 1600px) {
  .page_footer .footer-middle .footer-mid-view {
    padding: 15px 0 16px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-middle .footer-mid-view {
    margin: 0 -15px;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-middle .footer-mid-view {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0 15px;
    border-top: 0;
    border-bottom-width: 1px;
  }
}

.page_footer .footer-middle .footer-mid-view .ftr-mid-logo {
  display: inline-block;
  margin-right: 27px;
}

@media (max-width: 1600px) {
  .page_footer .footer-middle .footer-mid-view .ftr-mid-logo {
    margin-right: 24px;
  }
}

@media (max-width: 1199px) {
  .page_footer .footer-middle .footer-mid-view .ftr-mid-logo {
    margin-right: 20px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-middle .footer-mid-view .ftr-mid-logo {
    margin-right: 17px;
  }
}

@media (max-width: 767px) {
  .page_footer .footer-middle .footer-mid-view .ftr-mid-logo {
    display: none;
  }
}

@media (max-width: 567px) {
  .page_footer .footer-middle .footer-mid-view .ftr-mid-logo {
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .page_footer .footer-middle .footer-mid-view .footer-mid-menu {
    line-height: normal;
    margin: 5px 0 5px;
    text-align: center;
  }
}

.page_footer .footer-middle .footer-mid-view .footer-mid-menu li {
  display: inline-block;
  position: relative;
}

@media (max-width: 479px) {
  .page_footer .footer-middle .footer-mid-view .footer-mid-menu li {
    line-height: normal;
    margin: 0 0 5px;
  }
}

.page_footer .footer-middle .footer-mid-view .footer-mid-menu li a {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .page_footer .footer-middle .footer-mid-view .footer-mid-menu li a {
    font-size: 13px;
  }
}

.page_footer .footer-middle .footer-mid-view .footer-mid-menu li a:hover {
  color: #e72e28;
}

.page_footer .footer-middle .footer-mid-view .footer-mid-menu li:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 12px;
  margin: 0 20px;
  background-color: #fff;
}

@media (max-width: 1600px) {
  .page_footer .footer-middle .footer-mid-view .footer-mid-menu li:after {
    margin: 0 12px;
  }
}

@media (max-width: 1199px) {
  .page_footer .footer-middle .footer-mid-view .footer-mid-menu li:after {
    margin: 0 10px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-middle .footer-mid-view .footer-mid-menu li:after {
    margin: 0 5px;
  }
}

@media (max-width: 599px) {
  .page_footer .footer-middle .footer-mid-view .footer-mid-menu li:after {
    margin: 0px 4px;
  }
}

.page_footer .footer-middle .footer-mid-view .footer-mid-menu li:last-child:after {
  display: none;
}

.page_footer .footer-middle .footer-mid-view .social-media {
  margin-left: auto;
  width: auto;
}

@media (max-width: 767px) {
  .page_footer .footer-middle .footer-mid-view .social-media {
    width: 100%;
    text-align: center;
  }
}

.page_footer .footer-middle .footer-mid-view .social-media li {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  margin-left: 33px;
}

@media (max-width: 1600px) {
  .page_footer .footer-middle .footer-mid-view .social-media li {
    margin-left: 30px;
  }
}

@media (max-width: 1023px) {
  .page_footer .footer-middle .footer-mid-view .social-media li {
    margin-left: 20px;
  }
}

.page_footer .footer-middle .footer-mid-view .social-media li a {
  float: none;
  margin: 0;
  font-size: 0;
  color: inherit;
  display: inline-block;
}

.page_footer .copyright_footer {
  width: 100%;
  border-top: 0;
  display: flex;
  align-items: center;
  height: 102px;
  padding: 0px 0 43px;
}

@media (max-width: 1600px) {
  .page_footer .copyright_footer {
    height: 90px;
    padding: 0px 0 33px;
  }
}

@media (max-width: 1279px) {
  .page_footer .copyright_footer {
    height: 80px;
  }
}

@media (max-width: 1023px) {
  .page_footer .copyright_footer {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .page_footer .copyright_footer {
    padding: 10px 0;
  }
}

.page_footer .copyright_footer .copyright-view {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .page_footer .copyright_footer .copyright-view {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.page_footer .copyright_footer .copyright-view .copyright_text {
  width: auto;
  color: #909090;
  font-weight: normal;
}

@media (max-width: 1023px) {
  .page_footer .copyright_footer .copyright-view .copyright_text {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .page_footer .copyright_footer .copyright-view .copyright_text {
    line-height: normal;
    margin-bottom: 5px;
  }
}

.page_footer .copyright_footer .copyright-view .copyright_text p {
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  color: #909090;
  margin: 0;
}

@media (max-width: 1023px) {
  .page_footer .copyright_footer .copyright-view .copyright_text p {
    font-size: 14px;
  }
}

.page_footer .copyright_footer .copyright-view .copyright_text .protect {
  display: inline-block;
  margin-left: 5px;
}

.page_footer .copyright_footer .copyright-view .copyright_text a {
  color: #909090;
}

.page_footer .copyright_footer .copyright-view .copyright_text a:hover {
  color: #e72e28;
  text-decoration: underline;
}

.page_footer .copyright_footer .copyright-view .ftr-btm-right-links {
  margin-left: auto;
}

@media (max-width: 1023px) {
  .page_footer .copyright_footer .copyright-view .ftr-btm-right-links {
    margin: 0 auto;
    line-height: normal;
  }
}

@media (max-width: 479px) {
  .page_footer .copyright_footer .copyright-view .ftr-btm-right-links {
    text-align: center;
  }
}

.page_footer .copyright_footer .copyright-view .ftr-btm-right-links li {
  display: inline-block;
  position: relative;
}

@media (max-width: 479px) {
  .page_footer .copyright_footer .copyright-view .ftr-btm-right-links li {
    line-height: normal;
  }
}

.page_footer .copyright_footer .copyright-view .ftr-btm-right-links li a {
  font-size: 13px;
  color: #909090;
  text-transform: uppercase;
  font-weight: 600;
}

.page_footer .copyright_footer .copyright-view .ftr-btm-right-links li a:hover {
  color: #fff;
}

.page_footer .copyright_footer .copyright-view .ftr-btm-right-links li:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 11px;
  margin: 2px 8px 0 8px;
  background-color: #909090;
}

@media (max-width: 1600px) {
  .page_footer .copyright_footer .copyright-view .ftr-btm-right-links li:after {
    margin: 2px 7px 0 7px;
  }
}

@media (max-width: 1023px) {
  .page_footer .copyright_footer .copyright-view .ftr-btm-right-links li:after {
    margin: 2px 7px 0 7px;
  }
}

@media (max-width: 767px) {
  .page_footer .copyright_footer .copyright-view .ftr-btm-right-links li:after {
    margin: 2px 5px 0 5px;
  }
}

.page_footer .copyright_footer .copyright-view .ftr-btm-right-links li:last-child:after {
  display: none;
}

@keyframes horizontalMove {
  0% {
    transform: translateX(-30px);
  }

  100% {
    transform: translateX(0px);
  }
}

@media (width: 1024px) {
  .dashed-process-border-sc {
    background-origin: content-box;
    background-size: cover;
  }
}


.grecaptcha-badge {
  opacity: 0 !important;
}
