/* Theme Color */

:root {
  /* #000DFF in decimal RGB */
  --main-color: rgb(237, 028, 036);
  --main-color-rgb: 0, 13, 255;

  /* #C115EC in decimal RGB */
  --color-two: rgb(116, 000, 000);
  --color-two-rgb: 193, 21, 236;

  /* #DDDDDD in decimal RGB */
  --color-three: rgb(221, 221, 221);
  --color-three-rgb: 221, 221, 221;

  /* #F2F2F2 in decimal RGB */
  --color-four: rgb(242, 242, 242);
  --color-four-rgb: 242, 242, 242;

  /* #ffffff in decimal RGB */
  --white-color: rgb(255, 255, 255);
  --white-color-rgb: 255, 255, 255;

  /* #000000 in decimal RGB */
  --black-color: rgb(0, 0, 0);
  --black-color-rgb: 0, 0, 0;
}

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-three);
}
/* Animation */

.about-image-content figure {
  display: block;
}
.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}
/* End */

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6em;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

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

.dark-layout {
  position: relative;
  background-color: var(--black-color);
}
.pb-sec {
  padding-bottom: 100px;
}
.pr-16 {
  padding-right: 16px;
}
/* Preloader */

.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(237, 028, 036, 1);
  background-image: linear-gradient(
    90deg,
    rgb(237, 028, 036, 1) 0%,
    rgb(116, 000, 000, 1) 100%
  );
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader .box {
  position: relative;
  width: 60px;
  height: 60px;
  animation: bounce 1s infinite ease-in-out;
}

.preloader .box:after,
.preloader .box:before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.preloader .box:after {
  width: 60px;
  height: 60px;
  animation: pulse 1s infinite ease-in-out;
}

.preloader .box:before {
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  margin-top: -7.5px;
  margin-left: -7.5px;
  animation: small-bounce 1s infinite ease-in-out;
}

/* Keyframe Animations */

@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
}

@keyframes small-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/*Pre Loader Style
======================================================*/
.preloader {
  background: #ffffff;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.organiaLoader {
  width: auto;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.loaderO {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  line-height: 18px;
}

.loaderO span {
  font-size: 50px;
  line-height: 14px;
  font-weight: 700;
  color: var(--main-color);
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}

.loaderO span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loaderO span:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loaderO span:nth-child(3) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loaderO span:nth-child(4) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.loaderO span:nth-child(5) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.loaderO span:nth-child(6) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.loaderO span:nth-child(7) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

@-webkit-keyframes animate {
  0% {
    color: var(--main-color);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-left: 0;
  }
  25% {
    color: var(--main-color);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    margin-left: 5px;
    text-shadow: 0 35px 5px rgba(40, 170, 74, 0.2);
  }
  100% {
    color: var(--main-color);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-left: 0;
  }
}

@keyframes animate {
  0% {
    color: var(--main-color);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-left: 0;
  }
  25% {
    color: var(--main-color);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    margin-left: 5px;
    text-shadow: 0 35px 5px rgba(157, 157, 157, 0.2);
  }
  100% {
    color: var(--main-color);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-left: 0;
  }
}

i {
  font-style: normal;
}

.bordered-layout .page-wrapper {
  padding: 0px 50px 0px;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--main-color);
}

button,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 0px;
  background: none;
  font-weight: 700;
  color: var(--black-color);
  font-family: "Roboto", sans-serif;
}

input,
button,
select,
textarea {
}

textarea {
  overflow: hidden;
}

p {
  position: relative;
  line-height: 1.7em;
  color: #000000;
  font-size: 16px;
}

/* Typography */

h1 {
  line-height: 110px;
  font-size: 70px;
}

h2 {
  line-height: 70px;
  font-size: 60px;
}

h3 {
  line-height: 42px;
  font-size: 32px;
}

h4 {
  line-height: 34px;
  font-size: 26px;
}

h5 {
  line-height: 30px;
  font-size: 20px;
}

h6 {
  line-height: 28px;
  font-size: 18px;
}

