:root {
  --hi-ff-fontawesome: "Font Awesome 6";
  --hi-common-white: #fff;
  --hi-common-black: #000;
  --hi-grey-1: #6f6f6f;
  --hi-grey-2: #f0f0f0;
  --hi-theme-primary: #cbca7b;
  --hi-border-1: rgba(28, 29, 31, 0.15);
}

/*=============================
	Typography css start
===============================*/
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--hi-common-black);
  line-height: 30px;
}

img,
.img {
  max-width: 100%;
  -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,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  text-decoration: none;
  -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,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--hi-common-black);
  text-decoration: none;
}

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

li {
  list-style: none;
}

.scrool-bar::-webkit-scrollbar {
  width: 5px;
  display: block;
  overflow: hidden;
  position: relative;
  margin-left: 5px;
}

.scrool-bar::-webkit-scrollbar-thumb {
  background-color: #e1e1e1;
  outline: 1px solid #e1e1e1;
}

.scrool-bar::-mos-webkit-scrollbar-thumb {
  background-color: #e1e1e1;
  outline: 1px solid #e1e1e1;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: var(--hi-common-white);
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 15px;
  color: var(--hi-common-black);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #a2a9ac;
}
textarea{
  line-height: 18px;
}
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 {
  color: var(--hi-common-black);
}
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 {
  color: var(--hi-common-black);
}
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 {
  color: var(--hi-common-black);
}
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 {
  color: var(--hi-common-black);
}
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 {
  color: var(--hi-common-black);
}
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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--hi-common-black);
  font-weight: 700;
   
  line-height: 1.1;
  text-transform: unset;
  letter-spacing: -0.02em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 32px;
 }

label {
  color: var(--hi-common-black);
  cursor: pointer;
}

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

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

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

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--hi-common-black);
}

*::-moz-placeholder {
  color: var(--hi-common-black);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--hi-common-black);
  font-size: 16px;
  opacity: 1;
}

/*=============================
    - Common Classes
===============================*/
.ovh {
  overflow: hidden;
}

.clear {
  clear: both;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.lh-28 {
  line-height: 28px;
}

.hi-round-15 {
  border-radius: 15px;
}

.hi-round-25 {
  border-radius: 25px;
}

.hi-rounded-10 {
  border-radius: 10px;
}

.hi-rounded-full {
  border-radius: 400px;
}

.z-index-m-1 {
  z-index: -1;
}

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

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

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

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

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

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

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

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

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

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

.z-index-999 {
  z-index: 999;
}

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

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

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

.hi-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.fix {
  overflow: hidden;
}

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

.lh-1 {
  line-height: 1;
}

/*=============================
    - Bootstrap Custom
=============================*/
.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hi-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.rounded-circale {
  border-radius: 50%;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-inherit {
  position: inherit !important;
}

@media (min-width: 1400px) {
  .container-1710 {
    max-width: 1710px;
  }
}
/*=============================
	04. Button
===============================*/
.hi-btn {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--hi-common-white);
  border-radius: 30px;
  padding: 17px 30px;
  display: inline-block;
  line-height: 1;
  background: #ec008c;
   
}
.hi-btn:hover {
  color: var(--hi-common-white);
}
.hi-btn-primary {
  background: var(--hi-theme-primary);
  color: var(--hi-common-black);
}
.hi-btn-primary:hover {
  color: var(--hi-common-black);
}
.hi-btn-white {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
}
.hi-btn-white:hover {
  color: var(--hi-common-black);
}
.hi-btn-hover:hover .hover-effect .effect-1 {
  top: -100%;
}
.hi-btn-hover .hover-effect {
  position: relative;
  overflow: hidden;
  display: block;
  height: 17px;
  line-height: normal;
}
.hi-btn-hover .hover-effect .effect-1 {
  display: block;
  height: 100%;
  position: relative;
  top: 0%;
  transition: 0.3s;
}
.hi-btn-rounded {
  width: 150px;
  height: 150px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--hi-common-black);
  border: 1px solid var(--hi-common-black);
  background: transparent;
  border-radius: 50%;
   
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--hi-common-black);
  line-height: 1.3;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}
.hi-btn-rounded span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 43px;
}
.hi-btn-rounded span svg {
  margin-top: 7px;
}
.hi-btn-rounded:hover {
  color: var(--hi-common-white);
}
.hi-btn-rounded:hover .hi-btn-circle-dot {
  width: 520px;
  height: 520px;
}
.hi-btn-rounded-black {
  background: var(--hi-common-black);
  color: var(--hi-common-white);
}
.hi-btn-rounded-black:hover {
  border-color: var(--hi-theme-primary);
  background: transparent;
  color: var(--hi-common-black);
}
.hi-btn-rounded-black .hi-btn-circle-dot {
  background: var(--hi-theme-primary);
}
.hi-btn-rounded-primary {
  background: var(--hi-theme-primary);
  color: var(--hi-common-black);
  border-color: var(--hi-theme-primary);
}
.hi-btn-rounded-primary:hover {
  border-color: var(--hi-theme-primary);
  background: transparent;
  color: var(--hi-common-white);
}
.hi-btn-rounded-primary .hi-btn-circle-dot {
  background: var(--hi-common-black);
}
.hi-btn-rounded-white {
  background: transparent;
  color: var(--hi-common-white);
  border-color: var(--hi-common-white);
}
.hi-btn-rounded-white:hover {
  border-color: var(--hi-theme-primary);
  background: transparent;
  color: var(--hi-common-black);
}
.hi-btn-rounded-white .hi-btn-circle-dot {
  background: var(--hi-theme-primary);
}
.hi-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 0px;
  height: 0px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--hi-common-black);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  z-index: -1;
}
.hi-btn-two {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--hi-common-white);
  border-radius: 30px;
  padding: 15px 48px;
  background: var(--hi-common-black);
  transition: all 0.3s ease-in-out;
   
  border: 1px solid var(--hi-common-black);
}
.hi-btn-two:hover {
  color: var(--hi-common-black);
  background: var(--hi-common-white);
}
.hi-btn-two-white {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
  padding: 19px 34px;
}
.hi-btn-two-white:hover {
  background: var(--hi-theme-primary);
}

/*=============================
    08. Preloader
===============================*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--hi-common-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: block;
  width: 45px;
  height: 45px;
}

.preloader-inner span {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 37px;
  height: 37px;
  margin: 4px;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: preloader 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #00fff3 transparent transparent transparent;
}

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

.preloader-inner span:nth-child(2) {
  animation-delay: -0.2s;
}

.preloader-inner span:nth-child(3) {
  animation-delay: -0.3s;
}

@-webkit-keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*=============================
    02. background
===============================*/
.tgbg-primary {
  background: var(--hi-theme-primary);
}

.tgbg-grey {
  background: var(--hi-grey-2);
}

.tgbg-black {
  background: var(--hi-common-black);
}

.tgbg-black-2 {
  background: rgba(255, 255, 255, 0.06);
}

/*=============================
	 07. OffCanvas
===============================*/
.offCanvas-toggle {
  position: relative;
  margin-right: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offCanvas-toggle {
    margin-right: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 575px) {
  .offCanvas-toggle {
    display: none;
  }
}
.offCanvas-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--hi-border-1);
}
.offCanvas-toggle .menu-tigger {
  color: var(--hi-common-black);
}
.offCanvas-toggle .menu-tigger:hover {
  color: var(--hi-theme-primary);
}
.offCanvas-toggle-two {
  margin-right: 0;
  padding-right: 0;
  padding-left: 40px;
}
.offCanvas-toggle-two::before {
  right: auto;
  left: 0;
  height: 104px;
}

.offCanvas__info {
  background: var(--hi-common-white) none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  padding-top: 80px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 400px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
@media (max-width: 575px) {
  .offCanvas__info {
    width: 100%;
  }
}
.offCanvas__info.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offCanvas__info::-webkit-scrollbar {
  width: 0px;
}
.offCanvas__close-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.offCanvas__close-icon button {
  color: var(--hi-common-white);
  cursor: pointer;
  font-size: 24px;
  padding: 0;
  transition: all 0.4s ease;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: var(--hi-common-black);
}
.offCanvas__close-icon button:hover {
  color: var(--hi-common-black);
  background: var(--hi-theme-primary);
}
.offCanvas__logo img {
  max-height: 34px;
}
.offCanvas__social-icon span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: var(--hi-common-black);
  display: block;
  margin-bottom: 15px;
}
.offCanvas__social-icon a {
  color: var(--hi-common-black);
  display: inline-block;
  margin-right: 5px;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 1px solid var(--hi-border-1);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.offCanvas__social-icon a svg {
  transform: translateY(-2px);
  width: 16px !important;
}
.offCanvas__social-icon a:hover {
  background: var(--hi-theme-primary);
  color: var(--hi-common-white);
}
.offCanvas__overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -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;
}
.offCanvas__overly.active {
  opacity: 0.7;
  visibility: visible;
}

.contact-list h4 {
  color: var(--hi-common-black);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 15px;
}
.contact-list a {
  margin: 0;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--hi-common-black);
  line-height: 26px;
  display: flex;
  align-items: center;
}
.contact-list a i {
  font-size: 20px;
  width: 20px;
  margin-right: 15px;
}
.contact-list a:hover {
  color: var(--hi-theme-primary);
}

.offcanvas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}
.offcanvas-gallery .popup-image {
  position: relative;
}
.offcanvas-gallery .popup-image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--hi-theme-primary);
  top: 0;
  left: 0;
  opacity: 0.6;
  transform: scale(0);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.offcanvas-gallery .popup-image:hover::after {
  transform: scale(1);
}
.offcanvas-title-wrap h3 {
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.01em;
}

/*=========================
      03. Breadcrumb
===========================*/
.hi-breadcrumb-spacing {
  padding-top: 270px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-breadcrumb-spacing {
    padding-top: 170px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .hi-breadcrumb-spacing {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.hi-breadcrumb-title {
  font-weight: 700;
  font-size: 100px;
  line-height: 110%;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hi-breadcrumb-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-breadcrumb-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hi-breadcrumb-title {
    font-size: 35px;
  }
}
.hi-breadcrumb-service-spacing {
  padding: 45px 0px 35px 0px;
}
.hi-breadcrumb-navigation-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 183%;
}
@media (max-width: 575px) {
  .hi-breadcrumb-navigation-title {
    font-size: 40px;
  }
}
.hi-breadcrumb-navigation ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-breadcrumb-navigation ul {
    justify-content: inherit;
  }
}
.hi-breadcrumb-navigation ul li {
  font-weight: 500;
  font-size: 16px;
  color: var(--hi-common-black);
  margin-left: 13px;
}

.hi-text-slide-bigtext {
  font-weight: 800;
  font-size: 130px;
  line-height: 108%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--hi-common-black);
  -webkit-text-stroke-width: 1px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-text-slide-bigtext {
    font-size: 90px;
  }
}
.hi-text-slide-active .swiper-slide {
  width: auto !important;
}

/*=============================
    09. Scroll Top
===============================*/
.scroll__top {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: fixed;
  bottom: -10%;
  right: 15px;
  font-size: 16px;
  border-radius: 0;
  z-index: 99;
  color: var(--hi-common-white);
  text-align: center;
  cursor: pointer;
  background: var(--hi-common-black);
  transition: 1s ease;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 575px) {
  .scroll__top {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 575px) {
  .scroll__top.open {
    bottom: 15px;
  }
}
.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll__top:hover {
  background: var(--hi-theme-primary);
  color: var(--hi-common-white);
}

/*=============================
	11. Section Title
===============================*/
.hi-section-subtitle {
  font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--hi-common-black);
    display: inline-block;
     
    position: relative;
}
.hi-section-subtitle::before{
        content: "";
    background-image: url(../img/pattern-left.svg);
    position: absolute;
    left: -70px;
    height: 17px;
    z-index: 1;
    width: 60px;
    background-repeat: repeat-x;
    top: 7px;
}
.hi-section-subtitle::after{
        content: "";
    background-image: url(../img/pattern-right.svg);
    position: absolute;
    right: -70px;
    height: 17px;
    z-index: 1;
    width: 60px;
    background-repeat: repeat-x;
    top: 7px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-section-title {
    font-size: 30px;
  }
  .hi-section-title br {
    display: none;
  }
}

/*=============================
	05. Mobile Menu
===============================*/
.tgmobile__search {
  padding: 0 20px 25px 25px;
}
.tgmobile__search form {
  position: relative;
}
.tgmobile__search input {
  border: 1px solid #d9e1e1;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  background: var(--hi-common-white);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  padding-right: 50px;
  color: var(--hi-grey-1);
}
.tgmobile__search input:focus {
  border-color: var(--hi-common-black);
}
.tgmobile__search input::placeholder {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--hi-grey-1);
}
.tgmobile__search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--hi-common-black);
}
.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 350px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 9991;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}
@media (max-width: 575px) {
  .tgmobile__menu {
    width: 100%;
  }
}
.tgmobile__menu .navbar-collapse {
  display: block !important;
}
.tgmobile__menu .nav-logo {
  position: relative;
  padding: 15px 15px;
  text-align: left;
  background: #ab3e97;
}
.tgmobile__menu .nav-logo img {
  width: 230px;
}
.tgmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}
.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hi-common-white);
  background: var(--hi-common-black);
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--hi-common-white);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--hi-common-white);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--hi-common-black);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: var(--hi-common-white);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}
.tgmobile__menu .navigation li > a {
  position: relative;
  display: block;
  padding: 13px 60px 13px 25px;
  font-size: 15px;
  font-weight: 600;
  color: var(--hi-common-black);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
  letter-spacing: 1px;
  line-height: 1;
}
.tgmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--hi-common-black);
  pointer-events: none;
}
.tgmobile__menu .navigation li ul li > a {
  margin-left: 20px;
}
.tgmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}
.tgmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}
.tgmobile__menu .navigation li > .sub-menu {
  display: none;
}
.tgmobile__menu .navigation li > .sub-menu > li > ul {
  display: none;
}
.tgmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}
.tgmobile__menu .navigation ul li a {
  display: block;
}
.tgmobile__menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation > li.active > a::before {
  height: 100%;
}
.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 23px;
}
.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}
.tgmobile__menu .social-links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.tgmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}
.tgmobile__menu .social-links ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 22px;
  color: var(--hi-common-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tgmobile__menu .social-links ul li a svg {
  width: 18px;
}
.tgmobile__menu .social-links ul li a:hover {
  color: var(--hi-grey-1);
}
.tgmobile__menu .tgmenu__action {
  padding: 0 0;
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}
.tgmobile__menu .tgmenu__action > ul li {
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul .header-btn {
  display: block;
}
.tgmobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--hi-common-white);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}
.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--hi-color-white-default);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .tgmobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-visible .tgmobile__menu-backdrop {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .tgmobile__menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
/*=============================
    01. Animation
===============================*/
@-webkit-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@-moz-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@-ms-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(1);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(1);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes upslide {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-20px);
  }
}
.upslide {
  animation: upslide 4s linear forwards infinite alternate;
}

