/*----------------------------------------*/
/* 01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&display=swap" rel="stylesheet');
:root {
  /*@font family declaration*/
  --it-ff-body: 'DM Sans', serif;
  --it-ff-heading: 'Plus Jakarta Sans' sans-serif;
  --it-ff-poppins: 'Poppins Sans' sans-serif;
  --it-ff-bebas-neue: 'Bebas Neue' sans-serif;
  --it-ff-fontawesome: Font Awesome 6 Pro;
  /*@color declaration*/
  --it-common-white: #fff;
  --it-common-black: #000;
  --it-text-body: #5f6168;
  --it-theme-1: #2DC457;
  --it-gray-1: #D3D3D3;
  --it-border-1: #ebecf0;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1450px;
  }
  .container-1300 {
    max-width: 1300px;
  }
  .container-1500 {
    max-width: 1500px;
  }
  .container-1130 {
    max-width: 1130px;
  }
  .container-1470 {
    max-width: 1470px;
  }
}
/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  color: var(--it-text-body);
  font-family: var(--it-ff-body);
}

body, html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

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

img {
  max-width: 100%;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  color: var(--it-text-body);
  font-family: var(--it-ff-body);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  p {
    font-size: 16px;
  }
  p br {
    display: none;
  }
}

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

a,
.btn,
button,
input,
select,
textarea,
li,
img,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 30px;
  line-height: 60px;
  color: var(--it-common-black);
}
input::-webkit-input-placeholder {
  color: #757a7b;
}
input:-moz-placeholder {
  color: #757a7b;
}
input::-moz-placeholder {
  color: #757a7b;
}
input:-ms-input-placeholder {
  color: #757a7b;
}

textarea {
  outline: none;
  color: var(--it-common-black);
  width: 100%;
  padding: 0 30px;
  border: none;
}
textarea::-webkit-input-placeholder {
  color: #757a7b;
}
textarea:-moz-placeholder {
  color: #757a7b;
}
textarea::-moz-placeholder {
  color: #757a7b;
}
textarea:-ms-input-placeholder {
  color: #757a7b;
}

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(--it-common-black);
  color: var(--it-common-white);
  text-shadow: none;
}

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

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