.auto-container {
  position: static;
  max-width: 1320px;
  padding: 0px 15px;
  margin: 0 auto;
}

.auto-container_two {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

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

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

.theme-btn {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.centered {
  text-align: center;
}

::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}
.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  color: var(--main-color);
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  font-weight: 700;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-size: 13px;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--main-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap.style2::after {
  color: var(--thm-color-2);
}
.progress-wrap.style2 svg.progress-circle path {
  stroke: var(--thm-color-2);
}
.progress-wrap.style3::after {
  color: var(--thm-color-3);
}
.progress-wrap.style3 svg.progress-circle path {
  stroke: var(--thm-color-3);
}

/* List Style One */

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 10px;
  padding-left: 30px;
}

.list-style-one li a {
  position: relative;
  color: var(--white-color);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.list-style-one li a:hover {
  color: var(--main-color);
}

.list-style-one li .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  color: var(--main-color);
  font-size: 18px;
  line-height: 1em;
  font-weight: 300;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* Btn Style One */

.btn-style-one {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 50px;
  padding: 16px 34px;
  display: inline-block;
  color: var(--white-color);
  text-transform: capitalize;
  font-family: "Manrope", sans-serif;
  background-color: rgba(237, 028, 036, 1);
  i {
    position: relative;
    top: 5px;
    padding-left: 5px;
    font-size: 20px;
  }
}
.btn-style-two {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 50px;
  padding: 16px 34px;
  display: inline-block;
  color: var(--black-color);
  text-transform: capitalize;
  background-color: var(--white-color) !important;
  margin-top: 2rem;
  width: 100%;
  i {
    position: relative;
    top: 5px;
    padding-left: 5px;
    font-size: 20px;
  }
}
.our_solution {
  position: relative;
  z-index: 1;
}
.background-watermark {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 40%;
  opacity: 0.5;
}
.btn-style-one:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-image: linear-gradient(
    90deg,
    rgb(237, 028, 036, 1) 0%,
    rgb(116, 000, 000, 1) 100%
  );
}

.btn-style-one:hover:before {
  top: 0%;
}

.btn-style-one .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-one .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-weight: 400;
}

.btn-style-one:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two {
  color: var(--white-color);
}

.btn-style-one:hover {
}

.btn-style-one:hover:before {
  top: -40%;
}

/* Btn Style Three */

.btn-style-three {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 50px;
  padding: 20px 50px;
  display: inline-block;
  color: var(--white-color);
  text-transform: capitalize;
  background-color: var(--black-color);
}

.btn-style-three:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: rgba(237, 028, 036, 1);
  background-image: linear-gradient(
    90deg,
    rgb(237, 028, 036, 1) 0%,
    rgb(116, 000, 000, 1) 100%
  );
}

.btn-style-three:hover:before {
  top: 0%;
}

.btn-style-three .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-three .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two {
  color: var(--white-color);
}

.btn-style-three:hover {
}

.btn-style-three:hover:before {
  top: -40%;
}

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

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.sec-title_title {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--main-color);
  text-transform: uppercase;
}

.sec-title_dots {
  position: relative;
}

.sec-title_dots span:nth-child(1) {
  animation-delay: 0s;
}

.sec-title_dots span:nth-child(2) {
  animation-delay: 0.5s;
}

.sec-title_dots span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes zoom-in-out {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1.2);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.section-title2 h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.section-title3 h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--white-color);
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: bold;
  background: linear-gradient(to right, #6b0000, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 30px;
  text-align: left;
}
.sec-title_dots span {
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-radius: 50px;
  display: inline-block;
  animation: zoom-in-out 3s infinite;
  opacity: 0;
  background-color: rgba(0, 13, 255, 0);
  background-image: linear-gradient(
    90deg,
    rgb(237, 028, 036, 1) 0%,
    rgb(116, 000, 000, 1) 100%
  );
}

.sec-title_heading {
  margin-top: 15px;
  color: var(--black-color);
  text-transform: capitalize;
}