.hi-rotate {
  -webkit-animation: rotate-infinite 15s linear infinite;
  animation: rotate-infinite 15s linear infinite;
}

@-webkit-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-ms-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*=============================
	10. Search
===============================*/
.search__popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--hi-common-white);
  backdrop-filter: blur(10px);
  z-index: 99999999;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
}
.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
}
.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search__popup.search-opened .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}
.search__input {
  position: relative;
  height: 80px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -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;
  transition-delay: 0.5s;
  opacity: 0;
}
.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--hi-common-black);
  transition-delay: 0.3s;
  -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;
}
.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--hi-common-black);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search__input input::placeholder {
  font-size: 24px;
  color: var(--hi-grey-1);
}
.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--hi-common-black);
  border: none;
  padding: 0 0;
  background: transparent;
}
.search__close {
  position: absolute;
  top: 10%;
  right: 2%;
  z-index: 2;
}
.search-close-btn {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--hi-common-black);
  cursor: pointer;
  background: transparent;
}
.search-close-btn:hover {
  color: var(--hi-theme-primary);
}
.search-popup-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  -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;
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
  background: #000d25;
}
.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.55;
  visibility: visible;
  transition-delay: 0s;
}

.search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--hi-theme-primary);
  transition: all 0.5s;
  z-index: 1;
}
.search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

