/*----------------------------------------*/
/* 01. THEME DEFAULT CSS START
/*----------------------------------------*/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Funnel+Display:wght@300..800&display=swap");
:root {
  /* ========== color ========= */
  --oit-clr-white: #fff;
  --oit-clr-black: #000;
  --oit-grey-1: #f5f5f5;
  --oit-grey-2: #494949;
  --oit-text-body: #5d5d5d;
  --oit-theme-1: #0989FF;
  --oit-border-1: #EAEBED;
}

:root {
  /* ========== font variable ========= */
  --oit-ff-body: "Plus Jakarta Sans", sans-serif;
  --oit-ff-heading: "Funnel Display", sans-serif;
  --oit-ff-funnel: "Funnel Display", sans-serif;
  --oit-ff-p: "Plus Jakarta 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;
}

.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;
}

.btn-border {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 22px;
  padding-right: 8px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--oit-clr-white);
  border: 1px solid var(--oit-clr-white);
  gap: 10px;
}
@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.dark {
  color: var(--oit-clr-white);
  border-color: #2f3437;
  background-color: #2f3437;
}
.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.btn-blur-bg {
  backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-border.btn-black-bg {
  color: var(--oit-clr-white);
  border-color: var(--oit-clr-black);
  background-color: var(--oit-clr-black);
}
.btn-border.btn-black-bg i {
  color: var(--oit-clr-black);
  background-color: var(--oit-clr-white);
}
.btn-border.btn-white-bg {
  padding: 10px 26px;
  padding-right: 8px;
  color: var(--oit-clr-black);
  border-color: var(--oit-clr-white);
  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) {
  .btn-border.btn-white-bg {
    padding: 5px 26px;
    padding-right: 8px;
  }
}
.btn-border.btn-white-bg i {
  color: var(--oit-clr-white);
  background-color: var(--oit-clr-black);
}
.btn-border.btn-white-bg:hover {
  color: var(--oit-clr-black);
}
.btn-border.btn-large {
  padding: 17px 26px;
}
@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.btn-large {
    padding: 12px 26px;
  }
}
.btn-border.btn-small {
  padding-top: 4px;
  padding-bottom: 4px;
  border: none;
  color: var(--oit-grey-2);
  background-color: var(--oit-grey-1);
}
.btn-border.btn-small:hover {
  background-color: var(--oit-clr-black);
}
.btn-border span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}
.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: 38px;
  width: 38px;
  line-height: 38px;
  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);
}
.btn-line {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--oit-clr-black);
}
.btn-line.fsz-30 {
  font-size: 30px;
}
.btn-line.fsz-30 span {
  padding-bottom: 5px;
}
.btn-line.fsz-30 i {
  width: 24px;
  height: 24px;
  padding-bottom: 5px;
}
.btn-line.fsz-30:hover i svg:first-child {
  transform: translate(24px, -24px);
}
.btn-line i {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
  display: inline-flex;
  margin-left: 7px;
}
.btn-line i svg {
  transform: translateY(-2px);
  position: absolute;
  bottom: -1px;
  left: 1px;
  transition: all 0.2s ease-out;
}
.btn-line i svg:last-child {
  left: -12px;
  bottom: -12px;
  transform: translate(0, 0);
  opacity: 0;
}
.btn-line:hover {
  color: var(--oit-clr-black);
}
.btn-line:hover i svg:first-child {
  transform: translate(16px, -16px);
}
.btn-line:hover i svg:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}
.btn-line:hover span::after {
  transform: translate(1rem);
}
.btn-line:hover span::before {
  transform: translate(calc(100% + 1rem));
}
.btn-line span {
  position: relative;
  overflow: hidden;
}
.btn-line span::before, .btn-line span::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.5s cubic-bezier(0.59, 0.23, 0.22, 0.96);
}
.btn-line span::before {
  left: 0;
}
.btn-line span::after {
  left: -1rem;
  transform: translate(-100%);
}