.sec-title_text {
  line-height: 30px;
  font-size: 16px;
  margin-top: 20px;
  color: #000000;
}

.sec-title.light .sec-title_title {
  color: var(--white-color);
}

.sec-title.light .sec-title_title span {
  background-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.sec-title.light .sec-title_big-title {
  -webkit-text-stroke-color: rgba(var(--color-three-rgb), 0.3);
}

.sec-title.light .sec-title_text {
  opacity: 1;
  color: var(--white-color);
}

.sec-title.light .sec-title_heading {
  color: var(--white-color);
}

.sec-title.centered {
  text-align: center !important;
}

.sec-title.centered .sec-title_title {
  justify-content: center;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button {
  top: -2px;
  width: 100%;
  border: 0px;
  padding: 15px 25px;
  font-weight: 500;
  line-height: 28px;
  font-size: 16px;
  color: var(--color-four);
  background-color: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
}

.form-group .ui-button .ui-icon {
  background: none;
  position: relative;
  top: 3px;
  text-indent: 0px;
  color: #a5a5a5;
}

.form-group .ui-button .ui-icon:before {
  font-family: "FontAwesome";
  content: "\f107";
  position: absolute;
  right: 0px;
  top: 2px !important;
  top: 10px;
  height: 22px;
  display: block;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  z-index: 5;
  color: var(--color-three);
}

.ui-menu .ui-menu-item {
  font-size: 16px;
}

.ui-menu .ui-menu-item:last-child {
  border: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  display: block;
  padding: 8px 20px;
  line-height: 24px;
  font-size: 16px;
}

.ui-menu-item:hover {
  background-color: var(--color-two);
}

.xs-sidebar-group .close-button {
  font-family: "Flaticon";
}

.newsletter-popup-area-section {
  display: none;
}

.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center !important;
}

/* Shop Sidebar */

.xs-sidebar-group .xs-overlay {
  left: 100%;
  top: 0;
  position: fixed;
  z-index: 999999;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  cursor: url(../images/cross-out.png), pointer;
}

.xs-sidebar-group .close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
  font-size: var(--font-18);
}

.xs-sidebar-group .close-button .mdi {
  color: var(--color-four);
  font-size: var(--font-14);
  font-family: "Material Design Icons";
}

.xs-sidebar-group .close-button .mdi:hover {
  color: var(--black-color);
}

.xs-sidebar-widget:nth-child(2) {
  right: -380px;
}

.xs-sidebar-widget {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 370px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #ffffff;
  -webkit-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
  -o-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
  transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}
.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.7;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  left: 0;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0px;
  -webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.8, 0.03, 0, 0.96) 0.4s;
  transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}
.sidebar-textwidget {
  padding: 0px;
}
.close-side-widget {
  font-size: rem(15px);
  display: block;
}
.sidebar-widget-container {
  position: relative;
  top: 0px;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
}
.xs-sidebar-group.isActive .sidebar-widget-container {
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  z-index: 0;
}
.xs-bg-black {
  background-color: #000000;
}
.xs-menu-tools > li {
  display: inline-block;
  margin-right: 15px;
}
.xs-menu-tools > li:last-child {
  margin-right: 0;
}
.xs-menu-tools > li > a {
  color: #000000;
  text-decoration: none;
}
.nav-alignment-dynamic,
.nav-alignment-flex-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.sec-title__tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sec-title.center .sec-title__tagline {
  justify-content: center;
}

.sec-title__tagline .line {
  width: 20px;
  height: 2px;
  background: var(--main-color);
  margin-right: 10px;
}

.sec-title__tagline .line,
.sec-title__tagline .text {
  position: relative;
  display: block;
}

.sec-title__tagline .text h4 {
  color: #1d1d1d;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.points {
  border: 1px solid #eaeaea;
  display: flex;
}
.step-box {
  padding: 40px 20px;
  position: relative;
  text-align: left;
  height: 100%;
}

.step-icon img {
  width: 50px;
  height: 50px;
  z-index: 99;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 28px;
  color: #000;
}

.step-divider {
  border-left: 1px solid #eaeaea;
}