*::-moz-placeholder {
  color: var(--it-common-black);
  font-size: var(--it-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--it-common-black);
  font-size: var(--it-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-100 img {
  width: 100%;
}

.fix {
  overflow: hidden;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.it-btn-white {
  font-weight: 500;
  font-size: 16px;
  padding: 18px 40px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  background-color: var(--it-common-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) {
  .it-btn-white {
    font-size: 14px;
    padding: 12px 25px;
  }
}
.it-btn-white span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  display: flex;
  align-items: center;
}
.it-btn-white span span {
  transition: 0.3s;
  color: var(--it-common-black);
}
.it-btn-white span span.text-1 {
  position: relative;
  display: block;
  transition: 0.3s;
}
.it-btn-white span span.text-2 {
  position: absolute;
  top: 100%;
  display: block;
  transition: 0.3s;
}
.it-btn-white span i {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
  display: inline-flex;
  margin-left: 10px;
}
.it-btn-white span i svg {
  transform: translateY(-1px);
  position: absolute;
  bottom: -1px;
  left: 1px;
  transition: all 0.2s ease-out;
}
.it-btn-white span i svg:last-child {
  left: -12px;
  bottom: -12px;
  transform: translate(0, 0);
  opacity: 0;
}
.it-btn-white:hover span span {
  color: var(--it-common-black);
}
.it-btn-white:hover span span.text-1 {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.it-btn-white:hover span span.text-2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.it-btn-white:hover span i svg:first-child {
  transform: translate(16px, -16px);
}
.it-btn-white:hover span i svg:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -12px);
}
.it-btn-white.theme-bg {
  background-color: var(--it-theme-1);
}
.it-btn-white.theme-bg span span {
  color: var(--it-common-white);
}
.it-btn-white.style-2 {
  background-color: #292A31;
}
.it-btn-white.style-2 span span {
  color: var(--it-common-white);
}
.it-btn-border {
  font-weight: 500;
  font-size: 16px;
  padding: 16px 40px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  text-transform: uppercase;
  border: 2px solid var(--it-common-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) {
  .it-btn-border {
    font-size: 14px;
    padding: 12px 25px;
  }
}
.it-btn-border span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}
.it-btn-border span span {
  transition: 0.3s;
  color: var(--it-common-white);
}
.it-btn-border span span.text-1 {
  position: relative;
  display: block;
  transition: 0.3s;
}
.it-btn-border span span.text-2 {
  position: absolute;
  top: 100%;
  display: block;
  transition: 0.3s;
}
.it-btn-border:hover span span {
  color: var(--it-common-white);
}
.it-btn-border:hover span span.text-1 {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.it-btn-border:hover span span.text-2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.it-btn-sm {
  font-weight: 500;
  font-size: 14px;
  padding: 12px 30px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  text-transform: uppercase;
  color: var(--it-common-white);
  background-color: var(--it-theme-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) {
  .it-btn-sm {
    font-size: 14px;
    padding: 10px 25px;
  }
}
.it-btn-sm span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}
.it-btn-sm span span {
  transition: 0.3s;
  color: var(--it-common-white);
}
.it-btn-sm span span.text-1 {
  position: relative;
  display: block;
  transition: 0.3s;
}
.it-btn-sm span span.text-2 {
  position: absolute;
  top: 100%;
  display: block;
  transition: 0.3s;
}
.it-btn-sm i {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
  display: inline-flex;
  margin-left: 10px;
}
.it-btn-sm i svg {
  transform: translateY(-1px);
  position: absolute;
  bottom: -1px;
  left: 1px;
  transition: all 0.2s ease-out;
}
.it-btn-sm i svg:last-child {
  left: -12px;
  bottom: -12px;
  transform: translate(0, 0);
  opacity: 0;
}
.it-btn-sm:hover span span {
  color: var(--it-common-white);
}
.it-btn-sm:hover span span.text-1 {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.it-btn-sm:hover span span.text-2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes translateX {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes translateY {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translatY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
/*--- preloader ---*/
.dark #preloader {
  background-color: var(--it-theme-1);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--it-theme-1);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

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

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    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(--it-common-white);
  cursor: pointer;
  background: var(--it-theme-1);
  transition: 1s ease;
  border: none;
}

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

/*---------------------------------------*/
/*Background color
/*-----------------------------------------*/
.black-bg {
  background: var(--it-common-black);
}

.theme-bg {
  background: var(--it-theme-1);
}

.gray-bg {
  background: var(--it-gray-1);
}

.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(--it-common-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(--it-common-white);
  background-color: var(--it-common-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(--it-theme-1);
}
.it-custom-accordion .accordion-buttons:not(.collapsed) .it-accordion-btn i, .it-custom-accordion .accordion-buttons:not(.collapsed) .it-accordion-btn svg {
  color: var(--it-common-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;
  }
}

/*----------------------------------------*/
/*  SEARCH CSS START
/*----------------------------------------*/
.it-section-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-section-title {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-section-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .it-section-title {
    font-size: 32px;
  }
  .it-section-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-section-title {
    font-size: 40px;
  }
}
.it-section-title span {
  color: var(--it-theme-1);
}
.it-section-title.fs-70 {
  font-size: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-section-title.fs-70 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-section-title.fs-70 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-section-title.fs-70 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .it-section-title.fs-70 {
    font-size: 30px;
  }
  .it-section-title.fs-70 br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-section-title.fs-70 {
    font-size: 40px;
  }
}
.it-section-title.fs-100 {
  font-size: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-section-title.fs-100 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-section-title.fs-100 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-section-title.fs-100 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .it-section-title.fs-100 {
    font-size: 38px;
  }
  .it-section-title.fs-100 br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-section-title.fs-100 {
    font-size: 55px;
  }
}
.it-section-subtitle {
  font-weight: 400;
  font-size: 20px;
  border-radius: 100px;
  padding: 12px 20px;
  display: inline-block;
  margin-bottom: 33px;
  color: var(--it-common-white);
  background: linear-gradient(90deg, #4c9100 0%, #89b24f 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-section-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .it-section-subtitle {
    font-size: 14px;
    padding: 4px 20px;
  }
}

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

.it-header-menu nav ul li {
  list-style-type: none;
  display: inline-block;
  margin: 0px 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-header-menu nav ul li {
    margin: 0 15px;
  }
}
.it-header-menu nav ul li a {
  padding: 20px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  color: var(--it-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-header-menu nav ul li a {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .it-header-area .it-btn-white {
    font-size: 13px;
    padding: 12px px;
  }
}

/*----------------------------------------*/
/*  hero css start
/*----------------------------------------*/
.it-hero-title {
  font-weight: 700;
  font-size: 80px;
  color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-hero-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-hero-title {
    font-size: 50px;
  }
  .it-hero-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .it-hero-title {
    font-size: 37px;
  }
  .it-hero-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-hero-title {
    font-size: 45px;
  }
  .it-hero-title br {
    display: none;
  }
}
.it-hero-title .shape {
  position: absolute;
  top: -90px;
  right: -21px;
}
.it-hero-title-box p {
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--it-common-white);
}
@media (max-width: 767px) {
  .it-hero-title-box p {
    font-size: 18px;
  }
}
.it-hero-bg {
  padding-top: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .it-hero-bg {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-hero-bg {
    padding-top: 180px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-hero-bg {
    padding-top: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-hero-bg {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .it-hero-bg {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-hero-bg {
    padding-top: 150px;
  }
}
.it-hero-img {
  margin-bottom: -55px;
}
@media (max-width: 767px) {
  .it-hero-img {
    margin-bottom: -20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-hero-img {
    margin-bottom: -40px;
  }
}
.it-hero-img-1 {
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .it-hero-img-1 {
    left: 3%;
  }
}
.it-hero-img-1 img {
  border-radius: 30px 30px 0 0;
}
.it-hero-img-3 {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .it-hero-img-3 {
    right: 3%;
  }
}
.it-hero-img-3 img {
  border-radius: 30px 30px 0 0;
}
.it-hero-btn-box {
  gap: 20px;
  display: inline-flex;
}

/*----------------------------------------*/
/*  demo css start
/*----------------------------------------*/
.it-feature-subtitle {
  font-weight: 400;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--it-common-white);
  background: linear-gradient(90deg, #4c9100 0%, #89b24f 100%);
}
@media (max-width: 767px) {
  .it-feature-subtitle {
    font-size: 14px;
    padding: 8px 17px;
  }
}
.it-feature-item {
  border-radius: 30px;
  background: #fafbff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 0 rgba(1, 6, 20, 0.1);
}
.it-feature-thumb img {
  border-radius: 30px;
}
.it-feature-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
}
.it-feature-content {
  padding: 30px 25px;
  padding-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-feature-content {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-feature-content p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-feature-content p {
    font-size: 16px;
  }
}
@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-area {
    padding-top: 80px;
  }
}
.it-feature-area .shape {
  position: absolute;
  top: -44%;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .it-feature-2-area {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .it-feature-2-area {
    padding-bottom: 60px;
  }
}
.it-feature-2-item {
  padding: 40px 20px;
  padding-bottom: 35px;
  border-radius: 10px;
  background: var(--it-common-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: 103px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .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: 26px;
  margin-bottom: 0;
  padding-top: 23px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-feature-2-item h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-feature-2-item h4 {
    font-size: 18px;
  }
}
@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;
  top: -45%;
  z-index: -1;
}

.it-demo-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}
.it-demo-title a {
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
}
.it-demo-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.it-demo-title-box p {
  max-width: 705px;
  margin: 0 auto;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.it-demo-title-box p.custom-width {
  max-width: 850px;
}
.it-demo-title-box .img-2 {
  position: absolute;
  top: 0;
  right: -40%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-demo-title-box .img-2 {
    right: -48%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .it-demo-title-box .img-2 {
    top: -10%;
    right: -50%;
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .it-demo-title-box .img-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .it-demo-title-box.mb-70 {
    margin-bottom: 40px;
  }
}
.it-demo-thumb {
  margin-bottom: 27px;
  position: relative;
  border-radius: 10px;
}
.it-demo-thumb img {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.it-demo-thumb::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  border-radius: 10px;
  transition: 0.3s;
  background-color: rgba(1, 15, 28, 0.3);
}
.it-demo-btn {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  opacity: 0;
  margin: 0 40px;
  visibility: hidden;
  text-align: center;
  transition: 0.4s;
  z-index: 22;
  transform: translateY(-40%);
}
.it-demo-btn .it-btn-sm {
  margin-bottom: 20px;
}
.it-demo-item {
  padding: 10px 10px 25px 10px;
  border-radius: 10px;
  background: var(--it-common-white);
  box-shadow: 0 0 30px 0 rgba(1, 6, 20, 0.1);
}
.it-demo-item:hover .it-demo-thumb::after {
  opacity: 1;
  visibility: visible;
}
.it-demo-item:hover .it-demo-btn {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.it-demo-area .shape {
  position: absolute;
  top: -4%;
  right: 5%;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .it-demo-area .shape {
    right: 1%;
  }
}

.it-inner-title-box .img-1 {
  position: absolute;
  bottom: 8%;
  left: -42%;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-inner-title-box .img-1 {
    max-width: 45%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .it-inner-title-box .img-1 {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .it-inner-title-box .img-1 {
    display: none;
  }
}
.it-inner-title-box .img-2 {
  position: absolute;
  bottom: 18%;
  right: -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) {
  .it-inner-title-box .img-2 {
    max-width: 50%;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .it-inner-title-box .img-2 {
    display: none;
  }
}
.it-inner-active {
  padding: 10px 0;
}
.it-inner-item {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.it-inner-item img {
  border-radius: 10px;
  width: 100%;
}
@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-inner-area {
    padding-bottom: 100px;
  }
}
.it-inner-area .shape {
  position: absolute;
  top: -46%;
  right: 0;
  left: 0;
  z-index: -1;
  margin: 0 auto;
}

.it-inner-dots .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  margin: 0 12px;
  position: relative;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #D9D9D9;
}
.it-inner-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--it-theme-1);
}

.big-text {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  font-weight: 700;
  font-size: 220px;
  text-align: center;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  display: flex;
  white-space: nowrap;
  justify-content: center;
  letter-spacing: -3px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .big-text {
    font-size: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .big-text {
    font-size: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .big-text {
    font-size: 120px;
  }
}
@media (max-width: 767px) {
  .big-text {
    font-size: 70px;
  }
}
.big-text.style-2 {
  color: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@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-element-area {
    padding-bottom: 50px;
  }
}
.it-element-area .shape {
  position: absolute;
  top: -70%;
  left: 0;
  z-index: -1;
}
.it-element-big-text {
  font-weight: 700;
  font-size: 250px;
  color: #000;
  margin-bottom: 0;
  letter-spacing: -5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-element-big-text {
    font-size: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-element-big-text {
    font-size: 100px;
  }
  .it-element-big-text br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-element-big-text {
    font-size: 100px;
  }
  .it-element-big-text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .it-element-big-text {
    font-size: 60px;
    letter-spacing: 0;
  }
  .it-element-big-text br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-element-big-text {
    font-size: 60px;
  }
}
.it-element-content .img-1 {
  position: absolute;
  top: 1%;
  left: 49%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-element-content .img-1 {
    max-width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-element-content .img-1 {
    top: -18%;
    left: 49%;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-element-content .img-1 {
    display: none;
  }
}
.it-element-content .img-2 {
  position: absolute;
  bottom: -3%;
  left: 51%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-element-content .img-2 {
    max-width: 60%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-element-content .img-2 {
    bottom: -15%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-element-content .img-2 {
    display: none;
  }
}
.it-element-content p {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 1.6;
  color: #686868;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-element-content p {
    font-size: 19px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .it-element-content p {
    font-size: 18px;
  }
  .it-element-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .it-element-content p {
    font-size: 16px;
  }
  .it-element-content p br {
    display: none;
  }
}
.it-element-content p span {
  font-weight: 700;
  color: var(--it-common-black);
}
.it-element-slider-item {
  direction: ltr;
  gap: 20px;
  height: 66px;
  padding: 0px 40px;
  line-height: 66px;
  border-radius: 10px;
  background: var(--it-common-white);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}
.it-element-slider-item span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--it-common-black);
}
.it-element-slider-active {
  padding: 20px 0;
}
.it-element-slider-active .swiper-slide {
  width: auto;
}
.it-element-slider-active .slider-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.it-responsive-mockup .shape {
  position: absolute;
  top: -16%;
  right: -8%;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .it-responsive-mockup .shape {
    top: -10%;
    right: -2%;
    z-index: -1;
    max-width: 23%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-responsive-mockup .shape {
    right: -2%;
    z-index: -1;
    max-width: 23%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-responsive-mockup .shape {
    right: -2%;
    z-index: -1;
    max-width: 23%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-responsive-mockup .shape {
    display: none;
  }
}
.it-responsive-mockup-2 {
  position: absolute;
  bottom: 0;
  left: -2%;
  animation: translateY 3s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-responsive-mockup-2 {
    height: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-responsive-mockup-2 {
    height: 260px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-responsive-mockup-2 {
    left: -4%;
    height: 200px;
    animation: unset;
  }
}
@media (max-width: 767px) {
  .it-responsive-mockup-2 {
    left: -4%;
    height: 90px;
    animation: unset;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-responsive-mockup-2 {
    left: -4%;
    height: 130px;
  }
}
.it-responsive-mockup-3 {
  position: absolute;
  right: -12%;
  bottom: -4%;
  animation: translateX 3s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-responsive-mockup-3 {
    height: 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-responsive-mockup-3 {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-responsive-mockup-3 {
    height: 250px;
    animation: unset;
  }
}
@media (max-width: 767px) {
  .it-responsive-mockup-3 {
    height: 100px;
    animation: unset;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-responsive-mockup-3 {
    height: 160px;
  }
}
.it-responsive-icon {
  margin-bottom: 30px;
}
.it-responsive-icon img {
  height: 79px;
}
@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) {
  .it-responsive-icon img {
    height: 60px;
  }
}
.it-responsive-content span {
  font-weight: 500;
  font-size: 30px;
  color: #000;
  display: block;
  margin-bottom: 4px;
}
@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-responsive-content span {
    font-size: 20px;
  }
}
.it-responsive-content p {
  font-weight: 400;
  font-size: 16px;
  color: #686868;
  text-transform: capitalize;
}
@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-responsive-content p {
    font-size: 14px;
  }
}
.it-responsive-device-border::after {
  content: "";
  position: absolute;
  top: 0;
  right: -7%;
  width: 1px;
  height: 100%;
  background: #D9D9D9;
}
@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-responsive-device-border::after {
    display: none;
  }
}
.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: 70px;
  }
}

.it-copyright-text p {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-copyright-text p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-copyright-text p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .it-copyright-text p {
    font-size: 14px;
  }
}
.it-copyright-text p a {
  color: var(--it-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-copyright-social {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-copyright-social {
    margin: 0 -10px;
  }
}
@media (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(--it-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-copyright-social a {
    width: 33px;
    height: 33px;
    margin: 0 1px;
    line-height: 30px;
  }
}
.it-copyright-social a svg {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-copyright-social a svg {
    height: 13px;
  }
}
.it-copyright-social a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  height: 100px;
  width: 100px;
  border-radius: 5px;
  transform: scale(0);
  transition: 0.5s ease;
  background-color: var(--it-theme-1);
}
.it-copyright-social a:hover::after {
  top: 50%;
  left: 50%;
  transform: scale(1) translate(-50%, -50%);
}
.it-copyright-border {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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