/*=============================
	12. spacing default responsive
===============================*/
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-170 {
    padding-top: 115px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-165 {
    padding-top: 110px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-160 {
    padding-top: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-155 {
    padding-top: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-150 {
    padding-top: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-145 {
    padding-top: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-140 {
    padding-top: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-135 {
    padding-top: 95px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-130 {
    padding-top: 90px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-125 {
    padding-top: 85px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-115 {
    padding-top: 75px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-110 {
    padding-top: 70px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-105 {
    padding-top: 65px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-100 {
    padding-top: 60px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-170 {
    padding-bottom: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-165 {
    padding-bottom: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-160 {
    padding-bottom: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-155 {
    padding-bottom: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-145 {
    padding-bottom: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-140 {
    padding-bottom: 100px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-135 {
    padding-bottom: 95px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-125 {
    padding-bottom: 85px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-115 {
    padding-bottom: 75px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-110 {
    padding-bottom: 70px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-105 {
    padding-bottom: 65px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-95 {
    padding-bottom: 55px;
  }
}

@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

/*=============================
	06. Nice Select
===============================*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 15px;
  font-weight: normal;
  line-height: 58px;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  width: 100%;
  text-transform: uppercase;
  height: 60px;
  color: var(--tp-grey-1);
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select .current {
  font-size: 15px;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: var(--hi-theme-primary);
}
.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 20px;
  font-size: 18px;
  font-family: var(--hi-ff-fontawesome);
  color: var(--hi-common-black);
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*=============================
    12. header
===============================*/
.hi-header-search {
  width: 60px;
  height: 60px;
  border: 1px solid var(--hi-common-black);
  border-radius: 50%;
  color: var(--hi-common-black);
}
.hi-header-search i {
  font-weight: 500;
}
.hi-header-4-right .hi-header-search {
  border: 1px solid var(--hi-common-white);
  color: var(--hi-common-white);
}
.hi-header-4-right .tgmenu-offcanvas-open-bar {
  border: 1px solid var(--hi-common-white);
}
.hi-header-4-right .tgmenu-offcanvas-open-bar span {
  background: var(--hi-common-white);
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background: transparent;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.header-sticky .tgmenu__navbar-wrap > ul > li > a {
  padding: 34.5px 0px;
}
.header-sticky .tgmenu-main-4 > ul > li > a {
  color: var(--hi-common-black);
}
.header-sticky .hi-header-logo .logo-1 {
  display: none;
}
.header-sticky .hi-header-logo .logo-2 {
  display: block !important;
}
.header-sticky .hi-header-4-right .hi-header-search {
  border: 1px solid var(--hi-common-black);
  color: var(--hi-common-black);
}
.header-sticky .hi-header-4-right .tgmenu-offcanvas-open-bar {
  border: 1px solid var(--hi-common-black);
}
.header-sticky .hi-header-4-right .tgmenu-offcanvas-open-bar span {
  background: var(--hi-common-black);
}

/*=============================
    14. Menu
===============================*/
.tgmenu__navbar-wrap > ul > li {
  display: inline-block;
  position: relative;
  list-style: none;
}
.tgmenu__navbar-wrap > ul > li:not(:last-child) {
  margin-right: 24px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tgmenu__navbar-wrap > ul > li:not(:last-child) {
    margin-right: 15px;
  }
  .hi-header-btn .hi-btn{
        padding: 15px 25px;
  }
}
.tgmenu__navbar-wrap > ul > li > a {
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
   padding: 45px 0px;
   
}
.tgmenu__navbar-wrap > ul > li > a:hover .effect-1 {
  top: -100%;
}
 
.tgmenu__navbar-wrap > ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 250px;
  background: var(--hi-common-white);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -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;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 0;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.tgmenu__navbar-wrap > ul > li .sub-menu.sub-menu-right {
  right: 0;
  left: auto;
}
.tgmenu__navbar-wrap > ul > li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}
.tgmenu__navbar-wrap > ul > li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
}
.tgmenu__navbar-wrap > ul > li .sub-menu li a {
  padding: 6px 15px 6px 25px;
  font-weight: 500;
  font-size: 16px;
  display: block;
  color: var(--hi-common-black);
  margin: 0;
   
  text-transform: capitalize;
}
.tgmenu__navbar-wrap > ul > li .sub-menu li:hover > a, .tgmenu__navbar-wrap > ul > li .sub-menu li.active > a {
  color: var(--hi-theme-primary);
}
.tgmenu__navbar-wrap > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tgmenu__navbar-wrap > ul > li.active > a, .tgmenu__navbar-wrap > ul > li:hover > a {
  color: #ffffff !important;
}
.tgmenu-offcanvas-open-bar {
  background: transparent;
  position: relative;
  height: 60px;
  width: 60px;
  border: 1px solid var(--hi-common-black);
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  padding-top: 20px;
  cursor: pointer;
  min-width: 60px;
}
@media (max-width: 575px) {
  .tgmenu-offcanvas-open-bar {
        height: 40px;
        width: 40px;
        padding-top: 12px;
        min-width: 40px;
  }
}
.tgmenu-offcanvas-open-bar:hover span:nth-child(2) {
  transform: translateX(0);
}
.tgmenu-offcanvas-open-bar span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--hi-common-black);
  margin: auto;
  transition: 0.4s;
}
.tgmenu-offcanvas-open-bar span:not(:last-child) {
  margin-bottom: 6px;
}
.tgmenu-offcanvas-open-bar span:nth-child(2) {
  transform: translateX(2px);
}
.tgmenu-link-effect {
  position: relative;
  overflow: hidden;
  display: block;
  height: 17px;
  line-height: normal;
}
.tgmenu-link-effect .effect-1 {
  display: block;
  height: 100%;
  position: relative;
  top: 0%;
  transition: 0.3s;
}
.tgmenu__wrap-two .tgmenu__navbar-wrap > ul > li.active > a, .tgmenu__wrap-two .tgmenu__navbar-wrap > ul > li:hover > a {
  color: var(--hi-common-black) !important;
}
.tgmenu-main-4 > ul > li > a {
  color: var(--hi-common-white);
}

.hi-menu-full {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
  z-index: 999;
  background: var(--hi-common-white);
  box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
  overflow: hidden;
  margin: auto;
}
.hi-menu-full .hi-full-wrapper {
  padding: 30px 30px 0px 30px;
}
.hi-menu-full .hi-full-wrapper .full {
  margin-bottom: 25px;
}
.hi-menu-full .hi-full-wrapper .full-thumb {
  height: 250px;
  border-radius: 4px;
}
@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: 575px) {
  .hi-menu-full .hi-full-wrapper .full-thumb {
    height: auto;
  }
}
.hi-menu-full .hi-full-wrapper .full-thumb a {
  padding: 0;
}
.hi-menu-full .hi-full-wrapper .full-thumb img {
  transition: all 0.4s ease;
  object-fit: cover;
}
.hi-menu-full .hi-full-wrapper .full-thumb:hover img {
  transform: scale(1.06);
}
.hi-menu-full .hi-full-wrapper .full-thumb-wrap {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.hi-menu-full .hi-full-wrapper .full-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--hi-common-black);
}
.hi-menu-full .hi-full-wrapper .full-title.active a {
  color: var(--hi-theme-primary);
}
.hi-menu-full .hi-full-wrapper .full-title a {
  padding: 0;
  color: var(--hi-common-black);
}
.hi-menu-full .hi-full-wrapper .full-title a:hover {
  color: var(--hi-theme-primary);
}
.hi-menu-full .hi-full-wrapper .comeing-soon .full-thumb {
  position: relative;
}
.hi-menu-full .hi-full-wrapper .comeing-soon .full-thumb::before {
  position: absolute;
  z-index: 22;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

/*=============================
    	13. hero
===============================*/
.hi-hero-content {
  padding-left: 125px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), 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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-content {
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-content {
    padding-top: 0px;
    padding-bottom: 40px;
   }
}
.hi-hero-title {
  font-weight: bold;
  font-size: 90px;
  line-height: 1;
  color: #fff;
  padding: 10px;
  
}
.hi-hero-content h4{
    font-size: 20px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), 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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-title {
    font-size: 70px;
  }
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-title {
    font-size: 60px;
  }
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hi-hero-title {
    font-size: 38px;
  }
}
.hi-hero-title img {
  margin-left: -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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-title img {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .hi-hero-title img {
    width: 70px;
    margin-left: 0;
  }
}
.hi-hero-thumb {
    float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-thumb {
    float: inherit;
    padding-top: 0px;
  }
  .hi-hero-thumb img {
    width: 100%;
  }
}
.hi-hero-spacing {
  padding-top: 65px;
}
.hi-hero-bigtext {
  font-weight: 300;
  font-size: 65px;
  line-height: 1;
  color: #27b3a7;
  margin-bottom: 0;
  letter-spacing: 3px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-bigtext {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hi-hero-bigtext {
    font-size: 55px;
  }
}
.hi-hero-text-slide-active {
  margin-top: -90px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-text-slide-active {
    margin-top: -100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-text-slide-active {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .hi-hero-text-slide-active {
    margin-top: 0;
  }
}
.hi-hero-text-slide-active .swiper-slide {
  width: auto !important;
}
.hi-hero-text-shape {
  position: absolute;
  bottom: 36px;
  left: 0;
  width: 100%;
  z-index: 22;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-text-shape {
    bottom: 23px;
  }
}
.hi-hero-2-spacing {
  padding-top: 245px;
  padding-bottom: 195px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-2-spacing {
    padding-top: 170px;
    padding-bottom: 110px;
  }
}
.hi-hero-2-title {
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hi-hero-2-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-2-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hi-hero-2-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-2-title {
    font-size: 40px;
  }
  .hi-hero-2-title br {
    display: none;
  }
}
.hi-hero-2-para {
  padding-right: 587px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hi-hero-2-para {
    padding-right: 415px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-2-para {
    padding-right: 318px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-2-para {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .hi-hero-2-para {
    flex-direction: column;
  }
}
.hi-hero-2-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.hi-hero-2-shape-two {
  position: absolute;
  right: 195px;
  bottom: 210px;
}
@media (max-width: 575px) {
  .hi-hero-2-shape-two {
    display: none;
  }
}
.hi-hero-2-thumb {
  position: absolute;
  right: 0;
  top: 175px;
  z-index: -1;
  width: 55%;
  height: 92%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-2-thumb {
    position: inherit;
    margin-top: 30px;
    width: 100%;
  }
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-2-btn {
    margin-right: 20px;
  }
}
.hi-hero-3-title {
  font-weight: 700;
  font-size: 87px;
  line-height: 122%;
  letter-spacing: 0px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hi-hero-3-title {
    font-size: 35px;
  }
}
.hi-hero-3-banner {
  flex-wrap: wrap;
  padding: 17px 115px 17px 30px;
  transform: translateY(-13px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-banner {
    transform: translateY(1px);
  }
}
@media (max-width: 575px) {
  .hi-hero-3-banner {
    padding: 11px 15px 11px 15px;
  }
}
.hi-hero-3-banner span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  line-height: 1;
   
  letter-spacing: 0px;
}
.hi-hero-3-roundedtext {
  width: 72px;
  height: 72px;
  display: inline-block;
  background: var(--hi-theme-primary);
  line-height: 56px;
  text-align: center;
  border-radius: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-roundedtext {
    display: none;
  }
}
.hi-hero-3-roundedtext .shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.hi-hero-3-para {
  margin-left: 670px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-3-para {
    margin-left: 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-para {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .hi-hero-3-para {
    flex-wrap: wrap;
  }
}
.hi-hero-3-spacing {
  padding-top: 120px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-spacing {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .hi-hero-3-spacing {
    padding-top: 30px;
  }
}
.hi-hero-3-shape {
  margin-top: -20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-shape {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.hi-hero-3-shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.hi-hero-3-transparent-text {
  font-weight: 800;
  font-size: 300px;
  color: #f0f0f0;
  position: absolute;
  bottom: 96px;
  left: 0;
  line-height: 1;
  z-index: -1;
   
  margin-left: -135px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-3-transparent-text {
    font-size: 163px;
    margin-left: -50px;
    bottom: 158px;
  }
}
@media (max-width: 575px) {
  .hi-hero-3-transparent-text {
    font-size: 100px;
  }
}
.hi-hero-4-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hi-hero-4-btn {
  padding-top: 252px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-4-btn {
    padding-top: 50px;
  }
}
.hi-hero-4-spacing {
  padding-top: 135px;
  padding-bottom: 50px;
}
.hi-hero-4-right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .hi-hero-4-right-shape {
    width: 80px;
  }
}
.hi-hero-4-text-slide-active .swiper-slide {
  width: auto !important;
}
.hi-hero-4-bigtext {
  font-weight: 800;
  font-size: 140px;
  line-height: 100%;
  color: var(--hi-common-white);
  transition: all 0.4s ease;
}
.hi-hero-4-bigtext:hover {
  filter: blur(7px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-4-bigtext {
    font-size: 90px;
  }
}
.hi-hero-4-bigtext:hover {
  backdrop-filter: blur(14px);
}
.hi-hero-5-content {
  margin-left: 100px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), 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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-content {
    margin-left: 0;
  }
}
.hi-hero-5-spacing {
  padding-top: 160px;
  padding-bottom: 210px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-hero-5-spacing {
    padding-top: 120px;
  }
}
@media (max-width: 575px) {
  .hi-hero-5-spacing {
    padding-top: 90px;
    padding-bottom: 110px;
  }
}
.hi-hero-5-title {
  font-weight: 700;
  font-size: 180px;
  line-height: 100%;
  letter-spacing: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hi-hero-5-title {
    font-size: 140px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-5-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hi-hero-5-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-title {
    font-size: 80px;
  }
  .hi-hero-5-title span {
    margin-left: 0;
  }
  .hi-hero-5-title img {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-hero-5-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hi-hero-5-title {
    font-size: 34px;
  }
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-title .star {
    width: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-title .star {
    width: 50px;
    transform: translateY(-6px);
  }
}
@media (max-width: 575px) {
  .hi-hero-5-title .star {
    width: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-5-title .avatar {
    width: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-title .avatar {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .hi-hero-5-title .avatar {
    width: 60px;
  }
}
.hi-hero-5-para {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-para br {
    display: none;
  }
}
.hi-hero-5-text {
  margin-top: -143px;
  margin-left: -30px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-text {
    margin-top: -120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hi-hero-5-text {
    margin-top: -74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-text {
    margin-top: 40px;
    margin-left: 0;
  }
}
.hi-hero-5-shape {
  position: absolute;
  bottom: 0;
  left: 80px;
  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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-shape {
    left: 0;
    width: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-shape {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .hi-hero-5-shape {
    width: 100px;
  }
}
.hi-hero-5-shape-two {
  position: absolute;
  bottom: -80px;
  right: 172px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-shape-two {
    width: 150px;
    bottom: -40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-5-shape-two {
    right: 0;
  }
}
@media (max-width: 575px) {
  .hi-hero-5-shape-two {
    width: 100px;
  }
}
.hi-hero-6-spacing {
  padding-top: 127px;
  padding-bottom: 180px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-spacing {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-content {
    margin-bottom: 20px;
  }
}
.hi-hero-6-title {
  font-weight: 700;
  font-size: 90px;
  line-height: 111%;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-hero-6-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hi-hero-6-title {
    font-size: 44px;
  }
}
.hi-hero-6-thumb {
  position: absolute;
  bottom: -209px;
  left: 0;
  width: 50%;
  height: 540px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-thumb {
    width: 48%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hi-hero-6-thumb {
    bottom: -100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-thumb {
    bottom: 0;
    width: 100%;
    position: inherit;
    height: auto;
    margin-bottom: 30px;
  }
}
.hi-hero-6-thumb img {
  object-fit: cover;
  height: 100%;
}
.hi-hero-6-btn {
  margin-right: -85px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-btn {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-btn .hi-portfolio-4-btn {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hi-hero-6-btn .hi-btn-rounded {
  background: var(--hi-common-white);
  border-color: var(--hi-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-btn .hi-btn-rounded {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-btn .hi-btn-rounded {
    margin-bottom: 20px;
  }
}
.hi-hero-6-btn .hi-btn-rounded:hover {
  border-color: var(--hi-common-black);
}
.hi-hero-6-btn .hi-portfolio-4-btn p {
  color: var(--hi-common-white);
}
.hi-hero-6-icon {
  display: flex;
  justify-content: space-between;
  flex: 0 0 auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-6-icon {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .hi-hero-6-icon {
    padding-bottom: 0;
  }
}
.hi-hero-6-icon span {
  display: inline-block;
  margin: 0 5px;
}
@media (max-width: 575px) {
  .hi-hero-6-icon span {
    width: 60px;
  }
}
.hi-hero-7-title {
  font-weight: 700;
  font-size: 100px;
  line-height: 110%;
  text-align: center;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hi-hero-7-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-hero-7-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hi-hero-7-title {
    font-size: 35px;
  }
}
.hi-hero-7-spacing {
  padding-top: 207px;
  padding-bottom: 225px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-7-spacing {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}
.hi-hero-7-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hi-hero-7-content {
  position: relative;
  z-index: 3;
}
.hi-hero-7-next {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: var(--hi-common-white);
   
  transition: all 0.4 ease;
}
.hi-hero-7-next:hover {
  color: var(--hi-theme-primary);
}
.hi-hero-7-prev {
  width: 80px;
  height: 80px;
  display: inline-block;
  background: var(--hi-common-black);
  color: var(--hi-common-white);
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.hi-hero-7-prev:hover {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
}
.hi-hero-7-navigation {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 88%;
  margin: 0 120px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-7-navigation {
    margin: 0 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-7-navigation {
    margin: 0 30px;
  }
}
.hi-hero-7-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-7-shape {
    display: none;
  }
}
.hi-hero-7-zoom .swiper-slide.swiper-slide-active .text {
  -webkit-animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.8s;
  animation-duration: 1s;
  opacity: 1;
}
.hi-hero-7-zoom .swiper-slide.swiper-slide-active .text2 {
  -webkit-animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.9s;
  animation-duration: 1s;
  opacity: 1;
}
.hi-hero-8-spacing {
  padding-top: 175px;
  padding-bottom: 155px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-spacing {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-spacing {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-spacing {
    padding-top: 90px;
  }
}
.hi-hero-8-subtitle {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--hi-theme-primary);
  display: inline-block;
}
.hi-hero-8-title {
  font-size: 150px;
  line-height: 80%;
  letter-spacing: -0.02em;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-8-title {
    font-size: 115px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .hi-hero-8-title {
    font-size: 50px;
  }
}
.hi-hero-8-contact-info {
  column-count: 2;
  margin-right: 340px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-8-contact-info {
    margin-right: 240px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-contact-info {
    margin-right: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-contact-info {
    margin-right: 0;
    column-count: 1;
  }
}
.hi-hero-8-contact-info a {
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-white);
  display: flex;
  margin-bottom: 15px;
}
.hi-hero-8-contact-info a:hover {
  color: var(--hi-theme-primary);
}
.hi-hero-8-contact-info a i {
  transform: translateY(5px);
  margin-right: 20px;
}
.hi-hero-8-btn {
  margin-left: 270px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-hero-8-btn {
    margin-left: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-btn {
    margin-left: 0;
  }
}
.hi-hero-8-thumb {
  position: absolute;
  bottom: 0;
  right: 26px;
  width: 38%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-thumb {
    width: auto;
    position: inherit;
    right: auto;
  }
}
.hi-hero-8-thumb img {
  mix-blend-mode: luminosity;
}
.hi-hero-8-author-position {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
  background: var(--hi-theme-primary);
  transform: rotate(-10deg);
   
  padding: 14px 20px;
  position: absolute;
  bottom: 192px;
  right: 314px;
}
@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: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-author-position {
    right: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-hero-8-author-position {
    bottom: 100px;
  }
}
@media (max-width: 575px) {
  .hi-hero-8-author-position {
    font-size: 20px;
  }
}
.hi-hero-8-shape {
  position: absolute;
  bottom: 0;
  right: -25px;
}
.hi-hero-8-shape-two {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 27%;
}

/*=============================
    	01. about
===============================*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-item {
    margin-left: 0;
  }
}
.hi-about-item h4 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.hi-about-item p {
  font-size: 18px;
  color: #000;
}
.hi-about-shape {
  margin-left: -40px;
}
.hi-about-bigtext {
  position: absolute;
  bottom: 115px;
  right: 0;
  font-weight: 500;
  font-size: 83px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.05);
  margin-right: 0px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-bigtext {
    font-size: 60px;
    text-align: center;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 575px) {
      .hi-about-bigtext {
        font-size: 45px;
        bottom: 0;
        text-align: center;
        opacity: .5 !important;
        right: 5px;
    }
}
.hi-about-2-content {
  margin-right: 400px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hi-about-2-content {
    margin-right: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-2-content {
    margin-right: 0px;
    margin-bottom: 40px;
  }
}
.hi-about-2-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #000;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-2-clients {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-2-clients {
    margin-bottom: 30px;
  }
}
.hi-about-2-clients h4 {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.hi-about-2-clients span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  margin-bottom: 14px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-2-thumb-two {
    padding-top: 0;
  }
}
.hi-about-3-thumb {
  margin-top: -140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-3-thumb {
    margin-top: 0;
  }
}
.hi-about-3-border {
  height: 1px;
  width: 100%;
  background: var(--hi-common-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-3-content p br {
    display: none;
  }
}
.hi-about-3-counter-item h2 {
  font-weight: 500;
  font-size: 70px;
  letter-spacing: -0.01em;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-3-counter-item h2 {
    font-size: 60px;
  }
}
.hi-about-5-para {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-black);
}
@media (max-width: 575px) {
  .hi-about-5-thumb-three {
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-5-thumb-wrap {
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .hi-about-5-thumb-wrap {
    margin-right: 0;
  }
}
.hi-about-6-thumb {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 51%;
  height: 524px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-6-thumb {
    height: 450px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-about-6-thumb {
    position: inherit;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
.hi-about-6-thumb img {
  object-fit: cover;
  height: 100%;
}

/*=============================
    18. service
===============================*/
.hi-service-item {
  border-top: 1px solid var(--hi-common-black);
  border-bottom: 1px solid var(--hi-common-black);
  padding: 43px 0px 20px 60px;
  margin-top: -1px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.hi-service-item:hover{
    border-color: #f5821f;
}
@media (max-width: 575px) {
  .hi-service-item {
    padding: 23px 8px 20px 8px;
  }
}
.hi-service-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: #fcaf17;
  top: auto;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.hi-service-item:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}
.hi-service-item:hover .hi-service-item-title span {
  color: var(--hi-common-white);
}
.hi-service-item:hover .hi-service-item-title h3 {
  color: var(--hi-common-white);
}
.hi-service-item:hover .hi-service-text p, .hi-service-item:hover .hi-service-text h5, .hi-service-item:hover * {
  color: #fff;
}
.hi-service-item:hover .hi-service-btn span{
    border-color: #fff;
    color: #fff;
}
.hi-service-item .text {
    font-size: 14px;
    line-height: 1.25;
}
.hi-service-item:hover .hi-service-text img {
  opacity: 1;
  visibility: visible;
}
.hi-service-item:hover .hi-service-btn a {
  border: 1px solid var(--hi-theme-primary);
  background: var(--hi-theme-primary);
}
.hi-service-item-title {
  display: flex;
  align-items: center;
}
.hi-service-item-title span {
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-black);
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-item-title span {
    margin-right: 15px;
  }
}
.hi-service-item-title h3 {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
  margin-bottom: 0;
      line-height: 36px;
  transition: all 0.3s ease;
}
.hi-service-text {
  position: relative;
}
.hi-service-text p {
  color: var(--hi-common-black);
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.hi-service-text img {
  position: absolute;
  top: -1px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-text img {
    top: 0;
  }
}
.hi-service-btn span {
  border: 1px solid var(--hi-common-black);
  border-radius: 40px;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  transition: all 0.4s ease;
  color: var(--hi-common-black);
  font-size: 35px;
}
.hi-service-2-subtitle {
  font-weight: 600;
  font-size: 18px;
  color: var(--hi-common-white);
  display: block;
}
.hi-service-2-item {
   
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: var(--hi-common-white);
  display: flex;
  align-items: center;
  transition: all 0.6s ease;
  border-top: 1px solid var(--hi-common-white);
  border-bottom: 1px solid var(--hi-common-white);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-2-item {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hi-service-2-item {
    font-size: 30px;
  }
}
.hi-service-2-item:hover {
  padding-left: 60px;
  color: var(--hi-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-2-item:hover {
    padding-left: 10px;
  }
}
.hi-service-2-item span {
    
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--hi-common-black);
  width: 40px;
  height: 40px;
  display: inline-block;
  background: var(--hi-theme-primary);
  border-radius: 60px;
  text-align: center;
  line-height: 40px;
  margin-right: 30px;
}
.hi-service-3-icon {
  color: rgba(28, 29, 31, 0.15);
  transition: all 0.4s ease;
}
.hi-service-3-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px;
  border-bottom: 1px solid var(--hi-common-black);
}
@media (max-width: 575px) {
  .hi-service-3-item {
    padding: 15px 0px;
  }
}
.hi-service-3-item:hover {
  background: var(--hi-common-white);
  border-color: var(--hi-common-white);
  padding: 25px 30px;
}
@media (max-width: 575px) {
  .hi-service-3-item:hover {
    padding: 15px 10px;
  }
}
.hi-service-3-item:hover .hi-service-3-icon {
  color: var(--hi-common-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-3-item-wrap {
    margin-right: 0;
    margin-left: 0;
  }
}
.hi-service-3-item-content span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  display: inline-block;
  margin-bottom: 2px;
}
.hi-service-3-item-content h4 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
}
@media (max-width: 575px) {
  .hi-service-3-item-content h4 {
    font-size: 18px;
  }
}
.hi-service-4-item h4 {
  font-weight: 700;
  font-size: 44px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: var(--hi-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-4-item h4 {
    font-size: 35px;
  }
}
.hi-service-4-item h4 a:hover {
  color: var(--hi-theme-primary);
}
.hi-service-4-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-white);
}
.hi-service-4-item .link {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  text-transform: uppercase;
  color: var(--hi-common-white);
  border-bottom: 1px solid transparent;
}
.hi-service-4-item .link:hover {
  color: var(--hi-theme-primary);
  border-color: var(--hi-theme-primary);
}
.hi-service-5-item {
  border-top: 1px solid var(--hi-common-white);
  border-bottom: 1px solid var(--hi-common-white);
  padding: 43px 0px 20px 60px;
  margin-top: -1px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .hi-service-5-item {
    padding: 43px 20px 20px 20px;
  }
}
.hi-service-5-item:hover {
  border-top: 1px solid var(--hi-common-black);
  border-bottom: 1px solid var(--hi-common-black);
}
.hi-service-5-item:hover .hi-service-5-item-title span {
  color: var(--hi-theme-primary);
}
.hi-service-5-item:hover .hi-service-5-item-title h3 {
  color: var(--hi-theme-primary);
}
.hi-service-5-item:hover .hi-service-5-btn a {
  border: 1px solid var(--hi-theme-primary);
  background: var(--hi-theme-primary);
}
.hi-service-5-item:hover .hi-service-5-thumb {
  opacity: 1;
  visibility: visible;
}
.hi-service-5-item-title {
  display: flex;
  align-items: center;
}
.hi-service-5-item-title h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 107%;
  letter-spacing: -0.01em;
  color: var(--hi-common-white);
  transition: all 0.4s ease;
}
.hi-service-5-item-title span {
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-white);
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .hi-service-5-item-title span {
    margin-right: 20px;
  }
}
.hi-service-5-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-white);
  transition: all 0.4s ease;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-5-text p br {
    display: none;
  }
}
.hi-service-5-btn a {
  border: 1px solid var(--hi-common-white);
  border-radius: 40px;
  width: 64px;
  height: 64px;
  display: inline-block;
  text-align: center;
  color: var(--hi-common-white);
  line-height: 59px;
  transition: all 0.4s ease;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-5-title-text {
    margin-right: 0;
  }
}
.hi-service-5-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-5-thumb {
    height: 100%;
    object-fit: cover;
  }
}
.hi-service-6-count {
  font-weight: 700;
  font-size: 200px;
  line-height: 0.8;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #cbca7b 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -53px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-6-count {
    font-size: 170px;
  }
}
.hi-service-6-title {
  font-weight: 700;
  font-size: 44px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: var(--hi-common-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-6-title {
    font-size: 35px;
  }
}
.hi-service-6-para {
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-black);
}
.hi-service-6-btn {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--hi-common-black);
   
  border-bottom: 1px solid transparent;
}
.hi-service-6-btn:hover {
  border-color: var(--hi-common-black);
}
.hi-service-7-wrap {
  border: 1px solid var(--hi-common-black);
  padding: 40px 40px 25px 40px;
  transition: all 0.4s ease;
}
.hi-service-7-wrap:hover {
  background: var(--hi-common-white);
  border-color: var(--hi-common-white);
}
.hi-service-7-count {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--hi-ff-heading);
  display: block;
  margin-bottom: 150px;
  text-align: right;
}
.hi-service-7-title {
  font-size: 30px;
  line-height: 107%;
  letter-spacing: -0.01em;
  display: block;
}
.hi-service-7-btnwrap .hi-btn-rounded-black:hover {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
}
.hi-service-7-btnwrap .hi-btn-rounded-black:hover .hi-btn-circle-dot {
  background: var(--hi-common-white);
}
.hi-service-7-para p {
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-7-para p br {
    display: none;
  }
}
.hi-service-8-shape {
  position: absolute;
  top: 145px;
  left: 167px;
}
.hi-service-8-count {
  font-weight: 400;
  font-size: 20px;
  color: #cbca7b;
  display: inline-block;
  margin-right: 70px;
}
.hi-service-8-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 113%;
  color: var(--hi-common-white);
}
.hi-service-8-title a:hover {
  color: rgba(240, 240, 240, 0.631372549);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-8-title-wrap {
    margin-bottom: 30px;
  }
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-8-right {
    margin-left: 0;
  }
}
.hi-service-8-right ul li {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-8-right ul li {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-8-thumb {
    padding-top: 60px;
  }
}
.hi-service-8-item {
  border-top: 1px solid var(--hi-common-white);
  border-bottom: 1px solid var(--hi-common-white);
  padding: 31px 20px 10px 40px;
  margin-top: -1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-8-item {
    padding: 31px 0px 10px 0px;
  }
}
.hi-service-details-title {
  font-size: 60px;
  line-height: 117%;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-details-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hi-service-details-title {
    font-size: 40px;
  }
}
.hi-service-details-border {
  width: 100%;
  height: 1px;
  background: var(--hi-common-black);
}
.hi-service-details-list ul {
  column-count: 2;
}
@media (max-width: 575px) {
  .hi-service-details-list ul {
    column-count: 1;
  }
}
.hi-service-details-list ul li {
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-black);
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
}
.hi-service-details-list ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--hi-common-black);
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.hi-service-details-thumb-wrap {
  margin-top: -83px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-details-thumb-wrap {
    margin-top: 0;
  }
}
.hi-service-timeline {
  height: 1px;
  width: 100%;
  background: var(--hi-common-black);
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-timeline {
    display: none;
  }
}
.hi-service-timeline-item {
  position: relative;
}
.hi-service-timeline-item::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: var(--hi-common-black);
  top: -48px;
  left: 0;
  border-radius: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-timeline-item::before {
    display: none;
  }
}
.hi-service-timeline-item h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-replace-content {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-replace-shape {
    margin-top: 0;
  }
}
.hi-service-replace-title h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 123%;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-service-replace-title h2 {
    font-size: 35px;
  }
}

/*=============================
    15. portfolio
===============================*/
.hi-portfolio-item:hover .hi-portfolio-tag {
  transform: translateY(0);
  opacity: 1;
}
.hi-portfolio-item:hover .hi-portfolio-thumb img {
  transform: scale(1.03) translateX(8px);
}
.hi-portfolio-thumb {
  display: inline-block;
  overflow: hidden;
}
.hi-portfolio-thumb img {
  transform: scale(1.03);
  transition: 0.4s ease-in-out;
  width: 100%;
}
.hi-portfolio-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .hi-portfolio-tag {
    bottom: 20px;
    left: 20px;
  }
}
.hi-portfolio-tag-text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--hi-common-black);
  border-radius: 20px;
  padding: 5px 20px;
  display: inline-block;
  background: var(--hi-common-white);
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.hi-portfolio-tag-text:hover {
  background: var(--hi-common-black);
  color: var(--hi-common-white);
}
.hi-portfolio-title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
.hi-portfolio-title a:hover {
  color: var(--hi-theme-primary);
}
.hi-portfolio-2-item {
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-2-item {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .hi-portfolio-2-item {
    margin-bottom: 40px;
  }
}
.hi-portfolio-2-item:hover .hi-portfolio-2-thumb {
  overflow: hidden;
}
.hi-portfolio-2-item:hover .hi-portfolio-2-thumb img {
  transform: scale(1.1);
}
.hi-portfolio-2-thumb img {
  transition: all 0.3s ease-in-out;
}
.hi-portfolio-2-thumb:hover .hi-portfolio-2-content {
  margin-bottom: 0;
}
.hi-portfolio-2-thumb:hover .hi-portfolio-2-link {
  opacity: 1;
}
.hi-portfolio-2-content {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--hi-common-white);
  padding: 30px 115px 28px 40px;
  margin-left: 40px;
  margin-bottom: -40px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-2-content {
    padding: 30px 30px 28px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-2-content {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .hi-portfolio-2-content {
    position: inherit;
    margin-bottom: 0;
  }
}
.hi-portfolio-2-content span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-portfolio-2-content h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.01em;
}
@media (max-width: 575px) {
  .hi-portfolio-2-content h3 {
    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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-2-content h3 br {
    display: none;
  }
}
.hi-portfolio-2-content h3 a:hover {
  color: var(--hi-theme-primary);
}
.hi-portfolio-2-link {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--hi-common-black);
  opacity: 0;
  transition: all 0.3s ease-in-out;
   
}
@media (max-width: 575px) {
  .hi-portfolio-2-link {
    opacity: 1;
  }
}
.hi-portfolio-2-link:hover {
  color: var(--hi-theme-primary);
}
.hi-portfolio-3-btn {
  padding-top: 350px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hi-portfolio-3-btn {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-3-btn {
    padding-top: 0;
  }
}
.hi-portfolio-4-thumb img {
  transition: all 0.4s ease;
}
.hi-portfolio-4-item:hover .hi-portfolio-4-thumb img {
  transform: scale(1.1);
}
.hi-portfolio-4-item-content {
  background: var(--hi-common-white);
  transition: all 0.4s ease;
  padding: 80px 80px 80px 80px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-portfolio-4-item-content {
    padding: 50px 50px 50px 50px;
  }
}
@media (max-width: 575px) {
  .hi-portfolio-4-item-content {
    padding: 20px 20px 20px 20px;
  }
}
.hi-portfolio-4-item-content:hover {
  background: var(--hi-theme-primary);
}
.hi-portfolio-4-item-content:hover .hi-btn-rounded-primary {
  border-color: var(--hi-common-black);
}
.hi-portfolio-4-item-title {
  margin-bottom: 245px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-4-item-title {
    margin-bottom: 145px;
  }
}
@media (max-width: 575px) {
  .hi-portfolio-4-item-title {
    margin-bottom: 45px;
  }
}
.hi-portfolio-4-item-title span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-portfolio-4-item-title h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-4-item-title h4 a br {
    display: none;
  }
}
.hi-portfolio-4-btn {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .hi-portfolio-4-btn {
    flex-wrap: wrap;
  }
}
.hi-portfolio-4-btn a {
  flex: 0 0 auto;
  margin-right: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-4-btn a {
    margin-right: 20px;
  }
}
@media (max-width: 575px) {
  .hi-portfolio-4-btn a {
    margin-bottom: 20px;
  }
}
.hi-portfolio-4-btn p {
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-black);
}
.hi-portfolio-6-item-content:hover {
  background: var(--hi-common-black);
}
.hi-portfolio-6-item-content:hover .hi-portfolio-4-item-title span {
  color: var(--hi-common-white);
}
.hi-portfolio-6-item-content:hover .hi-portfolio-4-item-title h4 {
  color: var(--hi-common-white);
}
.hi-portfolio-6-item-content:hover .hi-portfolio-4-item-title h4 a:hover {
  color: var(--hi-common-white);
}
.hi-portfolio-6-item-content:hover .hi-portfolio-4-btn p {
  color: var(--hi-common-white);
}
.hi-portfolio-6-item-content:hover .hi-btn-rounded-primary {
  border-color: var(--hi-common-white);
}
.hi-portfolio-6-item-content:hover .hi-btn-rounded-primary {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
  border-color: var(--hi-common-white);
}
.hi-portfolio-6-item-content:hover .hi-btn-rounded-primary:hover {
  border-color: var(--hi-theme-primary);
}
.hi-portfolio-6-item-content:hover .hi-btn-rounded-primary .hi-btn-circle-dot {
  background: var(--hi-theme-primary);
}
.hi-portfolio-7-tag span, .hi-portfolio-7-tag a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--hi-common-white);
  border-radius: 20px;
  padding: 5px 20px;
  background: var(--hi-common-black);
  display: inline-block;
  transition: all 0.4s ease;
}
.hi-portfolio-7-tag span:hover, .hi-portfolio-7-tag a:hover {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
}
.hi-portfolio-7-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 122%;
  letter-spacing: -0.01em;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-7-title {
    font-size: 26px;
  }
  .hi-portfolio-7-title a br {
    display: none;
  }
}
.hi-portfolio-7-title a {
  transition: all 0.5s ease;
}
.hi-portfolio-7-title a:hover {
  text-decoration: underline;
}
.hi-portfolio-7-btn {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.hi-portfolio-7-item {
  padding: 80px 80px 42px 80px;
  position: sticky;
  top: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-7-item {
    padding: 20px 20px 22px 20px;
  }
}
.hi-portfolio-7-item:hover .hi-portfolio-7-btn {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-8-content {
    margin-bottom: 40px;
  }
}
.hi-portfolio-8-content span {
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--hi-common-white);
  display: inline-block;
  margin-bottom: 6px;
}
.hi-portfolio-8-content h2 {
  font-weight: 600;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-8-content h2 {
    font-size: 40px;
  }
}
.hi-portfolio-8-content h2 a:hover {
  color: var(--hi-common-white);
}
.hi-portfolio-8-item {
  position: sticky;
  top: 100px;
  background: #0f0f0f;
  padding-left: 5px;
}
.hi-portfolio-8-item .hi-portfolio-7-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.hi-portfolio-8-item:hover .hi-portfolio-7-btn {
  opacity: 1;
  visibility: visible;
}
.hi-portfolio-details-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-left: 150px;
  padding-right: 150px;
  border-bottom: 1px solid var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-details-info {
    padding-left: 0;
    padding-right: 0;
  }
}
.hi-portfolio-details-info-item {
  margin: 10px 20px;
  text-align: center;
}
.hi-portfolio-details-info-item h4 {
  font-weight: 600;
  font-size: 24px;
}
.hi-portfolio-details-info-item span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-portfolio-details-overview-title h2 {
  font-weight: 600;
  font-size: 60px;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-details-overview-title h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.hi-portfolio-details-overview-title span {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #000;
}
.hi-portfolio-details-overview-title span span {
  font-weight: 600;
}
.hi-portfolio-details-overview-list h5 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--hi-common-black);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.hi-portfolio-details-overview-details h5 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.hi-portfolio-details-identity-title {
  font-weight: 700;
  font-size: 60px;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-details-identity-title {
    font-size: 40px;
  }
}
.hi-portfolio-details-identity-subtitle {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
.hi-portfolio-details-identity-tag-inner {
  display: flex;
  align-items: center;
}
.hi-portfolio-details-identity-tag-inner span {
  font-weight: 600;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-portfolio-details-identity-tag-inner span.prev i {
  margin-right: 10px;
}
.hi-portfolio-details-identity-tag-inner span.next i {
  margin-left: 10px;
}
.hi-portfolio-details-identity-tag-inner span.borders {
  width: 1px;
  height: 70px;
  background: var(--hi-common-black);
  display: inline-block;
  margin: 0 100px;
}
@media (max-width: 575px) {
  .hi-portfolio-details-identity-tag-inner span.borders {
    margin: 0 50px;
  }
}
.hi-portfolio-details-identity-tag-inner span i {
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
  transition: all 0.4s ease;
}
.hi-portfolio-details-identity-tag-inner span i:hover {
  background: var(--hi-theme-primary);
  color: var(--hi-common-black);
  border-color: var(--hi-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-portfolio-details-identity-thumb {
    margin-left: 0;
    margin-right: 0;
  }
}
.hi-portfolio-details-agencies-content h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 138%;
}
.hi-portfolio-details-agencies-content p {
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-black);
}

/*=============================
    23. video
===============================*/
.hi-video-play {
  height: 100px;
  width: 100px;
  display: inline-block;
  background: var(--hi-theme-primary);
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  color: var(--hi-common-black);
}
.hi-video-play:hover {
  color: var(--hi-common-black);
}

.hi-pulse-border {
  border-radius: 50%;
  z-index: 1;
  position: relative;
}
.hi-pulse-border::after, .hi-pulse-border::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: borderanimate2 2s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  z-index: -1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: -1;
}
.hi-pulse-border::before {
  animation-delay: 0.7s;
}

.hi-video-inner {
  padding-top: 250px;
  padding-bottom: 250px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-video-inner {
    padding-top: 220px;
    padding-bottom: 220px;
  }
}

.hi-video-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.hi-video-5-spacing {
  padding-top: 460px;
  padding-bottom: 180px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-video-5-spacing {
    padding-top: 180px;
  }
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-video-5-wrap {
    text-align: center;
  }
}
.hi-video-5-wrap .popup-video {
  background: var(--hi-common-black);
  color: var(--hi-common-white);
}
.hi-video-5-wrap .hi-pulse-border::after, .hi-video-5-wrap .hi-pulse-border::before {
  border: 1px solid var(--hi-common-black);
}

/*=============================
    05. chose
===============================*/
@media (max-width: 575px) {
  .hi-chose-funding {
    margin-right: 0;
  }
}
.hi-chose-funding h3 {
  font-weight: 700;
  font-size: 360px;
  letter-spacing: -0.06em;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  line-height: 0.9;
}
@media (max-width: 575px) {
  .hi-chose-funding h3 {
    font-size: 250px;
  }
}
.hi-chose-funding h3 span {
  display: inline-block;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.06em;
  color: var(--hi-common-black);
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  background: var(--hi-theme-primary);
  border-radius: 100px;
  position: absolute;
  right: -22px;
  top: 25px;
}
.hi-chose-funding p {
  line-height: 167%;
  color: var(--hi-common-black);
}
.hi-chose-newwork {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 575px) {
  .hi-chose-newwork {
    display: none;
  }
}
.hi-chose-item h4 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.hi-chose-item p {
  line-height: 167%;
  color: var(--hi-common-black);
}
.hi-chose-shape {
  margin-right: -153px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), 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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-chose-shape {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-chose-2-thumb {
    margin-bottom: 40px;
  }
}
.hi-chose-2-item-wrap {
  margin-right: 50px;
}
.hi-chose-2-item-wrap p{
    text-align: justify;
}
 
 
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-chose-2-item-wrap {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-chose-2-item-wrap {
    margin-left: 15px;
  }
}

/*=============================
    07. counter
===============================*/
.hi-counter-item {
  background: var(--hi-common-white);
  text-align: center;
  padding: 50px 30px 26px 30px;
}
.hi-counter-item:hover .icons {
  color: var(--hi-theme-primary);
}
.hi-counter-item h4 {
  font-size: 90px;
  line-height: 72%;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-counter-item h4 {
    font-size: 70px;
  }
}
.hi-counter-item .icons {
  color: var(--hi-grey-2);
  transition: all 0.3s ease;
}
.hi-counter-item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: var(--hi-common-black);
  margin-top: -53px;
}
.hi-counter-2-item {
  border: 1px solid #000;
  padding: 30px 40px 30px 40px;
  margin-right: -1px;
  transition: all 0.4s ease;
}
.hi-counter-2-item:hover {
  background: var(--hi-common-black);
  transform: scaleY(105%);
}
.hi-counter-2-item:hover .title {
  color: var(--hi-common-white);
}
.hi-counter-2-item:hover .para {
  color: var(--hi-common-white);
}
.hi-counter-2-item:hover .position {
  color: var(--hi-common-white);
}
.hi-counter-2-item .title {
  font-weight: 600;
  font-size: 50px;
  line-height: 76%;
  letter-spacing: -0.02em;
}
.hi-counter-2-item .position {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  color: var(--hi-common-black);
}
.hi-counter-2-item .para {
  font-size: 18px;
  line-height: 133%;
  color: var(--hi-common-black);
}
.hi-counter-2-wrap {
  padding-top: 240px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-counter-2-wrap {
    padding-top: 140px;
  }
}

/*=============================
    04. brand
===============================*/
.hi-brand-wrap .swiper-slide {
  display: inline-block;
  width: 300px;
}

/*=============================
    03. blog
===============================*/
.hi-blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.02em;
}
.hi-blog-title a:hover {
  color: var(--hi-theme-primary);
}
.hi-blog-para {
  line-height: 167%;
  color: var(--hi-common-black);
}
.hi-blog-item:hover .hi-blog-thumb img {
  transform: scale(1.05);
}
.hi-blog-item:hover .hi-blog-btn {
  opacity: 1;
  visibility: visible;
}
.hi-blog-thumb img {
  transition: all 0.3s ease;
}
.hi-blog-tag {
  border-top: 1px solid var(--hi-common-black);
  padding-top: 30px;
}
.hi-blog-tag span {
  font-weight: 500;
  font-size: 16px;
  color: var(--hi-common-black);
  display: inline-block;
}
.hi-blog-tag span.hi-tag {
  border: 1px solid var(--hi-common-black);
  border-radius: 17px;
  padding: 1px 17px;
}
.hi-blog-tag span.hi-border {
  width: 40px;
  height: 1px;
  background: var(--hi-common-black);
  margin-left: 20px;
  margin-right: 15px;
}
.hi-blog-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.hi-blog-btn a {
  color: var(--hi-common-white);
  border-color: var(--hi-common-white);
}
.hi-blog-btn a:hover {
  border-color: var(--hi-common-black);
}
.hi-blog-2-author-name h5 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  line-height: 1;
}
.hi-blog-2-author-name span {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.hi-blog-2-border {
  border-top: 1px solid var(--hi-common-black);
  width: 100%;
  display: block;
}
.hi-blog-2-date {
  font-weight: 400;
  font-size: 17px;
  color: var(--hi-common-black);
}
.hi-blog-4-item .hi-blog-title {
  color: var(--hi-common-white);
}
.hi-blog-4-item .hi-blog-2-author-name h5 {
  color: var(--hi-common-white);
}
.hi-blog-4-item .hi-blog-2-author-name span {
  color: var(--hi-common-white);
}
.hi-blog-4-item .hi-blog-2-date {
  color: var(--hi-common-white);
}
.hi-blog-4-item .hi-blog-2-border {
  border-top: 1px solid var(--hi-common-white);
}
@media (max-width: 575px) {
  .hi-blog-5-btn {
    margin-bottom: 0;
  }
}
.hi-blog-standard-item:hover .hi-blog-standard-thumb img {
  transform: scale(1.1);
}
.hi-blog-standard-thumb {
  overflow: hidden;
}
.hi-blog-standard-thumb img {
  transition: all 0.4s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-blog-standard-left-wrap {
    margin-right: 0;
  }
}
.hi-blog-standard-comments span {
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-blog-standard-comments span.dvdr {
  margin: 0 5px;
}
.hi-blog-standard-comments span.names {
  position: relative;
  padding-left: 18px;
}
.hi-blog-standard-comments span.names::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--hi-common-black);
  border-radius: 50%;
}
.hi-blog-standard-title {
  font-weight: 600;
  font-size: 44px;
  line-height: 114%;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-blog-standard-title {
    font-size: 30px;
  }
}
.hi-blog-standard-title-2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 114%;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-blog-standard-title-2 {
    font-size: 25px;
  }
}
.hi-blog-standard-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--hi-common-black);
   
}
.hi-blog-standard-navigation ul {
  display: flex;
  justify-content: center;
}
.hi-blog-standard-navigation ul li {
  margin: 0 5px;
}
.hi-blog-standard-navigation ul li a {
  font-weight: 600;
  font-size: 18px;
  color: var(--hi-common-black);
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  border-radius: 100px;
  border: 1px solid var(--hi-common-black);
   
}
.hi-blog-standard-navigation ul li a:hover {
  background: var(--hi-theme-primary);
  color: var(--hi-common-black);
  border-color: var(--hi-theme-primary);
}
.hi-blog-standard-author {
  background: #f0f0f0;
  border: 1px solid var(--hi-common-black);
  padding: 40px 40px 35px 40px;
}
.hi-blog-standard-author p {
  font-size: 18px;
  line-height: 167%;
  text-align: center;
  color: var(--hi-common-black);
}
.hi-blog-standard-author-title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-blog-standard-author-title {
    font-size: 25px;
  }
}
.hi-blog-standard-search input {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  height: 60px;
  width: 100%;
  border: 1px solid var(--hi-common-black);
  padding-left: 30px;
  padding-right: 70px;
}
.hi-blog-standard-search input::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-blog-standard-search button {
  width: 60px;
  height: 60px;
  background: var(--hi-theme-primary);
  text-align: center;
  line-height: 60px;
  color: var(--hi-common-black);
  border: 1px solid var(--hi-common-black);
  position: absolute;
  top: 0;
  right: 0;
}
.hi-blog-standard-categories ul li a {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  padding: 3px 0px;
  display: block;
}
.hi-blog-standard-categories ul li a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.hi-blog-standard-tag ul {
  display: flex;
  flex-wrap: wrap;
}
.hi-blog-standard-tag ul li a {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  padding: 3px 10px;
  display: inline-block;
}
.hi-blog-standard-tag ul li a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.hi-blog-recent-content h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.hi-blog-recent-content span {
  font-weight: 500;
  font-size: 16px;
  color: var(--hi-common-black);
}
.hi-blog-recent-post:hover .hi-blog-recent-post-thumb img {
  transform: scale(1.1);
}
.hi-blog-recent-post-thumb img {
  transition: all 0.4s ease;
}
.hi-blog-details-blockquote {
  display: flex;
}
.hi-blog-details-blockquote .icons {
  width: 45px;
  height: 45px;
  background: var(--hi-theme-primary);
  text-align: center;
  line-height: 45px;
  flex: 0 0 auto;
  display: inline-block;
  margin-top: 7px;
  margin-right: 20px;
}
.hi-blog-details-blockquote .titles {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.hi-blog-details-tag ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hi-blog-details-tag ul li:not(:last-child) {
  margin-right: 40px;
}
.hi-blog-details-tag ul li a {
  font-weight: 400;
  font-size: 18px;
  color: #000;
}
.hi-blog-details-tag ul li a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.hi-blog-details-tag-wrap {
  border-top: 1px solid var(--hi-common-black);
  border-bottom: 1px solid var(--hi-common-black);
  padding: 20px 0px;
}
.hi-blog-details-social ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 575px) {
  .hi-blog-details-social ul {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.hi-blog-details-social ul li:not(:first-child) {
  margin-left: 12px;
}
.hi-blog-details-social ul li a {
   
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
.hi-blog-details-social ul li a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.hi-blog-details-comment ul li {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .hi-blog-details-comment ul li {
    flex-wrap: wrap;
  }
}
.hi-blog-details-comment-thumb {
  width: 200px;
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  .hi-blog-details-comment-thumb {
    margin-bottom: 20px;
  }
}
.hi-blog-details-comment-content h3 {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
}

/*=============================
    08. cta
===============================*/
.hi-cta-title {
  font-weight: 800;
  font-size: 120px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--hi-common-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.6), 0 0 0px rgba(0, 0, 0, 0.6);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hi-cta-title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-cta-title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .hi-cta-title {
    font-size: 50px;
  }
}
.hi-cta-shape {
  position: absolute;
  left: 160px;
  top: 125px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-cta-shape {
    left: 40px;
  }
}
.hi-cta-shape-2 {
  position: absolute;
  right: 270px;
  bottom: 115px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-cta-shape-2 {
    right: 100px;
  }
}
.hi-cta-2-title {
  font-weight: 600;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.02em;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-cta-2-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hi-cta-2-title {
    font-size: 30px;
  }
}
.hi-cta-2-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-cta-2-thumb {
    width: 100%;
    position: inherit;
  }
}
.hi-cta-2-thumb img {
  width: 100%;
  height: 100%;
}
.hi-cta-2-shape {
  position: absolute;
  right: 0;
  bottom: 145px;
  width: 24%;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-cta-2-shape {
    width: 17%;
  }
}
.hi-cta-6-title {
  font-weight: 600;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-cta-6-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hi-cta-6-title {
    font-size: 37px;
  }
}
.hi-cta-6-border {
  width: 100%;
  height: 1px;
  background: var(--hi-common-black);
}

/*=============================
    11. footer
===============================*/
.hi-footer-title {
  font-size: 50px;
  line-height: 120%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .hi-footer-title {
    font-size: 30px;
  }
}
.hi-footer-location h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 167%;
  letter-spacing: -0.02em;
}
.hi-footer-location a {
  font-size: 18px;
  line-height: 150%;
  color: var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-location a br {
    display: none;
  }
}
/* .hi-footer-location-wrap {
  column-count: 2;
  padding-right: 88px;
} */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-location-wrap {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .hi-footer-location-wrap {
    column-count: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-social {
    margin-bottom: 50px;
  }
}
.hi-footer-social a {
  border: 1px solid #000;
  border-radius: 100px;
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  transition: all 0.4s ease;
}
.hi-footer-social a svg {
  transform: translateY(-2px);
  width: 17px !important;
}
.hi-footer-social a:hover {
  background: var(--hi-common-black);
  color: var(--hi-common-white);
}
.hi-footer-rborder {
  width: 1px;
  height: 78px;
  background: var(--hi-common-black);
  display: inline-block;
  position: absolute;
  right: 105px;
  bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-rborder {
    right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-rborder {
    display: none;
  }
}
.hi-footer-form {
  position: relative;
}
.hi-footer-form-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.hi-footer-form input {
  border: none;
  border-bottom: 1px solid var(--hi-common-black);
  width: 100%;
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-black);
  padding-left: 0;
  height: 50px;
  background: transparent;
}
.hi-footer-form input::placeholder {
  color: var(--hi-common-black);
}
.hi-footer-form input:focus {
  border: none;
  border-bottom: 1px solid var(--hi-common-black);
}
.hi-footer-bottom {
  border-top: 1px solid var(--hi-common-black);
  padding: 15px 0px 15px 0px;
}
.hi-footer-copyright p {
  font-weight: 300;
  font-size: 14px;
  color: var(--hi-common-black);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hi-footer-copyright p a {
  font-weight: 400;
}
.hi-footer-menu ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-menu ul {
    justify-content: flex-start;
  }
}
.hi-footer-menu ul li {
  margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-footer-menu ul li {
    margin-left: 20px;
  }
}
.hi-footer-menu ul li a {
   
  font-weight: 500;
  font-size: 16px;
  color: var(--hi-common-black);
  padding: 10px 0;
  display: inline-block;
  text-transform: uppercase;
}
.hi-footer-menu ul li a:hover {
  color: var(--hi-theme-primary);
}
.hi-footer-2-location .email {
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  display: block;
  color: var(--hi-common-black);
  margin-bottom: 4px;
}
.hi-footer-2-location .email:hover {
  color: var(--hi-theme-primary);
}
.hi-footer-2-location .number {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
.hi-footer-2-location .number:hover {
  color: var(--hi-theme-primary);
}
.hi-footer-4-widget .hi-footer-location h4 {
  color: var(--hi-common-white);
}
.hi-footer-4-widget .hi-footer-location a {
  color: var(--hi-common-white);
}
.hi-footer-4-widget .hi-footer-rborder {
  background: var(--hi-common-white);
}
.hi-footer-4-widget .hi-footer-social a {
  border: 1px solid var(--hi-common-white);
  color: var(--hi-common-white);
}
.hi-footer-4-widget .hi-footer-social a:hover {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
  border-color: var(--hi-common-white);
}
.hi-footer-4-widget .hi-footer-form input {
  border-color: var(--hi-common-white);
  color: var(--hi-common-white);
}
.hi-footer-4-widget .hi-footer-form input::placeholder {
  color: var(--hi-common-white);
}
.hi-footer-4-bottom {
  border-top: 1px solid var(--hi-common-white);
}
.hi-footer-4-bottom .hi-footer-copyright p {
  color: var(--hi-common-white);
}
.hi-footer-4-bottom .hi-footer-copyright p a:hover {
  color: var(--hi-common-white);
}
.hi-footer-4-bottom .hi-footer-menu ul li a {
  color: var(--hi-common-white);
}
.hi-footer-4-bottom .hi-footer-menu ul li a:hover {
  color: var(--hi-theme-primary);
}
.hi-footer-8-bottom {
  border-top: none;
}

/*=============================
    17. process
===============================*/
.hi-process-item {
  border: 1px solid #000;
  padding: 53px 50px 24px 50px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-process-item {
    margin-top: 0;
  }
}
.hi-process-item:hover {
  background: var(--hi-common-black);
}
.hi-process-item:hover .hi-process-icon .count {
  color: var(--hi-common-white);
}
.hi-process-item:hover .hi-process-icon svg {
  color: var(--hi-common-white);
}
.hi-process-item:hover .hi-process-content h4 {
  color: var(--hi-common-white);
}
.hi-process-item:hover .hi-process-content p {
  color: var(--hi-common-white);
}
.hi-process-content h4 {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.hi-process-content p {
  font-size: 18px;
  line-height: 144%;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
.hi-process-icon .count {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}

/*=============================
    06. contact
===============================*/
.hi-contact-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 57%;
  height: 100%;
  z-index: -1;
  background: var(--hi-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-contact-bg {
    display: none;
  }
}
.hi-contact-icon {
  column-count: 2;
  margin-right: 100px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-contact-icon {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-contact-icon {
    column-count: 3;
  }
}
.hi-contact-icon span {
  width: 50%;
  display: inline-block;
  margin-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-contact-form {
    padding-left: 0;
  }
}
.hi-contact-form-info-item h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.01em;
}
.hi-contact-form-info-item a {
  font-weight: 400;
  font-size: 18px;
  display: block;
  color: var(--hi-common-black);
  padding-bottom: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-contact-spacing {
    margin-top: 0;
  }
}
.hi-contact-input input, .hi-contact-input textarea {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  border: none;
  border-bottom: 1px solid var(--hi-common-black);
  padding-left: 0;
  height: 42px;
  background: transparent;
}
.hi-contact-input input::placeholder, .hi-contact-input textarea::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-contact-input textarea {
  height: 115px;
}
.hi-contact-8-title {
  font-size: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-contact-8-title {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
.hi-contact-8-form .hi-contact-input input, .hi-contact-8-form .hi-contact-input textarea {
  border-color: var(--hi-common-white);
  color: var(--hi-common-white);
}
.hi-contact-8-form .hi-contact-input input::placeholder, .hi-contact-8-form .hi-contact-input textarea::placeholder {
  color: var(--hi-common-white);
}
.hi-contact-8-form .hi-contact-input textarea {
  height: 135px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-contact-8-shape {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hi-contact-map-area {
    padding-top: 0;
  }
}
.hi-contact-map-wrap {
  margin-top: 208px;
  width: 350px;
  background: var(--hi-common-white);
  padding: 60px 30px 50px 60px;
  position: absolute;
  left: 300px;
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-contact-map-wrap {
    left: 100px;
  }
}
@media (max-width: 575px) {
  .hi-contact-map-wrap {
    left: 0;
  }
}
.hi-contact-map-wrap h6 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.hi-contact-map-wrap a {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
  display: block;
}
.hi-contact-map-inner {
  line-height: 1;
  overflow: hidden;
}
.hi-contact-map-inner iframe {
  width: 100%;
  height: 800px;
  filter: saturate(0);
  line-height: 1;
}

/*=============================
    21. portfolio
===============================*/
.hi-team-3-content h4 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.hi-team-3-content h4 a:hover {
  color: var(--hi-theme-primary);
}
.hi-team-3-social {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 30px;
  left: 15px;
  gap: 6px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.hi-team-3-social a {
  width: 48px;
  height: 48px;
  display: inline-block;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  text-align: center;
  line-height: 48px;
  color: var(--hi-common-white);
}
.hi-team-3-social a:hover {
  background: var(--hi-theme-primary);
  border-color: var(--hi-theme-primary);
  color: var(--hi-common-black);
}
.hi-team-3-shape {
  position: absolute;
  bottom: 52px;
  left: 47px;
  opacity: 0;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.hi-team-3-item:hover .hi-team-3-shape {
  opacity: 1;
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.hi-team-3-item:hover .hi-team-3-social {
  opacity: 1;
  left: 30px;
}
.hi-team-3-item:hover .hi-team-7-shape {
  opacity: 1;
  visibility: visible;
}
.hi-team-3-item:hover .hi-team-3-thumb img {
  transform: scale(1.1);
}
.hi-team-3-thumb {
  overflow: hidden;
}
.hi-team-3-thumb img {
  transition: all 0.4s ease;
}
.hi-team-7-shape {
  border-radius: 100%;
  background: #cbca7b;
  filter: blur(160px);
  width: 307px;
  height: 407px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}
.hi-team-7-item .hi-team-3-social a {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
}
.hi-team-7-item .hi-team-3-social a:hover {
  background: var(--hi-common-black);
  color: var(--hi-common-white);
  border-color: var(--hi-common-black);
}
.hi-team-details-thumb {
  position: sticky;
  top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-team-details-thumb {
    margin-right: 0;
  }
}
.hi-team-details-content {
  margin-left: -30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-team-details-content {
    margin-left: 0;
  }
}
.hi-team-details-content-para a {
  font-weight: 400;
  font-size: 17px;
  line-height: 165%;
  color: var(--hi-common-black);
}
.hi-team-details-content-para a.under {
  text-decoration: underline;
}
.hi-team-details-subtitle {
  font-weight: 600;
  font-size: 18px;
  color: var(--hi-common-black);
  display: inline-block;
}
.hi-team-details-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 133%;
  letter-spacing: -0.01em;
}
.hi-team-details-list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: var(--hi-common-black);
}
.hi-team-details-list-title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
}
.hi-team-details-progress-bar .hi-skill-progress-bar-title label {
  font-size: 16px;
  color: var(--hi-common-black);
}
.hi-team-details-progress-bar .progress-count {
  font-size: 16px !important;
  color: var(--hi-common-black) !important;
}
.hi-team-details-progress-bar .hi-skill-progress-bar .progress-bar {
  background-color: var(--hi-theme-primary);
  height: 10px;
}
.hi-team-details-progress-bar .hi-skill-progress-bar .progress {
  height: 10px;
  background: #f0f0f0;
}

/*=============================
    02. awards
===============================*/
.hi-awards-3-subtitle {
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  color: var(--hi-common-black);
  background: var(--hi-theme-primary);
  padding: 3px 30px;
  padding: 6px 32px;
}
.hi-awards-3-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(10, 17, 25, 0.15);
  border-top: 1px solid rgba(10, 17, 25, 0.15);
  padding: 16px 30px 6px 30px;
  position: relative;
  margin-top: -1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-awards-3-item a {
    padding: 10px 10px 4px 10px;
  }
}
.hi-awards-3-item a:hover {
  background: var(--hi-common-black);
}
.hi-awards-3-item a:hover .title {
  color: var(--hi-common-white);
}
.hi-awards-3-item a:hover .icon {
  color: var(--hi-common-white);
}
.hi-awards-3-item .title {
   
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-awards-3-item .title {
    font-size: 15px;
  }
}
.hi-awards-3-item .title span {
  font-weight: 600;
}
@media (max-width: 575px) {
  .hi-awards-3-item .title span {
    margin-right: 10px;
  }
}
.hi-awards-3-item.active a {
  background: var(--hi-common-black);
}
.hi-awards-3-item.active a .title {
  color: var(--hi-common-white);
}
.hi-awards-3-item.active a .icon {
  color: var(--hi-common-white);
}
.hi-awards-3-item .icon {
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-awards-3-para br {
    display: none;
  }
}
.hi-awards-3-img-wrapper {
  position: relative;
  margin-top: -70px;
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-awards-3-img-wrapper {
    margin-left: 0;
    margin-top: 0;
  }
}
.hi-awards-3-img-wrapper .hover-image {
  display: inline-block;
}
.hi-awards-3-img-wrapper .hover-image .thumb {
  object-fit: cover;
  opacity: 0;
  transform: rotate(-20deg) !important;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 50px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-awards-3-img-wrapper .hover-image .thumb {
    width: 250px;
  }
}
.hi-awards-3-img-wrapper .hover-image .shape {
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  top: 250px;
  left: 141px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-awards-3-img-wrapper .hover-image .shape {
    display: none;
  }
}
.hi-awards-3-img-wrapper .hover-image.active .thumb {
  opacity: 1;
  transform: rotate(0deg) !important;
}
.hi-awards-3-img-wrapper .hover-image.active .shape {
  opacity: 1;
  transform: scale(1);
  top: 280px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-awards-3-img-wrapper .hover-image.active .shape {
    top: 119px;
  }
}

/*=============================
    22. testimonial
===============================*/
.hi-testimonial-video {
  margin-left: 300px;
  padding-top: 320px;
  padding-bottom: 320px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-video {
    margin-left: 100px;
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-video {
    text-align: center;
    margin-left: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.hi-testimonial-video .popup-video {
  background: var(--hi-common-white);
  width: 80px;
  height: 80px;
  line-height: 80px;
}
.hi-testimonial-item p {
  font-size: 18px;
  line-height: 178%;
  color: var(--hi-common-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-item p br {
    display: none;
  }
}
.hi-testimonial-name h3 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.hi-testimonial-name span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-testimonial-wrap {
  padding: 90px 300px 50px 110px;
  margin-top: -140px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hi-testimonial-wrap {
    padding: 90px 100px 50px 110px;
  }
}
@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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-wrap {
    padding: 40px 50px 30px 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-wrap {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .hi-testimonial-wrap {
    padding: 20px 20px 20px 20px;
  }
}
.hi-testimonial-navigation {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 575px) {
  .hi-testimonial-navigation {
    position: inherit;
    margin-top: 20px;
  }
}
.hi-testimonial-navigation span {
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  border: 1px solid var(--hi-common-black);
  transition: all 0.4s ease;
}
.hi-testimonial-navigation span:hover {
  background: var(--hi-common-white);
  border-color: var(--hi-common-white);
}
.hi-testimonial-spacing {
  padding-top: 270px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-spacing {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-4-content {
    margin-left: 0;
  }
}
.hi-testimonial-4-content h5 {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-4-content h5 {
    font-size: 25px;
  }
}
.hi-testimonial-4-author span {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-white);
  display: inline-block;
  margin-bottom: 5px;
}
.hi-testimonial-4-author h6 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--hi-common-white);
}
.hi-testimonial-4-navigation {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 2;
}
@media (max-width: 575px) {
  .hi-testimonial-4-navigation {
    position: inherit;
    margin-top: 30px;
  }
}
.hi-testimonial-4-navigation span {
  width: 60px;
  height: 60px;
  display: inline-block;
  border: 1px solid var(--hi-common-white);
  border-radius: 40px;
  color: var(--hi-theme-primary);
  text-align: center;
  line-height: 60px;
  transition: all 0.4s ease;
}
.hi-testimonial-4-navigation span.hi-testimonial-4-prev {
  margin-left: 10px;
}
.hi-testimonial-4-navigation span:hover {
  background: var(--hi-theme-primary);
  color: var(--hi-common-white);
  border-color: var(--hi-theme-primary);
}
@media (max-width: 575px) {
  .hi-testimonial-4-thumb img {
    width: 180px;
  }
}
.hi-testimonial-5-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
  background: var(--hi-common-white);
  padding: 13px 20px;
  display: inline-block;
}
.hi-testimonial-5-border {
  height: 1px;
  width: 100%;
  background: #000;
  display: block;
}
.hi-testimonial-5-content h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 158%;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
}
.hi-testimonial-5-content .hi-testimonial-4-author span {
  color: var(--hi-common-black);
  margin-bottom: 0;
}
.hi-testimonial-5-content .hi-testimonial-4-author h6 {
  font-size: 26px;
  color: var(--hi-common-black);
}
.hi-testimonial-5-navigation {
  bottom: 0;
}
.hi-testimonial-5-navigation span {
  border: 1px solid var(--hi-common-black);
  color: var(--hi-common-black);
}
.hi-testimonial-5-navigation span:hover {
  background: var(--hi-common-white);
  color: var(--hi-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-5-innerspacing {
    padding-bottom: 40px;
  }
}
.hi-testimonial-5-thumb {
  position: absolute;
  right: 90px;
  bottom: 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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-5-thumb {
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-5-thumb {
    position: inherit;
  }
}
.hi-testimonial-5-thumb img {
  mix-blend-mode: luminosity;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .hi-testimonial-5-thumb img {
    width: 300px;
  }
}
.hi-testimonial-8-slider {
  margin-left: 115px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-8-slider {
    margin-left: 40px;
  }
}
.hi-testimonial-8-pagenation {
  position: absolute;
  top: 75px !important;
  left: 0px !important;
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: 10px;
}
.hi-testimonial-8-pagenation .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 1px solid var(--hi-common-black);
  background: transparent;
  opacity: 1;
}
.hi-testimonial-8-pagenation .swiper-pagination-bullet-active {
  background: var(--hi-common-black);
}
.hi-testimonial-8-thumb-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-8-thumb-wrap {
    padding-top: 40px;
    justify-content: flex-start;
  }
}
.hi-testimonial-8-wow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 68px;
  right: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-testimonial-8-wow {
    display: none;
  }
}

/*=============================
    20. skill
===============================*/
.hi-skill-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-skill-thumb {
    position: inherit;
    width: auto;
  }
}
.hi-skill-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hi-skill-progress-bar-item {
  padding: 25px 0px;
  overflow: hidden;
  padding-bottom: 10px;
}
.hi-skill-progress-bar-title label {
   
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-white);
  margin-top: 6px;
}
.hi-skill-progress-bar .progress {
  overflow: visible;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
}
.hi-skill-progress-bar .progress-bar {
  position: relative;
  top: 0;
  height: 2px;
  overflow: visible;
  border-radius: 0;
  background-color: var(--hi-common-white);
}
.hi-skill-progress-bar .progress-bar .progress-count {
  position: absolute;
  bottom: -37px;
  right: 0;
   
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-white);
}
.hi-skill-btn .hi-btn-rounded-primary {
  color: var(--hi-common-black);
}
.hi-skill-btn .hi-btn-rounded-primary:hover {
  border-color: var(--hi-common-white);
  background: transparent;
  color: var(--hi-common-black);
}
.hi-skill-btn .hi-btn-rounded-primary .hi-btn-circle-dot {
  background: var(--hi-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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-skill-content p br {
    display: none;
  }
}
.hi-skill-4-spacing {
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-skill-4-spacing {
    padding-bottom: 0;
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

/*=============================
    10. faq
===============================*/
.hi-faq-4-accordion .accordion-items {
  border-bottom: 1px solid var(--hi-common-white);
  padding: 36px 0px;
}
.hi-faq-4-accordion .accordion-items h2 {
  line-height: 1;
}
.hi-faq-4-accordion .accordion-buttons {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--hi-common-white);
  text-align: left;
  padding: 0;
  position: relative;
  display: block;
  width: 100%;
  padding-right: 100px;
  line-height: 125%;
}
@media (max-width: 575px) {
  .hi-faq-4-accordion .accordion-buttons {
    padding-right: 20px;
    font-size: 20px;
  }
}
.hi-faq-4-accordion .accordion-buttons:not(.collapsed) .plus-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.hi-faq-4-accordion .accordion-buttons .plus-icon {
  position: absolute;
  top: 50%;
  right: 0;
}
.hi-faq-4-accordion .accordion-buttons .plus-icon::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--hi-common-white);
  border-radius: 2px;
  transition: 0.4s;
}
.hi-faq-4-accordion .accordion-buttons .plus-icon::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--hi-common-white);
  border-radius: 2px;
}
.hi-faq-4-accordion .accordion-body {
  padding: 0;
  padding-top: 14px;
}
.hi-faq-4-accordion .accordion-body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-white);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-faq-4-wrap {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-faq-4-spacing {
    margin-top: 90px;
  }
}
.hi-faq-4-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-faq-4-thumb {
    position: inherit;
    width: auto;
    margin-top: 30px;
  }
}
.hi-faq-4-thumb img {
  height: 100%;
  object-fit: cover;
}
.hi-faq-6-accordion .accordion-buttons {
  color: var(--hi-common-black);
}
.hi-faq-6-accordion .accordion-body p {
  color: var(--hi-common-black);
}
.hi-faq-6-accordion .accordion-items {
  border-bottom: 1px solid var(--hi-common-black);
}
.hi-faq-6-accordion .accordion-buttons {
  color: var(--hi-common-black);
}
.hi-faq-6-accordion .accordion-buttons .plus-icon::before {
  background-color: var(--hi-common-black);
}
.hi-faq-6-accordion .accordion-buttons .plus-icon::after {
  background-color: var(--hi-common-black);
}
.hi-faq-details-subtitle {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  display: block;
  border-bottom: 1px solid var(--hi-common-black);
  padding-bottom: 6px;
}
.hi-faq-details-title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.hi-faq-details-info {
  padding: 32px 40px 16px 40px;
}
.hi-faq-details-info-link ul li {
  margin-bottom: 13px;
}
.hi-faq-details-info-link ul li a {
  font-weight: 400;
  font-size: 18px;
  color: #000;
}
.hi-faq-details-thumb-wrap {
  padding: 40px 40px 20px 40px;
}
.hi-faq-details-thumb-info h4 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--hi-common-white);
}
.hi-faq-details-thumb-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--hi-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-faq-details-list {
    margin-left: 0;
  }
}
.hi-faq-details-list .accordion-buttons {
  padding-right: 50px;
}

/*=============================
    16. about
===============================*/
.hi-pricing-6-wrap {
  background: var(--hi-common-white);
}
.hi-pricing-6-wrap:hover .hi-pricing-6-icon {
  background: var(--hi-common-black);
  color: var(--hi-common-white);
}
.hi-pricing-6-icon {
  width: 130px;
  height: 130px;
  display: inline-block;
  text-align: center;
  line-height: 107px;
  border-radius: 50%;
  border: 10px solid var(--hi-theme-primary);
  margin-top: -60px;
  transform: translateY(-15px);
  background: var(--hi-common-white);
  transition: all 0.4s ease;
}
.hi-pricing-6-header {
  padding: 0px 60px 0px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-pricing-6-spacing {
    margin-top: 0;
  }
}
.hi-pricing-6-list {
  padding: 0 60px 39px 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-pricing-6-list {
    padding: 0 30px 19px 30px;
  }
}
.hi-pricing-6-list ul li {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-common-black);
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}
.hi-pricing-6-list ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: var(--hi-common-black);
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  border-radius: 20px;
}
.hi-pricing-6-header-content h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  color: var(--hi-common-black);
  display: inline-block;
  padding: 10px 16px;
  background: var(--hi-theme-primary);
}
.hi-pricing-6-header-content span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
}
.hi-pricing-6-header-content h2 {
  font-weight: 500;
  font-size: 70px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
}
.hi-pricing-6-btn a {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--hi-common-white);
  background: var(--hi-common-black);
  text-align: center;
  padding: 15px 20px;
  display: block;
}

/*=============================
    19. shop
===============================*/
.hi-shop-top-result p {
  font-weight: 500;
  font-size: 18px;
  color: var(--hi-common-black);
}
.hi-shop-top-select .nice-select {
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  padding: 0 25px;
  min-width: 204px;
  text-transform: capitalize;
  float: none;
  background: #f9f9f9;
  color: var(--hi-common-black);
  border: 1px solid var(--hi-common-black);
}
@media (max-width: 575px) {
  .hi-shop-top-select .nice-select {
    min-width: 180px;
  }
}
.hi-shop-top-btn {
  font-weight: 500;
  font-size: 14px;
  color: var(--hi-common-white);
  padding: 7px 30px;
  background-color: var(--hi-common-black);
}
.hi-shop-top-btn svg {
  margin-right: 7px;
}
.hi-shop-top-btn:hover {
  color: var(--hi-common-black);
  background-color: var(--hi-theme-primary);
}

.hi-product-item:hover .hi-product-action {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.hi-product-item:hover .hi-product-btn {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.hi-product-action {
  position: absolute;
  right: 0;
  top: 108px;
  z-index: 1;
  left: 30px;
  opacity: 0;
  text-align: center;
  transition: all 0.4s ease;
}
.hi-product-action-btn {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--hi-common-black);
  background-color: var(--hi-common-white);
  border-bottom: 0;
  border-radius: 50%;
  margin-bottom: 6px;
  box-shadow: 0 1px 2px 0 rgba(1, 15, 28, 0.2);
}
.hi-product-action-btn:hover {
  color: var(--hi-common-white);
  background-color: var(--hi-common-black);
  border-color: var(--hi-common-black);
}
.hi-product-action-btn:hover .hi-product-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(20px) translateY(-50%);
  -moz-transform: translateX(20px) translateY(-50%);
  -ms-transform: translateX(20px) translateY(-50%);
  -o-transform: translateX(20px) translateY(-50%);
  transform: translateX(20px) translateY(-50%);
}
.hi-product-tooltip {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 35px;
  font-weight: 500;
  font-size: 12px;
  color: var(--hi-common-white);
  background-color: var(--hi-common-black);
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
}
.hi-product-tooltip::before {
  -webkit-transform: translateY(-65%);
  -moz-transform: translateY(-65%);
  -ms-transform: translateY(-65%);
  -o-transform: translateY(-65%);
  transform: translateY(-65%);
  position: absolute;
  content: "";
  top: 46%;
  width: 0;
  height: 0;
  transform: rotate(67deg);
  border-left: 8px solid var(--hi-common-black);
  border-bottom: 8px solid transparent;
  left: -6px;
}
.hi-product-tooltip-right {
  left: 100%;
  right: auto;
}
.hi-product-tooltip-right::before {
  left: -4px;
  right: auto;
  border-left: 0;
  border-right: 8px solid var(--hi-common-black);
}
.hi-product-btn {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.hi-product-btn a {
  text-transform: uppercase;
  color: var(--hi-common-white);
  background: var(--hi-common-black);
  padding: 13px 42px;
  width: 100%;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
.hi-product-category {
  font-size: 18px;
  color: var(--hi-common-black);
  margin-bottom: 2px;
  display: inline-block;
}
.hi-product-title {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
}
.hi-product-title a:hover {
  color: var(--hi-theme-primary);
}
.hi-product-price {
   
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--hi-common-black);
}
.hi-product-content {
  align-items: flex-start;
}
.hi-product-details-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.hi-product-details-nav-link {
  width: 150px;
  height: 150px;
  padding: 0;
  border: none;
  margin: 10px 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-product-details-nav-link {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .hi-product-details-nav-link {
    width: 80px;
    height: 80px;
  }
}
.hi-product-details-nav-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hi-product-details-nav-link.active {
  border: none;
}
.hi-product-details-nav-link:hover {
  border: none;
}
.hi-product-details-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: var(--hi-common-black);
  display: inline-block;
}
.hi-product-details-title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--hi-common-black);
}
.hi-product-details-price {
  font-weight: 600;
  font-size: 22px;
  color: var(--hi-common-black);
}
.hi-product-details-ratings i {
  color: #ffb21d;
  font-size: 14px;
}
.hi-product-details-ratings .total {
  font-weight: 400;
  font-size: 15px;
  color: #55585b;
}
.hi-product-details-content {
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  color: var(--hi-common-black);
}
.hi-product-details-content span {
  font-weight: 500;
  color: var(--hi-common-black);
}
.hi-product-details-view {
  font-size: 16px;
  font-weight: 400;
  color: var(--hi-common-black);
}
.hi-product-details-view span {
  color: var(--hi-common-black);
  font-weight: 500;
  margin-right: 4px;
}
.hi-product-details-color-title {
  font-weight: 400;
  font-size: 15px;
  color: var(--hi-common-black);
}
.hi-product-details-color-filter .hi-checkbox {
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  border: none;
  outline: none;
  flex: 0 0 auto;
  background: #f26339;
  -webkit-transform: translateY(-2.5px);
  -moz-transform: translateY(-2.5px);
  -ms-transform: translateY(-2.5px);
  -o-transform: translateY(-2.5px);
  transform: translateY(-2.5px);
  padding: 0;
  margin-right: 4px;
  transform: translateY(1px);
  border-radius: 50px;
}
.hi-product-details-color-filter .hi-checkbox-2 {
  background: #F1B23D;
}
.hi-product-details-color-filter .hi-checkbox-3 {
  background: rgba(224, 74, 182, 0.94);
}
.hi-product-details-color-filter .hi-checkbox-4 {
  background: #31bb00;
}
.hi-product-details-color-filter .hi-checkbox:checked {
  position: relative;
  border-color: transparent;
}
.hi-product-details-color-filter .hi-checkbox:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--hi-ff-fontawesome);
  font-size: 10px;
  color: var(--hi-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hi-product-details-color-filter .hi-checkbox:hover {
  cursor: pointer;
}
.hi-product-details-action-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--hi-common-black);
}
.hi-product-details-quantity {
  width: 122px;
  position: relative;
  background: var(--hi-common-white);
}
.hi-product-details-quantity .hi-quantity-input {
  height: 44px;
  text-align: center;
  font-size: 14px;
  border: none;
  background-color: var(--hi-common-white);
  padding: 0 45px;
  width: 100%;
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  color: var(--hi-common-black);
}
.hi-product-details-quantity span {
  width: 35px;
  height: 34px;
  line-height: 34px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: var(--hi-common-black);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.4s ease;
  margin: 0 3px !important;
  cursor: pointer;
}
.hi-product-details-quantity span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background-color: #e1e1e1;
}
.hi-product-details-quantity span.decrement {
  right: auto;
  left: 0;
}
.hi-product-details-quantity span.decrement::before {
  left: auto;
  right: 0;
}
.hi-product-details-cart-btn {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--hi-common-black);
  padding: 10px 92px;
  display: inline-block;
  background: var(--hi-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-product-details-cart-btn {
    padding: 10px 40px;
  }
}
.hi-product-details-cart-btn:hover {
  color: var(--hi-common-white);
  background: var(--hi-common-black);
}
.hi-product-details-wishlist-btn {
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  background: var(--hi-common-white);
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
}
.hi-product-details-wishlist-btn:hover {
  color: var(--hi-common-white);
  background: var(--hi-common-black);
}
.hi-product-details-compare-wrap ul li {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.hi-product-details-compare-wrap ul li h5 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  margin-right: 10px;
}
.hi-product-details-compare-wrap ul li span {
  font-weight: 400;
  color: var(--hi-common-black);
}
.hi-product-details-compare-wrap ul li span.black {
  color: var(--hi-common-black);
}
.hi-product-details-social a {
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  background: var(--hi-common-black);
  border-radius: 0;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 35px;
  color: var(--hi-common-white);
}
.hi-product-details-social a:hover {
  color: var(--hi-common-white);
  background: var(--hi-theme-primary);
  border-color: var(--hi-theme-primary);
}
.hi-product-details-payment-way {
  border: 1px solid rgba(28, 29, 31, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 20px 0px 20px;
}
.hi-product-details-payment-text span {
  font-weight: 400;
  font-size: 14px;
  color: var(--hi-common-black);
}
.hi-product-details-payment-text span.grey {
  display: block;
  line-height: 1;
}
.hi-product-details-payment-bank a {
  height: 32px;
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  background: #fff;
  display: inline-block;
  line-height: 32px;
  padding: 1px 8px;
  border-radius: 6px;
  margin-left: 6px;
}
.hi-product-details-tab-line {
  transition: all 0.3s 0s ease-out;
  position: absolute;
  bottom: -3px;
  height: 3px;
  background-color: var(--hi-theme-secondary);
  display: block;
}
.hi-product-details-tab-nav .nav-tabs {
  border: none;
}
@media (max-width: 575px) {
  .hi-product-details-tab-nav .nav-tabs {
    padding-bottom: 0;
  }
}
.hi-product-details-tab-nav .nav-tabs .nav-link {
  text-transform: capitalize;
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--hi-common-black);
  padding: 17px 52px;
  border-radius: 0;
  border-bottom: 1px solid rgba(28, 29, 31, 0.1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-product-details-tab-nav .nav-tabs .nav-link {
    padding-bottom: 10px;
  }
}
.hi-product-details-tab-nav .nav-tabs .nav-link:not(:first-child) {
  margin-left: 5px;
}
.hi-product-details-tab-nav .nav-tabs .nav-link.active, .hi-product-details-tab-nav .nav-tabs .nav-link:hover {
  background: var(--hi-theme-primary);
  border-color: var(--hi-theme-primary);
}
.hi-product-details-tab-nav .nav-tabs .nav-link.active::after, .hi-product-details-tab-nav .nav-tabs .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 575px) {
  .hi-product-details-tab-nav .nav-tabs span#productTabMarker {
    display: none !important;
  }
}
.hi-product-details-desc-wrapper > p {
  line-height: 30px;
  text-transform: capitalize;
  color: var(--hi-grey-1);
}
.hi-product-details-desc-wrapper ul li {
  font-weight: 400;
  font-size: 18px;
  color: var(--hi-grey-1);
  display: flex;
  margin-bottom: 15px;
}
.hi-product-details-desc-wrapper ul li i {
  margin-right: 10px;
  transform: translateY(3px);
}
.hi-product-details-desc-title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.hi-product-details-additional-info-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.hi-product-details-additional-info.hi-table-style-2 table {
  border: 0;
  border-collapse: separate;
  border-spacing: 0 7px;
  width: 100%;
}
.hi-product-details-additional-info.hi-table-style-2 table tr {
  border: 0;
}
.hi-product-details-additional-info.hi-table-style-2 table tr:not(:last-child) {
  border: 0;
  margin-bottom: 6px;
}
.hi-product-details-additional-info.hi-table-style-2 table tr tg {
  padding: 7px 24px;
  border: 1px solid #E6E7E8;
}
.hi-product-details-additional-info.hi-table-style-2 table tr tg:first-child {
  padding-left: 24px;
  border-right: 0;
  font-size: 16px;
  color: var(--hi-common-black);
  background-color: #F9F9F9;
  width: 306px;
}
.hi-product-details-additional-info.hi-table-style-2 table tr tg:last-child {
  padding-left: 34px;
}
.hi-product-details-review-title-2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 33px;
}
.hi-product-details-review-avater-thumb {
  flex: 0 0 auto;
}
.hi-product-details-review-avater-thumb img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  flex: 0 0 auto;
}
.hi-product-details-review-avater-rating span {
  font-size: 13px;
  margin-right: 2px;
  color: #FFB21D;
}
.hi-product-details-review-avater-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}
.hi-product-details-review-avater-meta {
  font-size: 14px;
  line-height: 1.2;
  margin-left: 3px;
  display: inline-block;
}
@media (max-width: 575px) {
  .hi-product-details-review-avater-2 {
    flex-direction: column;
  }
}
.hi-product-details-review-form-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 4px;
}
.hi-product-details-review-form-rating p {
  font-size: 14px;
  margin-right: 8px;
  margin-bottom: 0;
}
.hi-product-details-review-form-rating-icon span {
  font-size: 12px;
  color: #FFB21D;
}
.hi-product-details-review-form > p {
  font-size: 16px;
  margin-bottom: 8px;
}
.hi-product-details-review-item-wrapper-2 {
  padding-bottom: 80px;
  border-bottom: 1px solid #E6E7E8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-product-details-thumb-wrapper {
    margin-right: 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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hi-product-details-wrap {
    margin-right: 0;
    margin-left: 0;
  }
}

/*=============================
    09. error
===============================*/
.hi-error-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hi-error-spacing {
  padding-top: 290px;
  padding-bottom: 100px;
  height: 100vh;
}
@media (max-width: 575px) {
  .hi-error-spacing {
    padding-top: 150px;
  }
}
.hi-error-title {
  font-weight: 700;
  font-size: 280px;
  line-height: 1;
  color: var(--hi-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), only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-error-title {
    font-size: 180px;
  }
}
@media (max-width: 575px) {
  .hi-error-title {
    font-size: 80px;
  }
}
.hi-error-subtitle {
  font-weight: 700;
  font-size: 60px;
  color: var(--hi-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), only screen and (min-width: 576px) and (max-width: 767px) {
  .hi-error-subtitle {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hi-error-subtitle {
    font-size: 30px;
  }
}

/* --------------------- */
.text-logo{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    line-height: 1;
    letter-spacing: .5px;
}
.text-logo span {
    letter-spacing: 2px;
    font-weight: 900;
    display: block;
}
.hi-header-right .hi-header-btn .hi-btn i{
    font-style: unset;
}
#overview {
    background: #13a89e;
}
 
.fee-list li{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
    font-weight: 600;
}
.fee-list li span{
    background-color: #fff;
 }
 .fee-list li:first-child::after{
    display: none;
 }
  .fee-list li:first-child span{
    font-weight: 800;
    text-transform: uppercase;
  }
  .fee-list li:first-child span small{
    font-size: 12px;
    font-weight: 400;
  }
.fee-list li::after{
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed #000;
    top: 50%;
    z-index: -1;
}
.fee-list .fee-category {
    padding-right: 15px;
}
.fee-list .fee-amount {
    padding-left: 15px;
}
.small{
    font-size: .85em;
}
#help{
        background: rgb(243 243 243 / 50%);
    position: relative;
    z-index: 1;
}
.hi-blog-item  {
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
}
.hi-footer-link p{
    font-size: 13px;
}

.counter-area *{
  color: #fff;
}
.fee-list li i {
    color: #ec008c;
}
.hi-hero-area{
    background: url(../img/main-bg.webp);
    position: relative;
    background-size: cover;
    background-position: center;
}

/* ------------------------------- */
@media(max-width:575px) {
    .text-logo {
        font-size: 20px;
    }

    .hi-header-right .hi-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
        .fee-list .fee-category, .fee-list .fee-amount {
     font-size: 16px;
}
.hi-blog-tag {
    flex-wrap: wrap;
    gap: 10px 15px;
}
.hi-service-item-title h3 br{
    display: none;
}
}
@media (max-width:420px){
        .text-logo {
        font-size: 18px;
    }
    .hi-service-item-title h3{
        font-size: 25px;
    }
}
 

/* -------------- */

.hi-header-logo {
    display: flex;
    align-items: center;
    background: #ab3e97;
    padding: 10px;
    position: relative;
    border-radius: 500px 0 0 500px;
}
 
.text-logo {
    font-size: 21px;
}
.hi-footer-widget{
    display: flex;
    align-items: center;
        gap: 6px;
}
.hi-footer-title {
    font-size: 25px;
    line-height: 100%;
    font-weight: 500;
}
h2.hi-hero-bigtext {
      text-shadow: 1px 2px 2px #00f6e1;
}
.hi-footer-title span{
    display: block;
}
@media (max-width:1400px) {
    .tgmenu__navbar-wrap>ul>li>a {
        font-size: 12px;
    }
}
@media (max-width:991px){
    .hi-header-right .hi-header-btn .hi-btn i{
        display: none;
    }
    .tgmobile__menu .hi-btn{
        padding: 15px 25px;
    }
    .hi-hero-area::before,.hi-hero-area::after{
    background-size: unset;
}
}
@media (max-width:767px) {
    main {
        overflow-x: hidden;
    }
     
    .tgmenu-offcanvas-open-bar {
    height: 50px;
    width: 50px;
    line-height: 50px;
    padding-top: 15px;
    min-width: 50px;
}


}
@media (max-width:575px) {
    #header-sticky .col-9 {
        padding: 0 0 0 10px;
    }

    .text-logo {
        font-size: 12px;
    }

    .tgmenu-offcanvas-open-bar {
        height: 40px;
        width: 40px;
        line-height: 40px;
        padding-top: 10px;
        min-width: 40px;
    }

    .tgmenu-offcanvas-open-bar span {
        width: 18px;
    }

    .hi-footer-widget img {
        max-width: 90%;
        margin: auto;
    }

    .hi-footer-title {
        font-size: 17px;
    }
    .hi-footer-location h4 {
    line-height: normal;
    margin-bottom: 0;
}
.footer-area{
    padding-top: 30px;
}
 
.hi-section-subtitle {
    max-width: 57%;
}
.hi-hero-content {
        padding-left: 0;
  }
}

.color-theme{
    color: #0e9a9a;
}
.hi-contact-form {
    background: #fff;
}
.hi-contact-form .form-check-input:checked {
    background-color: #0e9a9a;
    border-color: #0e9a9a;
}
.hi-contact-form .form-check-input:focus{
    box-shadow: none;
}

@media (min-width:1200px) and (max-width:1489px) {

    .text-logo {
        font-size: 18px;
    }

    .tgmenu__navbar-wrap>ul>li:not(:last-child) {
        margin-right: 10px;
    }

    
}
/* ======================= */
.hamilton-logo img{
    width: 120px;
    padding: 8px 0;
}
.header-sticky .hamilton-logo img{
    width: 80px;
    padding: 4px 0;
}


header, .header-sticky{
    overflow: hidden;
}
.header-sticky{
     box-shadow: 0px 15px 10px -15px #cd5b04;
}
header, .header-sticky .hi-header-logo{
    border-radius: 0;
}
.logo-symbol{
    max-width: 100px;
}
.site-logo-img{
    max-width: 300px;
}
.nav-right-block::before{
    content: "";
    background-color: #f47f25;
    inset: -100% -100% -100% -10%;
    z-index: -1;
    position: absolute;
}
.nav-btn{
    padding: 17px 30px !important;
}
.hi-header-right::before{
    content: "";
    position: absolute;
    z-index: -1;
    inset: -100% -100% -100% 50%;
        background-color: #f47f25;
}
header.hi-header-height {
    position: absolute;
    top: 15px;
    width: 100%;
    z-index: 9;
}
.hi-hero-content{
padding:  150px 0 25px;
}
@media (max-width:575px){
    .hi-header-logo{
        display: block;
         padding: 5px 6px;
    }
    .logo-symbol {
    max-width: 60px;
}
.site-logo-img {
    max-width: 140px;
}
     .hi-header-right .hi-btn {
        padding: 5px 15px;
        font-size: 12px;
    }
}
@media (max-width:350px){
    .logo-symbol {
        max-width: 45px;
    }
    .site-logo-img {
        max-width: 115px;
    }
}

.header-sticky .hi-header-logo::before{
    content: "";
    position: absolute;
    background-color: #ab3e97;
    z-index: -2;
    inset: -100%;
}
.portfolio-area, #accommodation  {
    background: #13a89e;
}
#schedule {
    background: #f58221;
}
#register{
    background-color: #f47f25;
}
.enquiry-form  {
    background: #f37a2b;
    border-radius: 20px 20px 0 0;
}


/* __________________ */


/* .hi-header-logo {
    background: rgb(171 62 151 / 60%);
}

.nav-right-block::before {
    background-color: rgb(244 127 37 / 60%);
    inset: -100% -100% -100% 0%;
}

.hi-header-right::before {
    inset: -100% -100% -100% 66.65%;
    background-color: rgb(244 127 37 / 60%);
}

#overview,
.portfolio-area,
#accommodation {
    background: rgb(19 168 158 / 60%);
}

#schedule,
.counter-area,
.enquiry-form {
    background: rgb(245 130 33 / 60%);
}

.header-sticky .nav-right-block::before {
    inset: -100% -100% -100% 0%;
}

.header-sticky .hi-header-logo::before {
    background-color: rgb(171 62 151 / 60%);
    inset: -100% 0 0 -100%;
}

.header-sticky .hi-header-logo {
    background-color: transparent;
}

@media (max-width:575px) {
    .hi-header-right::before {
        inset: -100% -100% -100% 63.15%;
    }
}
@media (min-width:1200px) {
    .hi-header-right::before {
        background-color: transparent;
    }
} */

header{
    height: auto !important;
}
.hi-header-btn {
    line-height: 1;
}
.hi-footer-widget{
background: #ab3e97;
    padding: 5px 12px 5px 5px;
    border-radius: 75px 0 0 75px;
    display: flex;
    height: 100%;
}
.footer-date {
    background: #f47f25;
    padding: 25px;
    height: 100%;
    display: flex;
    border-radius: 0 75px 75px 0;
}
.hi-footer-location-wrap {
width: 100%;
    display: flex;
}
.hi-footer-location  {
    display: flex;
    align-items: center;
    justify-content: space-around;
        width: 100%;
}
.hi-footer-location :is(h4,a){
    color: #fff;
}
 
@media (max-width:1199px){
    .hi-footer-location {
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}
.footer-date {
    padding: 10px 25px;
}
.hi-footer-location a {
    font-size: 16px;
    line-height: 1;
}
.hi-footer-location h4 {
    font-size: 20px;
    line-height: 150%;
}
}
@media (max-width:991px){
    #history .hi-chose-2-thumb img{
        max-height: 320px;
    object-fit: cover;
    object-position: center;
    }
    .hi-chose-funding{
        margin-right: 0;
    }
}
@media (max-width:767px){
    .hi-footer-widget, .footer-date{
        text-align: center;
    }
     .hi-footer-widget{
        border-radius:  30px 30px 0 0;
     }
    .footer-date{
        border-radius: 0 0 30px 30px;
        padding: 15px;
    }
        .hi-footer-location {
        align-items: center;
    }
    .hi-service-item-title h3 br{
        display: none;
    }
}
@media (max-width:575px){
    .hi-service-item-title {
    display: block;
}
.portfolio-area{
        padding: 20px 0 15px !important;
}
}

.history-img img{
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width:1200px) and (max-width:1400px){
    .logo-symbol {
    max-width: 80px;
}
.site-logo-img {
    max-width: 270px;
}
}

/* -------------------------- */
#register-form {
    color: #000d25;
}
#register-form{
    background-color: #fff;
    padding: 40px 30px; 
    border-radius: 15px 15px 0 0;
    border: 1px dashed #f47f25;
    border-bottom: 0;
}
#register-form  input[type="text"], #register-form  input[type="email"]{
    height: 45px;
}
#register-form  input, #register-form textarea{
 border: 1px solid #b5b1b1;
 font-size: 16px;   
 padding: 5px 10px;
}
#register-form  input::placeholder, #register-form textarea::placeholder{
    font-size: 15px;
}
#register-form .nice-select{
    border-color: #b5b1b1;
    height: 45px;
    line-height: 35px;
    padding: 5px 10px;
    font-size: 15px;
    text-transform: capitalize;
}
.hide{
    display: none;
}
#register-form  .form-check-input[type="radio"]{
    padding: 10px;
}
.text-info-box{
    text-align: center;
    padding: 20px;
    background-color: #fcaf17;
    border-radius: 12px;
    margin-bottom: 35px;
}
#register-form  .form-check-input.no:checked {
    background-color: #ff0042;
    border-color: #ff0042;
}
#register-form  .form-check-input.yes:checked {
    background-color: #05cb57;
    border-color: #05cb57;
}
#register-form  .form-check-input:focus{
    box-shadow: none;
}
@media (max-width: 767px){
    #register-form{
        padding: 25px 20px;
    }
    #register-form *{
        font-size: 14px;
    }
}