.step-box h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: #000;
}

.step-box p {
  font-size: 16px;
  color: #000000;
}

.whatsapp_chat {
  position: fixed;
  bottom: 30px;
  left: 16px;
  color: #fff;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(77, 194, 71);
  order: 2;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 50%;
  cursor: pointer;

  transition: all 0.5s ease 0s;
  z-index: 200;
  display: block;
  border: 0px none;
}
.whatsapp_chat:hover {
  background-color: #128c7e;
  color: #fff;
  box-shadow: rgb(57 65 64 / 40%) 2px 2px 11px;
}
.whatsapp_chat:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  transition: all 0.3s ease;
  background: #6bcc66;
}
.whatsapp_chat:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all400ms;
  animation: pulse-border 2.5s ease-out infinite;
}

.about-data {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.about-data::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-color);
  width: 100%;
  height: 0;
  transition: all 0.8s ease-in-out;
  z-index: 0;
}
.about-data.active:before,
.about-data:hover:before {
  height: 100%;
  top: 0;
  bottom: auto;
}
.about-data.active {
  h5,
  p {
    color: var(--white-color);
  }
}
/*
Page Hedaer Style
======================================================*/
.page-header-area {
  padding-top: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-header-area h1 {
  color: #fff;
  margin-bottom: 0;
}

.page-header-area .page-header-content h1 {
  font-size: 38px;
  margin-bottom: 0;
}

.page-header-area .page-header-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.page-header-area .page-header-content ul li {
  display: inline-block;
  color: #c20b64;
  margin-right: 20px;
  font-weight: 500;
  position: relative;
}

.page-header-area .page-header-content ul li:last-child {
  margin-right: 0;
}

.page-header-area .page-header-content ul li:last-child::before {
  display: none;
}

.page-header-area .page-header-content ul li::before {
  position: absolute;
  content: "\f1ab";
  font-family: flaticon !important;
  right: -18px;
  font-size: 11px;
  top: 5px;
  color: #2c2c2c;
}

.page-header-area .page-header-content ul li a {
  color: #2c2c2c;
}

.page-header-area .page-header-image {
  text-align: end;
  position: relative;
  right: -60px;
}

.page-header-area .page-header-shape img {
  position: absolute;
}

.page-header-area .page-header-shape img:nth-child(1) {
  left: 0;
  bottom: 0;
  z-index: -1;
}

.page-header-area .page-header-shape img:nth-child(2) {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}

.page-header-area .page-header-shape img:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: -1;
}
.iam-bg {
  background: url(../images/banner/iam-bg.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.contact-bg {
  background: url(../images/banner/contact-bg.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.career-bg {
  background: url(../images/banner/career-bg.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.about-bg {
  background: url(../images/banner/service.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.aboutus-bg {
  background: url(../images/banner/about-bg.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.secure-access {
  background: url(../images/banner/secure-access.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.your-id {
  background: url(../images/banner/your-id.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.scalable {
  background: url(../images/banner/scalable.webp) no-repeat center;
  padding: 170px 0 150px;
  background-size: cover;
}
.contact-card-1 {
  text-align: center;
  padding: 30px;
  min-height: 260px;
  -webkit-box-shadow: 0px 6px 30px rgba(44, 44, 44, 0.05);
  box-shadow: 0px 6px 30px rgba(44, 44, 44, 0.05);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}
    
/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
  padding: 30px 0;
}

.service-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 30px;
}

.service-catagery-list {
  border: 1px solid #e9ecef;
  padding: 30px;
  margin-bottom: 40px;
  overflow: hidden;
  background: #F8F8F8;
}

.service-catagery-list h3 {
  font-size: 20px;
  text-transform: capitalize;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

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

.service-catagery-list ul li {
  margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
  margin: 0;
}

.service-catagery-list ul li a {
  position: relative;
  display: block;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 25px;
      font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
  color: var(--main-color) !important;
}

.service-catagery-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%) rotate(-45deg);
  background-image: url(../images/icons/arrow-accent.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
  transform: translateY(-50%) rotate(0);
  filter: brightness(0) invert(0);
  color: var(--main-color) !important;
}

.sidebar-cta-image figure {
  display: block;
}

.sidebar-cta-image img {
  width: 100%;
  aspect-ratio: 1 / 0.57;
  object-fit: cover;
}

.sidebar-cta-Body {
  border: 1px solid #e9ecef;
  padding: 30px;
}

.sidebar-cta-content {
  margin-bottom: 25px;
}

.sidebar-cta-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.sidebar-cta-content p {
  font-weight: 500;
  margin-bottom: 0;
}

.sidebar-cta-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
  margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
  position: relative;
  height: 58px;
  width: 58px;
  background-color: #e9ecef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
  background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
  transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
  position: relative;
  max-width: 24px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.cta-contact-item-content {
  width: calc(100% - 78px);
}

.cta-contact-item-content p {
  font-weight: 500;
  margin: 0;
}

.service-feature-image {
  margin-bottom: 40px;
}

.service-feature-image figure {
  display: block;
}

.service-feature-image img {
  width: 100%;
  aspect-ratio: 1 / 0.55;
  object-fit: cover;
}

.service-entry {
  margin-bottom: 20px;
}

.service-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.service-entry h2 span {
  color: var(--accent-color);
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.service-entry ul li {
  position: relative;
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child {
  margin-bottom: 0;
}

.service-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: var(--main-color);
  display: inline-block;
  top: 2px;
  left: 0;
}

.service-entry-list-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.service-entry-image,
.service-entry-list {
  width: 100%;
  margin-bottom: 2rem;
}

.service-entry-image figure {
  display: block;
}

.service-entry-image img {
  width: 100%;
  aspect-ratio: 1 / 0.615;
  object-fit: cover;
}

.service-entry-list ul {
  margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
  margin-bottom: 10px;
}
/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

.why-choose-us {
  padding: 100px 0;
  background-color: var(--secondery-color);
}

.why-choose-item {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.why-choose-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-choose-item .icon-box {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 32px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
  background-color: transparent;
}

.why-choose-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--main-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
  transform: scale(1);
}

.why-choose-item .icon-box img {
  max-width: 24px;
  z-index: 1;
  max-width: 20px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.why-choose-item-content {
  width: calc(100% - 80px);
}

.why-choose-item-content h3 {
  font-size: 18px !important;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: 400 !important;
}
.service-entry h3 {
  font-size: 20px !important;
  text-transform: capitalize;
  margin-bottom: 16px !important;
  font-weight: 600 !important;
}
.service-points {
  margin-bottom: 2rem;
}
.service-points h4 {
  font-size: 18px !important;
  text-transform: capitalize;
  margin-bottom: 16px !important;
  font-weight: 400 !important;
}

.why-choose-item-content p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.why-choose-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
  display: flex;
  gap: 20px;
  width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure {
  display: block;
}

.why-choose-img-1 {
  width: calc(57% - 10px);
}

.why-choose-img-1 img {
  width: 100%;
  aspect-ratio: 1 / 0.756;
  object-fit: cover;
}

.why-choose-img-2 {
  width: calc(43% - 10px);
}

.why-choose-img-2 img {
  width: 100%;
  aspect-ratio: 1 / 1.01;
  object-fit: cover;
}

.why-choose-img-3 {
  width: calc(67% - 10px);
}

.why-choose-img-3 img {
  width: 100%;
  aspect-ratio: 1 / 0.746;
  object-fit: cover;
}

.why-choose-img-4 {
  width: calc(33% - 10px);
}

.why-choose-img-4 img {
  width: 100%;
  aspect-ratio: 1 / 1.55;
  object-fit: cover;
}
.section-small-title {
  h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin: 1rem 0;
    line-height: 2rem;
  }
}
.inner-title {
  h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin: 1rem 0;
    line-height: 2rem;
  }
  h4 {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    margin: 1rem 0;
    line-height: 2rem;
  }
}

.with-errors {
    color: red;
}