/*----------------------------------------*/
/* 01. THEME DEFAULT CSS START
/*----------------------------------------*/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  /**=========== color ===========*/
  --oit-clr-white: #FFFFFF;
  --oit-clr-black: #11383F;
  --oit-clr-green: #88DE7D;
  --oit-gray-1: #F5F8F8;
  --oit-text-body: #383F3E;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueLight.otf") format("woff2"), url("../fonts/HelveticaNeueLight.otf") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  /**========== font family ==============*/
  --oit-ff-body: "DM Sans", sans-serif;
  --oit-ff-heading: "Helvetica Neue", sans-serif;
  --oit-ff-helvetica: "Helvetica Neue", sans-serif;
  --oit-ff-dm-sans: "DM Sans", sans-serif;
  --oit-ff-p: "DM Sans", sans-serif;
  --oit-ff-fontawesome: "Font Awesome 6 Pro";
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.z-index-2 {
  position: relative;
  z-index: 2;
}

.z-index-3 {
  position: relative;
  z-index: 3;
}

.z-index-4 {
  position: relative;
  z-index: 4;
}

.z-index-5 {
  position: relative;
  z-index: 5;
}

.z-index-6 {
  position: relative;
  z-index: 6;
}

.z-index-7 {
  position: relative;
  z-index: 7;
}

.z-index-8 {
  position: relative;
  z-index: 8;
}

.z-index-9 {
  position: relative;
  z-index: 9;
}

.z-index-10 {
  position: relative;
  z-index: 10;
}

.gx-2 {
  --bs-gutter-x: 2px;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-30 {
  --bs-gutter-x: 30px;
}

.gx-40 {
  --bs-gutter-x: 40px;
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.gx-60 {
  --bs-gutter-x: 60px;
}

.gx-70 {
  --bs-gutter-x: 70px;
}

.gx-80 {
  --bs-gutter-x: 80px;
}

.gx-90 {
  --bs-gutter-x: 90px;
}

.gx-100 {
  --bs-gutter-x: 100px;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.oit-text-white {
  color: var(--oit-clr-white);
}

.oit-text-black {
  color: var(--oit-clr-black);
}

.border-line {
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.3s linear;
  background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
}
.border-line:hover {
  background-size: 0% 2px, 100% 2px;
}

.black-bg {
  background-color: var(--oit-clr-black);
}

.white-bg {
  background-color: var(--oit-clr-white);
}

.word-wrap {
  overflow: hidden;
  display: inline-block;
  perspective: 800px;
  padding-bottom: 12px;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: rotateX(90deg);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1750px;
}

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

html {
  scroll-behavior: smooth;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-size: 14px;
  line-height: 26px;
  font-weight: normal;
  color: var(--oit-text-body);
  font-family: var(--oit-ff-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  color: var(--oit-clr-black);
  font-family: var(--oit-ff-heading);
}

h1 {
  font-size: 65px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 45px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
  font-family: var(--oit-ff-p);
  color: var(--oit-text-body);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  padding-left: 26px;
  padding-right: 26px;
  color: var(--oit-clr-white);
  border: 1px solid var(--oit-clr-white);
  background-color: var(--oit-clr-white);
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--oit-clr-white);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--oit-clr-white);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--oit-clr-white);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--oit-clr-white);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder { /* MODERN BROWSER */
  color: var(--oit-clr-white);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--oit-clr-white);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--oit-clr-black);
  color: var(--oit-clr-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--oit-clr-black);
  color: var(--oit-clr-white);
  text-shadow: none;
}

::selection {
  background: var(--oit-clr-black);
  color: var(--oit-clr-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--oit-clr-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--oit-clr-black);
  font-size: 14px;
  opacity: 1;
}