.demo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 15px;
  left: 30px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.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;
}

/* ===== Preloader Wrapper ===== */
/* ===== Preloader Wrapper ===== */
#preloader {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(40px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.is-loading {
  opacity: 1;
  visibility: visible;
}

#preloader.is-loaded {
  pointer-events: none;
}

/* ===== Loader Animation ===== */
.preloader {
  width: 100px;
  height: 100px;
  position: relative;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #fff;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.9s;
}

/* ===== Keyframes ===== */
@keyframes preloader {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*--- 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%;
  color: var(--oit-common-white);
  cursor: pointer;
  background: var(--oit-theme-1);
  transition: 1s ease;
  border: none;
}

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

.section-title {
  font-size: 90px;
  font-weight: 500;
  line-height: 0.9;
  color: var(--oit-clr-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 65px;
  }
}
@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;
  }
  .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 {
  font-size: 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  padding: 6px 30px;
  background: #edf2f8;
  margin-bottom: 30px;
  color: var(--oit-clr-black);
  border: 1px solid rgba(13, 13, 13, 0.1);
}
.section-subtitle::before {
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
  margin-top: 2px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: var(--oit-clr-black);
}
@media (max-width: 767px) {
  .section-subtitle {
    font-size: 14px;
  }
}

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

.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: 20px 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
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-wrap {
    padding-top: 150px;
  }
}
.hero-subtitle {
  font-weight: 400;
  font-size: 25px;
  border-radius: 1000px;
  padding: 15px 40px;
  display: inline-block;
  color: var(--oit-clr-white);
  font-family: var(--oit-ff-heading);
  background: rgba(237, 242, 248, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@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) {
  .hero-subtitle {
    padding: 10px 40px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero-subtitle {
    padding: 7px 30px;
    font-size: 15px;
  }
}
.hero-title {
  font-weight: 600;
  font-size: 110px;
  line-height: 1;
  color: var(--oit-clr-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-title {
    font-size: 80px;
  }
}
@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;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 60px;
  }
  .hero-title br {
    display: none;
  }
}
.hero-area p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area p {
    font-size: 18px;
    margin: 0 50px;
    margin-bottom: 45px;
  }
  .hero-area p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-area p {
    font-size: 16px;
  }
  .hero-area p br {
    display: none;
  }
}
.hero-area .btn-border {
  font-weight: 600;
  font-size: 30px;
  padding: 18px 130px;
  border-radius: 1000px;
  border: 2px solid var(--oit-clr-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-area .btn-border {
    padding: 18px 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .btn-border {
    font-size: 22px;
    padding: 9px 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .btn-border {
    font-size: 22px;
    padding: 8px 50px;
  }
}
@media (max-width: 767px) {
  .hero-area .btn-border {
    font-size: 14px;
    padding: 4px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-area .btn-border {
    padding: 6px 50px;
  }
}
.hero-area .btn-border i {
  height: auto;
  width: auto;
  background-color: transparent;
}
.hero-area .btn-border i span {
  height: 33px;
  width: 33px;
}
@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) {
  .hero-area .btn-border i span {
    height: 25px;
    width: 25px;
  }
}
@media (max-width: 767px) {
  .hero-area .btn-border i span {
    height: 15px;
    width: 15px;
  }
}
@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) {
  .hero-area .btn-border i span svg {
    height: 25px;
    width: 25px;
  }
}
@media (max-width: 767px) {
  .hero-area .btn-border i span svg {
    height: 15px;
    width: 15px;
  }
}
.hero-area .btn-border:hover i svg:first-child {
  transform: translate(30px, -30px);
}
.hero-area .shape {
  position: absolute;
  bottom: 17%;
  right: 14%;
}

/*-------------------------------------*/
/*  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;
  background-color: var(--oit-clr-white);
  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), (max-width: 767px) {
  .feature-item {
    padding: 40px 25px 25px 25px;
  }
}
.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;
}
@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: 100px;
  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.3);
}
.feature-item.feature-style-3 p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: var(--oit-clr-white);
}
.feature-item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-right: 30px;
  color: var(--oit-grey-2);
}
@media (max-width: 767px) {
  .feature-item p {
    font-size: 16px;
  }
}
.feature-item .title {
  margin-bottom: 20px;
}
@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 .title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .feature-item .title {
    font-size: 27px;
  }
}
.feature-item .shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.feature-item .shape.shape-3 {
  right: -9%;
  bottom: -14%;
}
.feature-item .shape.shape-4 {
  top: -13%;
  left: -11%;
}
.feature-cat {
  margin-bottom: 20px;
}
.feature-cat > span {
  display: inline-block;
  padding: 6px 20px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  border-radius: 100px;
  border: 1px solid rgba(13, 13, 13, 0.3);
}
@media (max-width: 767px) {
  .feature-cat > span {
    padding: 3px 15px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.feature-cat > span:not(:last-child) {
  margin-right: 10px;
}

.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: 600;
  font-size: 70px;
  white-space: nowrap;
  line-height: 1.4;
  color: var(--oit-clr-black);
  font-family: var(--oit-ff-heading);
}
.text-slider-item span.storke-text {
  color: transparent;
  -webkit-text-stroke: 1px #494949;
}
.text-slider-item svg {
  display: inline-block;
}

@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: 80px;
    padding-bottom: 80px;
  }
}
.responsive-content p {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.33;
  margin-bottom: 50px;
  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-content p {
    font-size: 23px;
  }
}
.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 .thumb-2 {
  position: absolute;
  bottom: -6%;
  right: 14%;
}
@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-thumb .thumb-2 {
    padding-left: 0;
  }
}
.responsive-thumb .thumb-1 {
  padding-left: 65px;
}
@media (max-width: 767px) {
  .responsive-thumb .thumb-1 {
    padding-left: 0;
  }
}
.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 30px;
}
.demo-item {
  padding: 22px 20px;
  border-radius: 40px;
  padding-bottom: 0;
  border: 1px solid #d0d0d0;
  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: 30px;
  overflow: hidden;
  height: 100%;
}
.demo-thumb img {
  border-radius: 30px;
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #D0D0D0;
}
.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.6);
}
.demo-title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 0;
}
@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-title span {
  font-weight: 600;
  font-size: 30px;
  color: #a6a4a4;
}
@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-title span {
    font-size: 20px;
  }
}

@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) {
  .inner-area {
    padding-bottom: 80px;
  }
}
.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: 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) {
  .highlights-area {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
.highlights-item {
  overflow: hidden;
  border-radius: 30px;
  padding: 53px 30px 30px 30px;
  background-color: var(--oit-clr-white);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .highlights-item {
    padding: 40px 20px 20px 20px;
  }
}
.highlights-item .title {
  font-weight: 500;
  font-size: 90px;
  margin-bottom: 20px;
}
@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) {
  .highlights-item .title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .highlights-item .title {
    font-size: 30px;
  }
}
.highlights-item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  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) {
  .highlights-item p {
    font-size: 18px;
  }
}
@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) {
  .highlights-item p br {
    display: none;
  }
}
.highlights-item p a {
  color: var(--oit-theme-1);
}
.highlights-item .feature-cat {
  margin-bottom: 30px;
}
.highlights-item .feature-cat > span {
  padding: 2px 20px;
  background-color: rgba(32, 32, 32, 0.1);
}
.highlights-item img {
  border-radius: 10px;
}
.highlights-item .thumb-1 {
  box-shadow: 0 10px 140px 0 rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .highlights-item .thumb-1 {
    height: 500px;
  }
}
.highlights-item .thumb-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 0 10px 140px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .highlights-item .thumb-2 {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 767px) {
  .highlights-item .thumb-2 {
    width: 150px;
    height: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .highlights-item .thumb-2 {
    width: 250px;
    height: 350px;
  }
}
.highlights-item.style-2 {
  padding-bottom: 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), (max-width: 767px) {
  .highlights-item.style-2 p {
    margin-bottom: 99px !important;
  }
}
.highlights-item.style-3 {
  padding: 40px;
}
@media (max-width: 767px) {
  .highlights-item.style-3 {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .highlights-item.style-3 .highlights-thumb {
    margin-top: 50px;
  }
}
.highlights-item.style-3 img {
  border-radius: 30px;
}

.footer-content .subtitle {
  font-size: 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  padding: 6px 30px;
  margin-bottom: 10px;
  color: var(--oit-clr-white);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-content .subtitle {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .footer-content .subtitle {
    margin-bottom: 25px;
    font-size: 14px;
    padding: 6px 20px;
  }
}
.footer-content .subtitle svg {
  margin-right: 15px;
}
.footer-content .title {
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 70px;
  color: var(--oit-clr-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-content .title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-content .title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-content .title {
    font-size: 75px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-content .title {
    font-size: 65px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .footer-content .title {
    font-size: 45px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-content .title {
    font-size: 55px;
    margin-bottom: 60px;
  }
}
.footer-area {
  padding-top: 170px;
  padding-bottom: 210px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-area {
    padding: 120px 0;
  }
}
.footer-area .thumb-1 {
  position: absolute;
  top: 0;
  left: 40px;
  height: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-area .thumb-1 {
    width: 240px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area .thumb-1 {
    width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-area .thumb-1 {
    display: none;
  }
}
.footer-area .thumb-1 img {
  height: 100%;
  object-fit: cover;
}
.footer-area .thumb-2 {
  position: absolute;
  top: 0;
  right: 40px;
  height: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-area .thumb-2 {
    width: 240px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area .thumb-2 {
    width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-area .thumb-2 {
    display: none;
  }
}
.footer-area .thumb-2 img {
  height: 100%;
  object-fit: cover;
}
.footer-area .thumb-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .footer-area .thumb-3 {
    width: 550px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-area .thumb-3 {
    width: 550px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area .thumb-3 {
    width: 450px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-area .thumb-3 {
    display: none;
  }
}
.footer-area .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area .footer-btn-box {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-area .footer-btn-box {
    margin-bottom: 0;
  }
}
.footer-area .btn-border {
  font-weight: 600;
  font-size: 30px;
  padding: 18px 130px;
  border-radius: 1000px;
  text-transform: capitalize;
  border: 2px solid var(--oit-clr-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-area .btn-border {
    padding: 18px 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area .btn-border {
    font-size: 22px;
    padding: 9px 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .btn-border {
    font-size: 22px;
    padding: 8px 50px;
  }
}
@media (max-width: 767px) {
  .footer-area .btn-border {
    font-size: 18px;
    padding: 8px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .btn-border {
    padding: 6px 50px;
  }
}
.footer-area .btn-border i {
  height: auto;
  width: auto;
  background-color: transparent;
}
.footer-area .btn-border i span {
  height: 33px;
  width: 33px;
}
@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) {
  .footer-area .btn-border i span {
    height: 25px;
    width: 25px;
  }
}
@media (max-width: 767px) {
  .footer-area .btn-border i span {
    height: 15px;
    width: 15px;
  }
}
@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) {
  .footer-area .btn-border i span svg {
    height: 25px;
    width: 25px;
  }
}
@media (max-width: 767px) {
  .footer-area .btn-border i span svg {
    height: 15px;
    width: 15px;
  }
}
.footer-area .btn-border:hover i svg:first-child {
  transform: translate(30px, -30px);
}

.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;
  }
}

.fsz-45 {
  font-size: 45px !important;
}
@media (max-width: 767px) {
  .fsz-45 {
    font-size: 35px !important;
  }
}

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