.oit-btn-green {
  overflow: hidden;
  display: inline-flex;
}
.oit-btn-green > span {
  padding: 18px 25px;
  border-radius: 10px;
  line-height: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  background: var(--oit-clr-green);
  color: var(--oit-clr-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .oit-btn-green > span {
    padding: 16px 20px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .oit-btn-green > span {
    padding: 12px 15px;
    font-size: 12px;
    border-radius: 10px;
  }
}
.oit-btn-green > span > span {
  font-weight: 600;
  z-index: 9;
  display: inline-block;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oit-btn-green > span > span > span {
  display: block;
  text-align: center;
  overflow: hidden;
}
.oit-btn-green > span > span > span.text-1 {
  position: relative;
  display: block;
  transition: 0.3s;
}
.oit-btn-green > span > span > span.text-2 {
  position: absolute;
  top: 100%;
  display: block;
  transition: 0.3s;
}
.oit-btn-green > i {
  height: 54px;
  width: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-align: center;
  border-radius: 10px;
  z-index: 9;
  flex: 0 0 auto;
  color: var(--oit-clr-black);
  background-color: var(--oit-clr-green);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .oit-btn-green > i {
    height: 50px;
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .oit-btn-green > i {
    height: 36px;
    width: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border-radius: 10px;
  }
}
.oit-btn-green > i span {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
  display: inline-flex;
}
.oit-btn-green > i svg {
  transform: translateY(-2px);
  position: absolute;
  bottom: -1px;
  left: 1px;
  transition: all 0.2s ease-out;
}
.oit-btn-green > i svg:last-child {
  left: -12px;
  bottom: -12px;
  transform: translate(0, 0);
  opacity: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .oit-btn-green > i svg {
    height: 12px;
  }
}
@media (max-width: 767px) {
  .oit-btn-green > i svg {
    height: 10px;
  }
}
.oit-btn-green:hover > span > span span.text-1 {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.oit-btn-green:hover > span > span span.text-2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.oit-btn-green.border-btn > span {
  background-color: transparent;
  color: var(--oit-clr-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.oit-btn-green.border-btn > i {
  background-color: transparent;
  color: var(--oit-clr-white);
  margin-left: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-border {
  font-size: 14px;
  font-weight: 500;
  padding: 3px 17px;
  padding-right: 3px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--oit-clr-white);
  border: 1px solid var(--oit-clr-white);
  gap: 7px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .btn-border {
    font-size: 14px;
    padding: 5px 22px;
    padding-right: 8px;
  }
}
.btn-border.light {
  color: var(--oit-clr-black);
  border-color: var(--oit-clr-white);
  background-color: var(--oit-clr-white);
}
.btn-border.light i {
  color: var(--oit-clr-white);
  background-color: var(--oit-clr-black);
}
.btn-border.light:hover {
  color: var(--oit-clr-black);
}
.btn-border span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  transform: translateY(2px);
}
.btn-border span span.text-1 {
  position: relative;
  display: block;
  transition: 0.3s;
  transform: translateY(-1px);
}
.btn-border span span.text-2 {
  position: absolute;
  top: 100%;
  display: block;
  transition: 0.3s;
  transform: translateY(-1px);
}
.btn-border i {
  height: 30px;
  width: 30px;
  line-height: 33px;
  border-radius: 50%;
  margin-left: 2px;
  text-align: center;
  display: inline-block;
  color: var(--oit-clr-black);
  background-color: var(--oit-clr-white);
}
.btn-border i span {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
  display: inline-flex;
}
.btn-border i svg {
  transform: translateY(-2px);
  position: absolute;
  bottom: -1px;
  left: 1px;
  transition: all 0.2s ease-out;
}
.btn-border i svg:last-child {
  left: -12px;
  bottom: -12px;
  transform: translate(0, 0);
  opacity: 0;
}
.btn-border:hover {
  color: var(--oit-clr-white);
}
.btn-border:hover span span.text-1 {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.btn-border:hover span span.text-2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn-border:hover i svg:first-child {
  transform: translate(16px, -16px);
}
.btn-border:hover i svg:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}

.demo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: translate(-50%, -50%);
}

/* ===== Preloader Wrapper ===== */
/* ===== Preloader Wrapper ===== */
@keyframes Oitloader {
  0% {
    transform: scaleY(0.1);
    background: var(--oit-clr-black);
  }
  50% {
    transform: scaleY(1);
    background: var(--oit-clr-green);
  }
  100% {
    transform: scaleY(0.1);
    background: transparent;
  }
}
.preloader {
  width: 100%;
  height: 100%;
  background-color: var(--oit-clr-white);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.loading .bar {
  width: 6px;
  height: 60px;
  background: var(--oit-clr-white);
  display: inline-block;
  transform-origin: bottom center;
  animation: Oitloader 1.5s ease-in-out infinite;
}
.loading .bar1 {
  animation-delay: 0.1s;
}
.loading .bar2 {
  animation-delay: 0.2s;
}
.loading .bar3 {
  animation-delay: 0.3s;
}
.loading .bar4 {
  animation-delay: 0.4s;
}
.loading .bar5 {
  animation-delay: 0.5s;
}
.loading .bar6 {
  animation-delay: 0.6s;
}
.loading .bar7 {
  animation-delay: 0.7s;
}
.loading .bar8 {
  animation-delay: 0.8s;
}

/*--- end of preloader ---*/
.scroll-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  z-index: 9;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--oit-clr-white);
  background: var(--oit-clr-black);
  transition: 1s ease;
  border: none;
}

.scroll-top.open {
  bottom: 80px;
}

.section-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -2.5px;
  color: var(--oit-clr-black);
}
.section-title.words-rotate {
  line-height: 0.8;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    font-size: 50px;
  }
  .section-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 35px;
    letter-spacing: 1px;
  }
  .section-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title {
    font-size: 45px;
  }
  .section-title br {
    display: none;
  }
}
.section-subtitle {
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--oit-clr-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .section-subtitle {
    font-size: 14px;
  }
}

.title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--oit-clr-black);
}
@media (max-width: 767px) {
  .title {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  header css start
/*----------------------------------------*/
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 22;
}

.oit-header-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.oit-header-menu > nav {
  margin-left: 100px;
}
.oit-header-menu > nav > ul > li {
  list-style-type: none;
  display: inline-block;
  margin: 0px 27px;
}
.oit-header-menu > nav > ul > li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .oit-header-menu > nav > ul > li {
    margin: 0 15px;
  }
}
.oit-header-menu > nav > ul > li > a {
  padding: 30px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  color: var(--oit-clr-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .oit-header-menu > nav > ul > li > a {
    font-size: 15px;
  }
}
.oit-header-bar {
  height: 56px;
  width: 56px;
  line-height: 56px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--oit-clr-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .oit-header-bar {
    height: 50px;
    width: 50px;
  }
}
.oit-header-bar span {
  height: 2px;
  width: 28px;
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--oit-clr-black);
}
.oit-header-bar span:first-child {
  transform-origin: right center;
  transform: scaleX(0.5);
}
.oit-header-bar span:last-child {
  transform-origin: left center;
  transform: scaleX(0.5);
}
.oit-header-bar:hover span:first-child {
  transform: scaleX(1);
}
.oit-header-bar:hover span:last-child {
  transform: scaleX(1);
}

/*----------------------------------------*/
/*  hero css start
/*----------------------------------------*/
.hero-subtitle {
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -2.5px;
  color: var(--oit-clr-white);
}
.hero-title.words-rotate {
  line-height: 0.8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 55px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .hero-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 60px;
  }
}
.hero-title-box p {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.17px;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-content {
    margin-bottom: 40px;
  }
}
.hero-content p {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.17px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .hero-content p {
    font-size: 15px;
  }
}
.hero-btn-box {
  gap: 10px;
}
.hero-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.hero-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
}
.hero-shape-3 {
  position: absolute;
  top: 70%;
  left: 20%;
  animation: rotate 9s linear infinite;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-shape-3 {
    display: none;
  }
}
.hero-shape-4 {
  position: absolute;
  top: 54%;
  right: 20%;
  animation: tpswing 1s forwards infinite alternate;
  transform-origin: top right;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-shape-4 {
    display: none;
  }
}
.hero-img-wrap {
  gap: 10px;
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .hero-img-wrap {
    gap: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  .hero-area {
    padding-top: 120px;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/*-------------------------------------*/
/*  demo css start
/*------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-area {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.feature-item {
  border-radius: 30px;
  min-height: 500px;
  padding: 40px 25px 55px 55px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-item {
    padding: 40px 25px 25px 25px;
  }
}
@media (max-width: 767px) {
  .feature-item {
    padding: 40px 25px 25px 25px;
    min-height: auto;
  }
}
.feature-item.feature-style-2 {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 55px 55px 55px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-item.feature-style-2 {
    padding: 40px 25px 25px 25px;
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .feature-item.feature-style-2 {
    min-height: 300px;
    padding: 40px 25px 25px 25px;
  }
}
.feature-item.feature-style-2 p {
  margin-right: 0;
}
.feature-item.feature-style-2 .feature-cat {
  margin-bottom: 0;
}
.feature-item.feature-style-2 .feature-cat img {
  flex: 0 0 auto;
  height: 22px;
}
.feature-item.feature-style-2 .number {
  font-weight: 500;
  font-size: 120px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .feature-item.feature-style-2 .number {
    font-size: 50px;
  }
}
.feature-item.feature-style-2 .shape {
  position: absolute;
  top: 0;
  left: 0;
}
.feature-item.feature-style-3 {
  min-height: 560px;
  border: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-item.feature-style-3 {
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .feature-item.feature-style-3 {
    min-height: auto;
  }
}
.feature-item.feature-style-3 .title {
  margin-bottom: 175px;
  color: var(--oit-clr-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-item.feature-style-3 .title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .feature-item.feature-style-3 .title {
    margin-bottom: 50px;
    font-size: 24px;
  }
}
.feature-item.feature-style-3 .feature-cat {
  margin-bottom: 25px;
}
.feature-item.feature-style-3 .feature-cat span {
  font-size: 14px;
  padding: 1px 20px;
  color: var(--oit-clr-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-item.feature-style-3 p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--oit-clr-white);
}
.feature-item p {
  font-size: 18px;
  line-height: 1.4;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .feature-item p {
    font-size: 16px;
  }
  .feature-item p br {
    display: none;
  }
}
.feature-item .title {
  margin-bottom: 20px;
}
.feature-item .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.feature-item .shape.shape-3 {
  left: auto;
  right: -9%;
  bottom: -14%;
}
.feature-item .shape.shape-4 {
  top: -13%;
  right: auto;
  left: -11%;
}
.feature-cat {
  margin-bottom: 20px;
}
.feature-cat > span {
  display: inline-block;
  padding: 2px 16px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  border-radius: 8px;
  border: 1px solid rgba(13, 13, 13, 0.1);
}
@media (max-width: 767px) {
  .feature-cat > span {
    padding: 3px 15px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.feature-cat > span:not(:last-child) {
  margin-right: 5px;
}
.feature-thumb-inner {
  position: absolute;
  bottom: -1px;
  right: -2%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-thumb-inner {
    bottom: -19%;
    right: -13%;
    transform: scale(0.8);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-thumb-inner {
    bottom: -25%;
    right: -20%;
    transform: scale(0.6);
  }
}
.text-slider-item {
  gap: 40px;
  -webkit-animation: text-slide-animation 30s linear infinite;
  animation: text-slide-animation 30s linear infinite;
  transition: animation-duration 300ms;
}
.text-slider-item span {
  font-weight: 700;
  font-size: 60px;
  white-space: nowrap;
  line-height: 1.4;
  color: var(--oit-clr-black);
}
@media (max-width: 767px) {
  .text-slider-item span {
    font-size: 40px;
  }
}
.text-slider-item svg {
  display: inline-block;
  color: var(--oit-clr-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .responsive-area {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
.responsive-content p {
  font-size: 23px;
  line-height: 1.33;
  margin-bottom: 50px;
  color: var(--oit-clr-black);
  color: var(--oit-clr-black);
}
@media (max-width: 767px) {
  .responsive-content p br {
    display: none;
  }
}
.responsive-device span {
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  color: var(--oit-grey-2);
}
.responsive-device span:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .responsive-device span:not(:last-child) {
    margin-right: 15px;
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.responsive-device span i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 1000px;
  display: block;
  text-align: center;
  margin-bottom: 15px;
  background-color: var(--oit-clr-white);
}
.responsive-thumb {
  padding-right: 100px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .responsive-thumb {
    padding-right: 0;
  }
}
.responsive-thumb .thumb-2 {
  position: absolute;
  bottom: -6%;
  right: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .responsive-thumb .thumb-2 {
    bottom: -22%;
  }
}
.responsive-thumb .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .demo-area {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.demo-content {
  padding: 35px 0;
}
.demo-item {
  padding: 22px 20px;
  border-radius: 10px;
  padding-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--oit-clr-white);
}
.demo-item:hover .demo-thumb img {
  transform: scale(1.05);
}
.demo-item:hover .demo-thumb::after {
  opacity: 1;
  visibility: visible;
}
.demo-item:hover .demo-btn {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.demo-thumb {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.demo-thumb img {
  border-radius: 10px;
  transition: all 0.3s;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.demo-thumb.blur-overlay::after {
  display: none;
}
.demo-thumb.blur-overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  z-index: 33;
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.2);
}
.demo-thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
}
.demo-title {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--oit-clr-black);
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .demo-title {
    font-size: 20px;
  }
}
.demo-category {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.demo-category span {
  display: inline-block;
  padding: 2px 13px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  border-radius: 8px;
  transition: 0.3s;
  border: 1px solid rgba(13, 13, 13, 0.1);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .demo-category span {
    padding: 2px 8px;
    font-size: 13px;
  }
}
.demo-category span:hover {
  color: var(--oit-clr-white);
  border-color: var(--oit-clr-black);
  background-color: var(--oit-clr-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.inner-wrap {
  display: flex;
  -webkit-animation: text-slide-animation 18s linear infinite;
  animation: text-slide-animation 18s linear infinite;
  transition: animation-duration 180ms;
}
.inner-wrap:hover {
  animation-play-state: paused;
}
.inner-thumb {
  padding: 10px;
  border-radius: 16px;
  margin: 0 13px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.inner-thumb img {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-feature-2-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.it-feature-2-item {
  padding: 40px 20px;
  padding-bottom: 35px;
  border-radius: 10px;
  background: var(--oit-clr-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.08);
}
.it-feature-2-item img {
  height: 75px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-feature-2-item img {
    height: 55px;
  }
}
.it-feature-2-item h4 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0;
  padding-top: 23px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-feature-2-item h4 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-feature-2-item h4 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-feature-2-item h4 {
    font-size: 17px;
  }
}
.it-feature-2-shape {
  position: absolute;
  right: 0;
  bottom: -20%;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-faq-area {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.it-custom-accordion .accordion-items {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.it-custom-accordion .accordion-buttons {
  position: relative;
  text-align: left;
  padding: 35px 0;
  padding-right: 90px;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: var(--oit-clr-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-custom-accordion .accordion-buttons {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-custom-accordion .accordion-buttons {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .it-custom-accordion .accordion-buttons {
    font-size: 18px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-custom-accordion .accordion-buttons {
    padding-right: 45px;
  }
}
.it-custom-accordion .accordion-buttons span {
  display: inline-block;
  margin-right: 5px;
}
.it-custom-accordion .accordion-buttons span svg {
  width: 39px;
  height: 40px;
}
@media (max-width: 767px) {
  .it-custom-accordion .accordion-buttons span svg {
    width: 25px;
  }
}
.it-custom-accordion .accordion-buttons .it-accordion-btn {
  position: absolute;
  top: 50%;
  right: 0;
  height: 52px;
  width: 52px;
  line-height: 52px;
  text-align: center;
  transition: 0.3s;
  transform: translateY(-50%);
  color: var(--oit-clr-white);
  background-color: var(--oit-clr-black);
  margin-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-custom-accordion .accordion-buttons .it-accordion-btn {
    height: 32px;
    width: 32px;
    line-height: 32px;
  }
}
.it-custom-accordion .accordion-buttons .it-accordion-btn > i, .it-custom-accordion .accordion-buttons .it-accordion-btn svg {
  position: relative;
  z-index: 1;
  transition: 0.3s;
  width: 12px;
  height: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-custom-accordion .accordion-buttons .it-accordion-btn > i, .it-custom-accordion .accordion-buttons .it-accordion-btn svg {
    width: 10px;
  }
}
.it-custom-accordion .accordion-buttons:not(.collapsed) {
  padding-bottom: 25px;
}
.it-custom-accordion .accordion-buttons:not(.collapsed) .it-accordion-btn {
  background-color: var(--oit-clr-black);
}
.it-custom-accordion .accordion-buttons:not(.collapsed) .it-accordion-btn i, .it-custom-accordion .accordion-buttons:not(.collapsed) .it-accordion-btn svg {
  color: var(--oit-clr-white);
  transform: rotate(-90deg);
}
.it-custom-accordion .accordion-body {
  padding: 0 30px 20px 0;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .it-custom-accordion .accordion-body {
    padding-right: 0;
  }
}
.it-custom-accordion .accordion-body p {
  line-height: 1.71;
  margin-right: 230px;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .it-custom-accordion .accordion-body p {
    margin-right: 0;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .it-custom-accordion .accordion-body p {
    margin-right: 0;
    font-size: 14px;
  }
}

.it-footer-wrap {
  background-size: cover;
  background-repeat: no-repeat;
}
.it-footer-content p {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-footer-content p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .it-footer-content p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .it-footer-area {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .it-footer-area {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
.it-footer-wrap .shape-1 {
  position: absolute;
  left: 5%;
  bottom: 23%;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-footer-wrap .shape-1 {
    left: 3%;
    transform: scale(0.6);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-footer-wrap .shape-1 {
    left: 1%;
    bottom: 16%;
    transform: scale(0.4);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-footer-wrap .shape-1 {
    left: 1%;
    bottom: 15%;
    transform: scale(0.4);
  }
}
@media (max-width: 767px) {
  .it-footer-wrap .shape-1 {
    display: none;
  }
}
.it-footer-wrap .shape-2 {
  position: absolute;
  top: 16%;
  right: 11%;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-footer-wrap .shape-2 {
    right: 3%;
    transform: scale(0.6);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-footer-wrap .shape-2 {
    right: 3%;
    top: 6%;
    transform: scale(0.4);
  }
}
@media (max-width: 767px) {
  .it-footer-wrap .shape-2 {
    display: none;
  }
}

.it-copyright-text p {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--oit-clr-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-copyright-text p {
    font-size: 14px;
  }
}
.it-copyright-text p a {
  color: var(--oit-clr-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-copyright-social {
    padding: 15px 0;
  }
}
.it-copyright-social a {
  width: 35px;
  height: 35px;
  margin: 0 3px;
  overflow: hidden;
  line-height: 32px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  display: inline-block;
  color: var(--oit-clr-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.it-copyright-social a svg {
  position: relative;
  z-index: 1;
}
.it-copyright-social a:hover {
  color: var(--oit-clr-black);
  border-color: var(--oit-clr-white);
  background-color: var(--oit-clr-white);
}
.it-copyright-border {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-slider-wrap {
  gap: 20px;
  -webkit-animation: text-slide-animation 30s linear infinite;
  animation: text-slide-animation 30s linear infinite;
  transition: animation-duration 300ms;
}
@media (max-width: 767px) {
  .demo-slider-wrap {
    -webkit-animation: text-slide-animation 10s linear infinite;
    animation: text-slide-animation 10s linear infinite;
    transition: animation-duration 50ms;
  }
}
.demo-slider-wrap > div {
  white-space: nowrap;
  flex: 0 0 auto;
}
.demo-slider-wrap.slide-ltr {
  -webkit-animation: text-slide-animation-2 30s linear infinite;
  animation: text-slide-animation-2 30s linear infinite;
  transition: animation-duration 300ms;
  margin-bottom: -40px;
}
@media (max-width: 767px) {
  .demo-slider-wrap.slide-ltr {
    -webkit-animation: text-slide-animation-2 10s linear infinite;
    animation: text-slide-animation-2 10s linear infinite;
    transition: animation-duration 50ms;
  }
}

/*# sourceMappingURL=bconsult.css.map */
