@import url("2459712ca9b5405eb36c449bc575d608.css");@import url("df1132dceabc4295842e7c3c143a8855.css");
:root{--body:#fff;--black:#000;--white:#fff;--theme:#001659;--theme2:#FF5E15;--theme3:#ffbc13;--header:#001659;--header-2:#111;--base:#001659;--text:#666;--text2:#CFCFCF;--text2:#444;--border:#C5C5C5;--border2:#E8E8E9;--button:#1C2539;--button2:#030734;--ratting:#FF9F0D;--bg:#F2F3F5;--bg2:#DF0A0A0D}
/* ========== 间距工具类 ========== */

.gap-10 { gap: 10px !important; }
.gap-12 { gap: 12px !important; }
.gap-15 { gap: 15px !important; }
.gap-20 { gap: 20px !important; }
.gap-30 { gap: 30px !important; }
.gap-40 { gap: 40px !important; }

.p-0 { padding: 0 !important; }
.p-10 { padding: 10px !important; }
.p-12 { padding: 12px !important; }
.p-14 { padding: 14px !important; }
.p-15 { padding: 15px !important; }
.p-16 { padding: 16px !important; }
.p-18 { padding: 18px !important; }
.p-20 { padding: 20px !important; }
.p-25 { padding: 25px !important; }
.p-30 { padding: 30px !important; }
.p-32 { padding: 32px !important; }
.p-35 { padding: 35px !important; }
.p-40 { padding: 40px !important; }
.p-50 { padding: 50px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }

.ml-0 { margin-left: 0 !important; }
.ml-10 { margin-left: 10px !important; }
.ml-20 { margin-left: 20px !important; }

/* ========== 弹性布局工具类 ========== */

.flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.flex-between {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.flex-start {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.flex-end {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.flex-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ========== 尺寸工具类 ========== */

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.h-w-100 { width: 100% !important; height: 100% !important; }

/* ========== 颜色工具类 ========== */

.color-white { color: var(--white) !important; }
.color-theme { color: var(--theme) !important; }
.color-theme2 { color: var(--theme2) !important; }
.color-theme3 { color: var(--theme3) !important; }

.bg-white { background-color: var(--white) !important; }
.bg-theme { background-color: var(--theme) !important; }
.bg-theme2 { background-color: var(--theme2) !important; }
.bg-theme3 { background-color: var(--theme3) !important; }

/* ========== 文本工具类 ========== */

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.font-600 { font-weight: 600 !important; }
.font-700 { font-weight: 700 !important; }
.font-800 { font-weight: 800 !important; }

/* ========== 显示工具类 ========== */

.hidden { display: none !important; }
.visible { display: block !important; }

/* ========== 位置工具类 ========== */

.relative { position: relative !important; }
.absolute { position: absolute !important; }

/* ========== 响应式工具类 ========== */

@media (max-width: 991px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 992px) {
  .hide-desktop { display: none !important; }
}

@media (max-width: 575px) {
  .hide-phone { display: none !important; }
}


/* ========== 主样式 ========== */
.theme-text {
  color: var(--theme)
}

.theme-btn {
  padding: 22px 45px;
  display: inline-block;
  background-color: var(--white);
  position: relative
}

.theme-btn .theme-effect {
  text-transform: uppercase;
  font-size: 15px;
  position: relative;
  transition: all 0.4s ease-in-out;
  color: var(--theme);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  display: block;
  height: 17px;
  line-height: normal
}

.theme-btn .theme-effect .effect-1 {
  display: block;
  height: 100%;
  position: relative;
  top: 0%;
  transition: 0.3s
}

.theme-btn .theme-effect i {
  position: relative;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  margin-right: 5px
}

.theme-btn::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: var(--theme2);
  transition: all 0.4s ease-in-out
}

.theme-btn:hover span,
.theme-btn:hover i {
  color: var(--white)
}

.theme-btn:hover::before {
  width: 100%;
  left: 0px
}

.theme-btn.bg-color-2 {
  background-color: var(--theme2)
}

.theme-btn.bg-color-2 span,
.theme-btn.bg-color-2 i {
  color: var(--white);
  transition: all 0.4s ease-in-out
}

.theme-btn.bg-color-2::before {
  background-color: var(--white)
}

.theme-btn.bg-color-2:hover span,
.theme-btn.bg-color-2:hover i {
  color: var(--theme2)
}

.theme-btn.bg-color-3 {
  background-color: var(--theme)
}

.theme-btn.bg-color-3 span,
.theme-btn.bg-color-3 i {
  color: var(--white)
}

.theme-btn.bg-color-3::before {
  background-color: var(--theme2)
}

.theme-btn.bg-color-4 {
  background-color: var(--white);
  border: 2px solid var(--theme);
  padding: 20px 45px
}

.theme-btn.bg-color-4 span,
.theme-btn.bg-color-4 i {
  color: var(--theme)
}

.theme-btn.bg-color-4::before {
  background-color: var(--theme)
}

.theme-btn.bg-color-4:hover span,
.theme-btn.bg-color-4:hover i {
  color: var(--white)
}

.theme-btn.bg-color-5 {
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px)
}

.theme-btn.bg-color-5 span,
.theme-btn.bg-color-5 i {
  color: var(--white)
}

.theme-btn.bg-color-5::before {
  background-color: var(--theme2)
}

.theme-btn.bg-color-5:hover span,
.theme-btn.bg-color-5:hover i {
  color: var(--white)
}

.theme-btn.bg-color-6 {
  background: #0D2468
}

.theme-btn.bg-color-6 span,
.theme-btn.bg-color-6 i {
  color: var(--white)
}

.theme-btn.bg-color-6::before {
  background-color: var(--theme2)
}

.theme-btn.bg-color-6:hover span,
.theme-btn.bg-color-6:hover i {
  color: var(--white)
}

.theme-btn.bg-color-6-active {
  background-color: var(--theme2)
}

.theme-btn.bg-color-6-active span,
.theme-btn.bg-color-6-active i {
  color: var(--white)
}

.theme-btn.bg-color-6-active::before {
  background: #0D2468
}

.theme-btn.bg-color-6-active:hover span,
.theme-btn.bg-color-6-active:hover i {
  color: var(--white)
}

.theme-btn.hover-color {
  background-color: var(--theme2)
}

.theme-btn.hover-color span,
.theme-btn.hover-color i {
  color: var(--white);
  transition: all 0.4s ease-in-out
}

.theme-btn.hover-color::before {
  background-color: var(--theme)
}

.theme-btn.hover-color:hover span,
.theme-btn.hover-color:hover i {
  color: var(--white)
}

.theme-btn.white-border {
  border: 2px solid var(--white);
  background-color: transparent
}

.theme-btn.white-border span,
.theme-btn.white-border i {
  color: var(--white)
}

.theme-btn.white-border::before {
  background-color: var(--theme2)
}

.theme-btn.white-border:hover {
  border: 2px solid var(--theme2)
}

.theme-btn.padding-style {
  padding: 22px 35px
}

.theme-btn:hover .theme-effect .effect-1 {
  top: -100%
}

.theme-btn.theme-bg-2 {
  background-color: var(--theme3)
}

.theme-btn.theme-bg-2 span,
.theme-btn.theme-bg-2 i {
  color: var(--white)
}

.theme-btn.theme-bg-2::before {
  background-color: var(--header-2)
}

.theme-btn.border-style-2 {
  background-color: transparent;
  border: 1px solid var(--border)
}

.theme-btn.border-style-2 span,
.theme-btn.border-style-2 i {
  color: var(--header-2)
}

.theme-btn.border-style-2::before {
  background-color: var(--theme3)
}

.theme-btn.border-style-2:hover {
  border: 1px solid transparent
}

.theme-btn.border-style-2:hover span,
.theme-btn.border-style-2:hover i {
  color: var(--white)
}

.link-btn {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.4s ease-in-out
}

.link-btn i {
  margin-left: 10px;
  font-size: 18px
}

.link-btn:hover {
  color: var(--theme2)
}

.link-btn.color-2 {
  color: var(--header-2)
}

.link-btn.color-2:hover {
  color: var(--theme3)
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0
}

input:focus {
  color: var(--white);
  outline: none
}

input {
  color: var(--white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Unbounded", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: uppercase;
  transition: all 0.4s ease-in-out
}

h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 120%
}

h2 {
  font-size: 50px;
  line-height: 120%;
  font-weight: 600
}

h3 {
  font-size: 30px;
  line-height: 170%;
  font-weight: 600
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 137%
}

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

h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 145%
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999
}

.preloader .animation-preloader {
  z-index: 1000
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Unbounded", sans-serif, "Rubik", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme2);
  position: relative
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--theme);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Unbounded", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg)
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme)
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none
}

.preloader .loader .row {
  height: 100%
}

.preloader .loader .loader-section {
  padding: 0px
}

.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1)
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1)
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header)
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 25px;
  margin-top: -10px
}

.section-title span {
  color: var(--theme);
  margin-bottom: 8px;
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px
}

.section-title span img {
  margin-right: 5px
}

.section-title span .title-img-2 {
  margin-left: 5px
}

.section-title span.white-text {
  color: var(--white) !important
}

.section-title.white-color span {
  color: var(--theme2)
}

.section-title.white-color h2 {
  color: var(--white);
  margin-bottom: 30px
}

.section-title.color-white-2 span {
  color: var(--white)
}

.section-title.color-white-2 h2 {
  color: var(--white)
}

.section-title .text-color {
  color: var(--theme2);
  font-size: 50px;
  font-weight: 600
}

.section-title.style-2 {
  margin-bottom: 35px
}

.section-title.style-2 h2 .text-color {
  color: var(--theme2);
  font-size: 50px;
  font-weight: 600
}

.section-title.style-3 span {
  color: var(--text3);
  font-weight: 600
}

.section-title.style-3 h2 {
  color: var(--header-2);
  font-size: 32px;
  line-height: 145%
}

.center {
  text-align: center;
  margin: 0 auto
}

.section-bg {
  background-color: var(--bg)
}

.section-padding {
  padding: 120px 0
}

@keyframes video-animation {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.5)
  }

  100% {
    opacity: 0;
    transform: scale(2)
  }
}

@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0)
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg)
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg)
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg)
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes tpswing {
  0% {
    transform: rotate(25deg)
  }

  100% {
    transform: rotate(0deg)
  }
}

@keyframes width {
  0% {
    width: 0%
  }

  100% {
    width: 100%
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.2)
  }
}

@keyframes scale-up-one {
  0% {
    transform: scale(1)
  }

  40% {
    transform: scale(0.5)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes scale-up-two {
  0% {
    transform: scale(0.5)
  }

  40% {
    transform: scale(0.8)
  }

  100% {
    transform: scale(0.5)
  }
}

@keyframes scale-up-three {
  0% {
    transform: scale(0.7)
  }

  40% {
    transform: scale(0.4)
  }

  100% {
    transform: scale(0.7)
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0)
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1)
  }
}

@keyframes movebounce {
  0% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(10px)
  }

  100% {
    transform: translateY(0px)
  }
}

@keyframes bounceUp {
  0% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(40px)
  }

  100% {
    transform: translateY(0px)
  }
}

@keyframes moveleftbounce {
  0% {
    transform: translateX(0px)
  }

  50% {
    transform: translateX(40px)
  }

  100% {
    transform: translateX(0px)
  }
}

@keyframes moverightbounce {
  0% {
    margin-left: 0px
  }

  50% {
    margin-left: 50px
  }

  100% {
    margin-left: 0px
  }
}

@keyframes bounce-y {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-30px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes bounce-x {
  0% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(30px)
  }

  100% {
    transform: translateX(0)
  }
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%
  }

  to {
    -webkit-mask-position: -50%
  }
}

@keyframes right-image-bounce {
  0% {
    transform: translateX(8px)
  }

  50% {
    transform: translateX(-12px)
  }

  100% {
    transform: translateX(8px)
  }
}

@keyframes top-image-bounce {
  0% {
    transform: translateY(8px)
  }

  50% {
    transform: translateY(-12px)
  }

  100% {
    transform: translateY(8px)
  }
}

.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 30px
}

.header-top-wrapper .contact-list li {
  font-size: 14px;
  color: var(--theme)
}

.header-top-wrapper .contact-list li i {
  color: var(--theme2);
  margin-right: 10px;
  font-weight: 900
}

.header-top-wrapper .contact-list li span {
  font-weight: 500
}

.header-top-wrapper .top-left .form-clt {
  border-left: 1px solid var(--border2);
  position: relative;
  z-index: 99999
}

.header-top-wrapper .top-left .form-clt .nice-select {
  background-color: transparent;
  z-index: 999
}

.header-top-wrapper .top-left .form-clt .nice-select span {
  font-size: 14px;
  color: var(--theme);
  font-weight: 400;
  text-transform: uppercase
}

.header-top-4 {
  position: relative;
  background-color: var(--black);
  padding: 15px 0;
  z-index: 9
}

.header-top-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme2);
  width: 40%;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 96% 0, 100% 99%, 0% 100%);
  clip-path: polygon(0 0, 96% 0, 100% 99%, 0% 100%)
}

.header-top-4 .container-fluid {
  padding: 0 100px
}

.header-top-wrapper-4 {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header-top-wrapper-4 .header-top-left p {
  color: var(--white)
}

.header-top-wrapper-4 .header-top-right {
  display: flex;
  align-items: center;
  gap: 40px
}

.header-top-wrapper-4 .header-top-right .contact-list {
  display: flex;
  align-items: center;
  gap: 40px
}

.header-top-wrapper-4 .header-top-right .contact-list li a {
  color: var(--white)
}

.header-top-wrapper-4 .header-top-right .contact-list li i {
  margin-right: 5px;
  color: var(--white)
}

.header-top-wrapper-4 .header-top-right .social-icon {
  gap: 15px
}

.header-top-wrapper-4 .header-top-right .social-icon i {
  color: var(--white)
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header-main .main-menu ul {
  margin-bottom: 0
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  padding: 30px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out
}

.header-main .main-menu ul li a i {
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px
}

.header-main .main-menu ul li a:hover {
  color: var(--theme2) !important
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--theme);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  color: var(--theme);
  font-weight: 500;
  font-size: 14px;
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0
}

.header-main .main-menu ul li .submenu li:hover>a {
  background: #ECECEC
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme2)
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  transform: translateY(1);
  visibility: visible;
  opacity: 1
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  transform: translateY(-50%);
  color: var(--theme)
}

.header-main .main-menu ul li .has-homemenu {
  width: 1200px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -50px;
  visibility: hidden;
  padding: 30px 30px 10px 30px
}

.header-main .main-menu ul li .has-homemenu .homemenu {
  position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
  position: relative
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 15px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn span {
  font-size: 14px
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: ""
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%)
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
  width: 100%
}

.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 12px
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme)
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme)
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px)
}

.header-1 .header-logo {
  position: absolute;
  top: 0;
  left: 45px
}

.header-1 .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 240px;
  border-left: 1px solid var(--border2);
  padding-left: 50px
}

.header-1 .bar-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  font-size: 22px;
  transform: scaleX(-1)
}

.header-1 .header-right {
  gap: 20px
}

.header-1 .header-right .header__hamburger .sidebar__toggle .bar-icon {
  background-color: var(--theme);
  padding: 25px;
  width: 80px;
  height: 80px;
  line-height: 80px
}

.header-2 .header-main .main-menu ul li .has-homemenu {
  left: -300px
}

.header-3 {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 999
}

.header-3 .header-top-text {
  padding: 10px 0
}

.header-3 .header-top-text span {
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase
}

.header-3 .header-top-text span a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--white)
}

.header-3 .mega-menu-wrapper .header-main {
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 0 30px
}

.header-3 .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 40px
}

.header-3 .mega-menu-wrapper .header-main .header-left .sidebar__toggle {
  border-right: 1px solid var(--theme2);
  padding-right: 30px
}

.header-3 .mega-menu-wrapper .header-main .header-left .sidebar__toggle .bar-2 {
  display: none
}

.header-3 .mega-menu-wrapper .header-main .header-left .header-logo .logo-2 {
  display: none
}

.header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li a {
  color: var(--white)
}

.header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li a:hover {
  color: var(--theme2)
}

.header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li .submenu li a {
  color: var(--theme)
}

.header-3 .mega-menu-wrapper .header-main .header-right .header-button {
  display: none
}

.header-3 .mega-menu-wrapper .header-main .header-right .header-content {
  text-align: right
}

.header-3 .mega-menu-wrapper .header-main .header-right .header-content span {
  font-size: 14px;
  color: var(--white)
}

.header-3 .mega-menu-wrapper .header-main .header-right .header-content h5 a {
  color: var(--white)
}

.header-3 .mega-menu-wrapper .header-main .header-right .header-content h5 a:hover {
  color: var(--theme2)
}

.header-3 .main-menu ul li .has-homemenu {
  left: -330px
}

.header-4 .container-fluid {
  padding: 0 100px
}

.header-4 .header-main .header-right {
  gap: 40px
}

.header-5 .container-fluid {
  padding: 0 100px
}

.header-5 .mega-menu-wrapper .header-main .header-logo-2 {
  display: none
}

.header-5 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: var(--white)
}

.header-5 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header)
}

.header-5 .mega-menu-wrapper .header-main .header-right {
  gap: 30px
}

.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: var(--white)
}

.header-5 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--white)
}

.header-5 .header-main .main-menu ul li .has-homemenu {
  left: -400px
}

.header-5 .header-main .header-right {
  gap: 40px
}

.sticky .header-logo {
  top: 28px
}

.sticky.header-5 .mega-menu-wrapper .header-main {
  padding: 0px 0px
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-logo-2 {
  display: block
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-logo {
  display: none
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: var(--header)
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header)
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right {
  gap: 30px
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: var(--header)
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--header)
}

.sticky.header-5 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header)
}

.sticky.header-3 .header-top-text {
  display: none
}

.sticky.header-3 .mega-menu-wrapper .header-main {
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0
}

.sticky.header-3 .mega-menu-wrapper .header-main .header-left .sidebar__toggle .bar-1 {
  display: none
}

.sticky.header-3 .mega-menu-wrapper .header-main .header-left .sidebar__toggle .bar-2 {
  display: block
}

.sticky.header-3 .mega-menu-wrapper .header-main .header-left .header-logo .logo-1 {
  display: none
}

.sticky.header-3 .mega-menu-wrapper .header-main .header-left .header-logo .logo-2 {
  display: block
}

.sticky.header-3 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu ul li a {
  color: var(--theme)
}

.sticky.header-3 .mega-menu-wrapper .header-main .header-right .header-button {
  display: block
}

.sticky.header-3 .mega-menu-wrapper .header-main .header-right .header-content {
  display: none
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme2);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999990;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  cursor: pointer
}

.offcanvas__info::-webkit-scrollbar {
  display: none
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(0)
}

.offcanvas__logo a img {
  width: 150px
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme2)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 30px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme2)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 40px;
  gap: 10px
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--theme);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border2)
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 99999;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible
}

.breadcrumb-wrapper {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-image: linear-gradient(90deg, rgba(17, 17, 17, 0.8) 0%, rgba(155, 155, 155, 0.1) 100%)
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding-top: 300px;
  padding-bottom: 215px
}

.breadcrumb-wrapper .page-heading .icon-shape {
  position: absolute;
  bottom: 18%;
  left: 30%
}

.breadcrumb-wrapper .page-heading span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  position: relative;
  z-index: 9
}

.breadcrumb-wrapper .page-heading span img {
  margin-right: 5px
}

.breadcrumb-wrapper .page-heading h2 {
  color: var(--white);
  font-size: 80px;
  position: relative;
  z-index: 9;
  margin-top: 15px
}

.breadcrumb-wrapper .page-heading h2 span {
  font-size: 60px;
  font-weight: 400
}

.breadcrumb-wrapper .breadcrumb-items {
  padding: 30px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px
}

.breadcrumb-wrapper .breadcrumb-items li {
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase
}

.breadcrumb-wrapper .breadcrumb-items li a {
  color: rgba(255, 255, 255, 0.7019607843);
  transition: all 0.4s ease-in-out
}

.breadcrumb-wrapper .breadcrumb-items li a:hover {
  color: var(--theme2)
}

.breadcrumb-wrapper .breadcrumb-items li i {
  font-weight: 400;
  font-size: 16px
}

.breadcrumb-wrapper .breadcrumb-items .text {
  text-decoration: underline
}

.breadcrumb-wrapper.error-page {
  height: 100vh
}

.breadcrumb-wrapper.error-page .page-heading {
  padding: 250px 0
}

.breadcrumb-wrapper.error-page .page-heading h1 {
  font-size: 200px;
  color: var(--white);
  text-transform: uppercase;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent
}

.breadcrumb-wrapper.error-page .page-heading h3 {
  color: var(--white)
}

.breadcrumb-wrapper.coming-page {
  height: 100vh
}

.breadcrumb-wrapper.coming-page .page-heading ul {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 650px;
  justify-content: center;
  margin: 30px auto
}

.breadcrumb-wrapper.coming-page .page-heading ul li span {
  font-size: 42px;
  color: var(--white);
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  border: 3px solid var(--border2);
  display: inline-block
}

.breadcrumb-wrapper.coming-page .page-heading ul li p {
  color: var(--white);
  margin-top: 10px;
  text-transform: uppercase
}

.breadcrumb-wrapper.coming-page .page-heading .form {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
  overflow: hidden
}

.breadcrumb-wrapper.coming-page .page-heading .form input {
  color: var(--text);
  width: 100%;
  padding: 19px 35% 19px 30px;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-size: 14px
}

.breadcrumb-wrapper.coming-page .page-heading .form .button-area {
  position: absolute;
  top: 0;
  right: 0
}

.breadcrumb-wrapper.coming-page .page-heading .form .button-area .theme-btn {
  padding: 25px 45px
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important
}

.hero-1 .hero-content {
  position: relative;
  z-index: 99
}

.hero-1 .hero-content .title {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme)
}

.hero-1 .hero-content .title img {
  margin-right: 10px
}

.hero-1 .hero-content h1 {
  margin-top: 10px;
  font-size: 86px
}

.hero-1 .hero-content h1 .text {
  color: #5C6C9C
}

.hero-1 .hero-content h1 .text-2 {
  color: var(--white)
}

.hero-1 .hero-image {
  position: absolute;
  bottom: 0;
  right: 205px;
  width: 940px;
  height: 865px;
  z-index: 9
}

.hero-1 .hero-image img {
  width: 100%;
  height: 100%
}

.hero-1 .hero-image::after {
  position: absolute;
  top: 18%;
  left: 32%;
  width: 650px;
  height: 650px;
  content: "";
  border-radius: 50%;
  background-color: var(--theme2);
  z-index: -1
}

.hero-2 .hero-image {
  position: absolute;
  right: 0;
  bottom: 0
}

.hero-2 .hero-image img {
  max-width: 100%
}

.hero-2 .hero-content {
  position: relative
}

.hero-2 .hero-content .hero-button {
  position: absolute;
  top: 30%;
  left: 0
}

.hero-2 .hero-content h1 {
  font-size: 120px;
  margin-bottom: 50px
}

.hero-2 .hero-content h1 span {
  margin-left: 250px
}

.hero-2 .hero-content p {
  max-width: 560px;
  font-size: 24px;
  border-left: 2px solid var(--theme);
  padding-left: 40px
}

.hero-3 .array-btn .array-prev {
  width: 50px;
  height: 50px;
  background-color: transparent;
  color: var(--white);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2)
}

.hero-3 .array-btn .array-next {
  width: 50px;
  height: 50px;
  background-color: var(--theme2);
  color: var(--white);
  border-radius: 50%
}

.hero-3 .hero-content {
  padding-top: 300px;
  padding-bottom: 170px;
  position: relative;
  z-index: 9
}

.hero-3 .hero-content span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--white)
}

.hero-3 .hero-content h1 {
  font-size: 80px;
  color: var(--white)
}

.hero-3 .hero-content .hero-button {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center
}

.hero-4 {
  position: relative
}

.hero-4 .array-button {
  background-color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 20px
}

.hero-4 .array-button .array-prev {
  color: var(--theme)
}

.hero-4 .array-button .array-next {
  color: var(--theme2)
}

.hero-4 .swiper-dot-2 {
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  transform: rotate(-90deg)
}

.hero-4 .swiper-dot-2 .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  transition: 0.6s;
  background-color: var(--text);
  opacity: 1;
  border-radius: 10px;
  position: relative
}

.hero-4 .swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px
}

.hero-4 .swiper-dot-2 .swiper-pagination-bullet::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--text);
  content: ""
}

.hero-4 .swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
  transition: 0.6s;
  position: relative
}

.hero-4 .swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid var(--theme2)
}

.hero-4 .swiper-slide-active .hero-image {
  transform: scale(1.12)
}

.hero-4 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  transition: all 8s ease-out 0s
}

.hero-4 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(10, 12, 0);
  opacity: 0.749
}

.hero-4 .hero-content {
  position: relative;
  padding: 180px 0
}

.hero-4 .hero-content h1 {
  margin-top: -23px;
  line-height: 140%
}

.hero-4 .hero-content h1 span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite;
  -webkit-mask-image: linear-gradient(-75deg, rgba(255, 255, 255, 0.15) 50%, white 50%, rgba(255, 255, 255, 0.15) 70%);
  -webkit-mask-size: 200%
}

.hero-4 .hero-content p {
  color: var(--white);
  margin-top: 10px
}

.hero-4 .hero-content .hero-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px
}

.hero-4.style-2 .array-button {
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: initial;
  transform: translateY(-50%);
  bottom: initial;
  right: 5%;
  z-index: 9;
  padding: initial;
  display: grid;
  gap: 20px
}

.hero-4.style-2 .array-button .array-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.4s ease-in-out
}

.hero-4.style-2 .array-button .array-prev:hover {
  background-color: var(--theme3);
  color: var(--white);
  border: 1px solid transparent
}

.hero-4.style-2 .array-button .array-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: var(--theme3);
  color: var(--white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out
}

.hero-4.style-2 .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--header-2);
  border: 1px solid transparent
}

.hero-4.style-2 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.749
}

.hero-4.style-2 .hero-content {
  position: relative;
  padding-top: 300px;
  padding-bottom: 200px
}

.hero-4.style-2 .hero-content h1 {
  font-size: 60px
}

.hero-4.style-2 .hero-content p {
  color: var(--white);
  margin-top: 10px
}

.hero-4.style-2 .hero-content .hero-button {
  margin-top: 50px;
  gap: 30px
}

.hero-4.style-2 .hero-content .hero-button .theme-btn {
  background: var(--theme3);
  border-color: var(--theme3)
}

.hero-4.style-2 .hero-content .hero-button .theme-btn span,
.hero-4.style-2 .hero-content .hero-button .theme-btn i {
  color: var(--white)
}

.hero-4.style-2 .hero-content .hero-button .video-box {
  position: relative;
  z-index: 2
}

.hero-4.style-2 .hero-content .hero-button .video-box .video-btn {
  background-color: var(--theme3);
  color: var(--white);
  display: inline-block;
  font-size: 18px;
  height: 70px;
  width: 70px;
  line-height: 75px;
  border-radius: 50%;
  text-align: center
}

.hero-4.style-3 {
  position: relative;
  z-index: 9
}

.hero-4.style-3 .array-button {
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: initial;
  transform: translateY(-50%);
  bottom: initial;
  right: 5%;
  z-index: 9;
  padding: initial;
  display: grid;
  gap: 20px
}

.hero-4.style-3 .array-button .array-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.4s ease-in-out
}

.hero-4.style-3 .array-button .array-prev:hover {
  background-color: var(--theme2);
  color: var(--white);
  border: 1px solid transparent
}

.hero-4.style-3 .array-button .array-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: var(--theme2);
  color: var(--white);
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out
}

.hero-4.style-3 .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--header-2);
  border: 1px solid transparent
}

.hero-4.style-3 .shape-1 {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 9
}

.hero-4.style-3 .shape-2 {
  position: absolute;
  bottom: -4px;
  right: -20%;
  z-index: 2;
  top: -20px
}

.hero-4.style-3 .shape-2 img {
  width: 100%;
  height: 100%
}

.hero-4.style-3 .hero-content {
  position: relative;
  z-index: 99
}

.hero-4.style-3 .hero-content h6 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 40px
}

.hero-4.style-3 .hero-content .hero-button {
  margin-top: 50px;
  gap: 30px
}

.hero-4.style-3 .hero-content .hero-button .theme-btn span,
.hero-4.style-3 .hero-content .hero-button .theme-btn i {
  color: var(--white)
}

.hero-4.style-3 .hero-content .hero-button .video-box {
  position: relative;
  z-index: 2
}

.hero-4.style-3 .hero-content .hero-button .video-box .video-btn {
  background-color: var(--theme2);
  color: var(--white);
  display: inline-block;
  font-size: 18px;
  height: 70px;
  width: 70px;
  line-height: 75px;
  border-radius: 50%;
  text-align: center
}

.video-items .circle-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.video-items .circle-box .text-circle {
  animation: cir36 10s linear infinite
}

.video-items .circle-box .video-button {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  font-size: 18px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%)
}

.single-funfact-items .funfact-content .title .icon {
  font-size: 16px;
  color: var(--theme2)
}

.achievement-wrapper .counter-area .counter-items .content {
  margin-top: 20px
}

.achievement-wrapper .counter-area .counter-items .content h2 {
  font-size: 42px;
  color: var(--header-2);
  margin-bottom: 5px
}

.about-wrapper .section-header .circle-box {
  position: absolute;
  top: 0
}

.about-wrapper .section-header .circle-box .text-circle {
  animation: cir36 10s linear infinite
}

.about-wrapper .section-header .circle-box .icon-img {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%)
}

.about-wrapper .about-image .counter-content {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  width: 200px;
  height: 200px;
  text-align: center
}

.about-wrapper .about-image .counter-content h6 {
  font-size: 14px;
  margin-top: 30px;
  font-weight: 400;
  color: var(--theme2)
}

.about-wrapper .about-image .counter-content h2 {
  font-size: 60px;
  line-height: 1;
  -webkit-text-stroke-width: 2px;
  margin-top: 10px;
  -webkit-text-stroke-color: var(--theme);
  -webkit-text-fill-color: transparent
}

.about-wrapper-2 .about-image .circle-box {
  position: absolute;
  right: -13%;
  top: 35%
}

.about-wrapper-2 .about-image .circle-box .text-circle {
  animation: cir36 10s linear infinite
}

.about-wrapper-2 .about-image .circle-box .box-img {
  width: 95px;
  height: 95px;
  line-height: 95px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%)
}

.about-wrapper-2 .about-image .circle-box .box-img img {
  width: initial !important
}

.about-wrapper-2 .about-content .nav {
  border: unset;
  display: flex;
  align-items: center;
  gap: 50px
}

.about-wrapper-2 .about-content .nav .nav-link {
  padding: 0;
  border: unset;
  background: none
}

.about-wrapper-2 .about-content .nav .nav-link .title {
  font-weight: 600;
  color: var(--theme);
  font-size: 18px;
  text-transform: uppercase
}

.about-wrapper-2 .about-content .nav .nav-link.active .title {
  color: var(--theme2);
  text-decoration: underline;
  position: relative
}

.about-wrapper-2 .about-content .tab-content {
  margin-top: 20px
}

.about-wrapper-2 .about-image-items .circle-box {
  width: 280px;
  position: absolute;
  bottom: -60px;
  left: 10px
}

.about-wrapper-3 .about-image-items .exp-box .icon-item .icon {
  font-size: 62px;
  color: var(--white)
}

.about-wrapper-3 .about-image-items .exp-box .icon-item .content h2 {
  color: var(--white)
}

.about-wrapper-3 .about-image-items .exp-box .icon-item .content p {
  color: var(--white)
}

.about-wrapper-3 .about-content .about-list-items .list-area li:not(:last-child) {
  margin-bottom: 10px
}

.about-wrapper-3 .about-content .about-list-items .list-area li i {
  color: var(--theme2);
  margin-right: 5px
}

@keyframes load {
  0% {
    width: 0
  }

  100% {
    width: 75%
  }
}

.about-wrapper-3 .about-author .author-contact .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  background-color: var(--theme2);
  color: var(--white)
}

.about-wrapper-3 .about-author .author-contact .content h6 {
  font-size: 15px;
  margin-top: 5px
}

.about-wrapper-3.style-2 {
  margin-bottom: 55px
}

.about-wrapper-3.style-2 .about-image-items {
  position: relative;
  height: 500px
}

.about-wrapper-3.style-2 .about-image-items::before {
  content: "";
  background-image: url(../images/about-bg.png);
  background-repeat: repeat;
  position: absolute;
  top: 48px;
  right: 23px;
  height: 240px;
  width: 108px;
  background-repeat: no-repeat;
  z-index: -1;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation: bounce-y 10s infinite linear
}

.about-wrapper-3.style-2 .about-image-items .about-image-1 {
  height: 500px
}

.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
  right: -15%;
  bottom: -12%;
  max-width: 250px
}

.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 .video-box .video-btn {
  background-color: var(--theme3);
  color: var(--white);
  display: inline-block;
  font-size: 18px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center
}

.about-wrapper-3.style-2 .about-content .list-area-2 {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px
}

.about-wrapper-3.style-2 .about-content .list-area-2 .list-item li:not(:last-child) {
  margin-bottom: 10px
}

.about-wrapper-3.style-2 .about-content .list-area-2 .list-item li i {
  color: var(--theme3);
  margin-right: 10px
}

.about-wrapper-3.style-2 .about-content .about-author .author-contact .icon {
  background-color: var(--theme3);
  color: var(--white)
}

.about-wrapper-3.style-2 .about-content .about-author .author-contact .content h6 a {
  color: var(--header-2)
}

.service-wrapper .service-icon-area .icon-items {
  display: flex;
  gap: 20px;
  background-color: var(--white);
  padding: 30px 25px
}

.service-wrapper .service-icon-area .icon-items .icon {
  color: var(--theme2);
  font-size: 60px
}

.service-wrapper .service-icon-area .icon-items .content h6 {
  margin-bottom: 10px
}

.service-wrapper .service-icon-area .icon-items .content h6 a:hover {
  color: var(--theme2)
}

.service-wrapper .service-icon-area .icon-items .content p {
  font-size: 16px
}

.service-wrapper .service-image img {
  width: 100%;
  height: 100%
}

.single-service-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.single-service-wrapper .service-box-items {
  margin-bottom: -6px
}

.single-service-wrapper .service-box-items:nth-of-type(2) .icon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFE4D7 100%)
}

.single-service-wrapper .service-box-items:nth-of-type(3) .icon {
  background: linear-gradient(180deg, #FFE4D7 0%, rgba(255, 255, 255, 0) 100%)
}

.single-service-wrapper .service-box-items:nth-of-type(4) .icon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFE4D7 100%)
}

.single-service-wrapper .service-box-items .icon {
  width: 180px;
  height: 180px;
  line-height: 210px;
  background: linear-gradient(180deg, #FFE4D7 0%, rgba(255, 255, 255, 0) 55%);
  text-align: center;
  border-radius: 50%;
  font-size: 90px;
  color: var(--theme2);
  transition: all 0.4s ease-in-out
}

.single-service-wrapper .service-box-items .content {
  margin-top: 35px;
  text-align: center
}

.single-service-wrapper .service-box-items .content h5 a:hover {
  color: var(--theme2)
}

.single-service-wrapper .service-box-items .content .text-bottom {
  font-size: 50px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme2);
  -webkit-text-fill-color: transparent;
  margin-top: 20px
}

.single-service-wrapper .service-box-items:hover .icon {
  background: linear-gradient(180deg, #FFE4D7 0%, rgba(255, 255, 255, 0) 100%)
}

.single-service-wrapper .service-box-items.style-2 {
  margin-top: 35px
}

.service-image-wrapper .service-image img {
  width: 100%;
  height: 100%
}

.service-details-content .details-thumb img {
  width: 100%;
  height: 100%
}

.service-details-content .service-details-content {
  margin-top: 30px
}

.service-details-content .service-details-content .service-single-items {
  text-align: center;
  box-shadow: 5px 6px 30px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px 20px;
  transition: all 0.4s ease-in-out
}

.service-details-content .service-details-content .service-single-items .icon {
  font-size: 52px;
  color: var(--theme);
  transition: all 0.4s ease-in-out
}

.service-details-content .service-details-content .service-single-items .icon-content {
  margin-top: 15px
}

.service-details-content .service-details-content .service-single-items .icon-content h5 {
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out
}

.service-details-content .service-details-content .service-single-items:hover {
  background-color: var(--theme);
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.07)
}

.service-details-content .service-details-content .service-single-items:hover .icon {
  color: var(--white)
}

.service-details-content .service-details-content .service-single-items:hover .icon-content h5 {
  color: var(--white)
}

.service-details-content .service-details-content .service-single-items:hover .icon-content p {
  color: var(--white)
}

.service-details-content .service-details-content .hilight-text {
  padding: 30px 35px;
  position: relative;
  border-left: 4px solid var(--theme);
  margin-top: 30px
}

.service-details-content .service-details-content .hilight-text::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  opacity: 0.06
}

.service-details-content .service-details-content .hilight-text .text {
  color: var(--theme);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px
}

.service-details-content .service-details-content .hilight-text h6 {
  font-size: 14px;
  font-weight: 500
}

.service-details-content .service-details-content .hilight-text h6 span {
  color: var(--theme2)
}

.service-details-content .service-details-content .service-process-wrapper .single-service-process {
  background-color: var(--bg);
  padding: 40px 20px
}

.service-details-content .service-details-content .service-process-wrapper .single-service-process .icon {
  width: 100px;
  height: 100px;
  line-height: 115px;
  font-size: 46px;
  text-align: center;
  margin: 0 auto;
  background-color: var(--white);
  color: var(--theme2);
  border-radius: 50%
}

.service-details-content .service-details-content .service-process-wrapper .single-service-process .content {
  margin-top: 20px
}

.service-details-content .service-details-content .service-process-wrapper .single-service-process .content h6 {
  font-size: 15px;
  margin-bottom: 5px
}

.service-details-content .service-details-content .service-process-wrapper .single-service-process .content p {
  font-size: 16px
}

.service-wrapper-2 {
  margin-right: -25%
}

.service-wrapper-2 .service-card-items {
  background-color: var(--white);
  margin-top: 30px
}

.service-wrapper-2 .service-card-items .service-image {
  overflow: hidden;
  position: relative
}

.service-wrapper-2 .service-card-items .service-image img {
  width: 100%;
  height: 100%
}

.service-wrapper-2 .service-card-items .service-content {
  padding: 25px 30px
}

.service-wrapper-2 .service-card-items .service-content h5 {
  margin-bottom: 10px
}

.service-wrapper-2 .service-card-items .service-content h5 a:hover {
  color: var(--theme2)
}

.service-card-items-2 .icon {
  font-size: 60px;
  color: var(--theme3)
}

.service-card-items-2 .content {
  margin-top: 20px
}

.service-card-items-2 .content h5 {
  font-size: 18px;
  margin-bottom: 10px
}

.service-card-items-2 .content h5 a {
  color: var(--header-2)
}

.service-card-items-2 .content h5 a:hover {
  color: var(--theme3)
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px
}

::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px
}

.fix {
  overflow: hidden
}

.ripple {
  position: relative
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: rippleOne 3s infinite
}

.ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0
}

.ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0
}

.arry-button .array-prev {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  color: var(--theme);
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.4s ease-in-out
}

.arry-button .array-prev:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.arry-button .array-next {
  width: 50px;
  height: 50px;
  background-color: var(--theme2);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out
}

.arry-button .array-next:hover {
  background-color: var(--white);
  color: var(--theme)
}

.mt-30 {
  margin-top: 30px
}

.mt-60 {
  margin-top: 60px
}

.border-none {
  border-bottom: none !important
}

.border-bottom {
  border-bottom: 1px solid var(--border2)
}

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

.nice-select {
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  font-weight: 400;
  width: unset;
  outline: none;
  padding: 18px 35px;
  border: none;
  transition: all 0.4s ease-in-out
}

.nice-select span {
  color: #7A7A7A;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0 !important
}

.nice-select:hover::after {
  border-bottom: 1px solid var(--theme);
  border-right: 1px solid var(--theme)
}

.nice-select option {
  color: #7A7A7A
}

.nice-select .current {
  margin-right: 12px
}

.nice-select:after {
  right: 23px;
  border-bottom: 1px solid var(--header);
  border-right: 1px solid var(--header);
  width: 10px;
  height: 10px
}

.nice-select.open .list {
  background: var(--bg);
  margin-top: 14px;
  width: 100%;
  text-transform: uppercase;
  color: var(--theme)
}

.nice-select .option.selected.focus {
  background: var(--bg);
  outline: none;
  color: var(--theme);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px
}

.nice-select .option {
  border: none
}

.nice-select .option:hover {
  background: transparent
}

.border-left-right {
  border-right: 1px solid var(--theme);
  border-left: 1px solid var(--theme);
  height: 330px;
  text-align: center;
  margin: 0 auto
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme2);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out
}

.scroll-up svg path {
  fill: none
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme2);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.star-color {
  color: #D8D8D8 !important
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center
}

.bor-top {
  border-top: 1px solid rgba(255, 255, 255, 0.4)
}

.bor-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4)
}

.border-none {
  border-top: none !important
}

.single-team-items .team-image .icon-shape {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: -1
}

.single-team-items .team-image .social-icon {
  margin-top: 40px;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%)
}

.single-team-items .team-image .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--white);
  color: var(--theme);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  transform: scaleX(0);
  transition: all 0.4s ease-in-out
}

.single-team-items .team-image .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.single-team-items:hover .social-icon a {
  transform: scaleX(1)
}

.team-wrapper .single-team-style-2 .single-team-items .icon-shape {
  position: absolute;
  top: 60px;
  left: 15px;
  right: 0;
  overflow: hidden
}

.team-details-wrapper .team-image .icon-shape {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: -1
}

.team-details-wrapper .team-details-content .social-icon {
  margin-top: 30px;
  gap: 10px
}

.team-details-wrapper .team-details-content .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--bg);
  color: var(--theme);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border2)
}

.team-details-wrapper .team-details-content .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.team-wrapper-2 .team-image-inner .team-image .social-icon {
  display: grid;
  gap: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out
}

.team-wrapper-2 .team-image-inner .team-image .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out
}

.team-wrapper-2 .team-image-inner .team-image .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.team-wrapper-2 .team-image-inner:hover .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  left: -20px
}

.team-wrapper-2 .team-image-inner.active .team-image::before {
  border: 2px solid var(--theme2);
  opacity: 1
}

.team-wrapper-2 .team-image-inner.active .team-image .social-icon {
  opacity: 1;
  visibility: visible;
  left: -20px
}

.choose-wrapper .choose-items .content {
  margin-top: 20px
}

.choose-wrapper .choose-items .content h6 {
  font-size: 14px;
  font-weight: 600
}

.choose-wrapper .choose-items.style-2 {
  border-top: none;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border)
}

.choose-wrapper .choose-image .choose-image-1 {
  max-width: 300px
}

.choose-wrapper .choose-image .choose-image-1 img {
  width: 100%;
  height: 100%
}

.choose-wrapper .choose-image .choose-image-2 {
  max-width: 300px
}

.choose-wrapper .choose-image .choose-image-2 img {
  width: 100%;
  height: 100%
}

.choose-us-wrapper-2 .choose-us-content .icon-items {
  display: flex;
  gap: 30px;
  margin-top: 30px
}

.choose-us-wrapper-2 .choose-us-content .icon-items .icon {
  font-size: 48px;
  color: var(--theme)
}

.choose-us-wrapper-2 .choose-image-items {
  margin-left: 30px;
  position: relative
}

.choose-us-wrapper-2 .choose-image-items .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.choose-us-wrapper-2 .choose-image-items .video-box .video-btn {
  background-color: var(--theme2);
  color: var(--white);
  display: inline-block;
  font-size: 18px;
  height: 95px;
  width: 95px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center
}

.choose-us-wrapper-2 .choose-image-items img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.choose-us-wrapper-2 .choose-image-items .choose-image-2 {
  margin-top: 50px
}

.choose-us-wrapper-3 .icon-area .icon-items {
  display: flex;
  gap: 30px;
  margin-bottom: 40px
}

.choose-us-wrapper-3 .icon-area .icon-items .icon {
  font-size: 62px;
  color: var(--header-2)
}

.choose-us-wrapper-3 .icon-area .icon-items .content h5 {
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--header-2)
}

.single-product-items {
  margin-top: 35px;
  margin-bottom: -6px
}

.single-product-items .product-image {
  position: relative
}

.single-product-items .product-image img {
  width: 100%;
  height: 100%
}

.single-product-items .product-image .box {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--theme);
  text-align: center
}

.single-product-items .product-image .box span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white)
}

.single-product-items .product-image .product-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  z-index: 999;
  gap: 10px
}

.single-product-items .product-image .product-icon li {
  background-color: var(--white);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transform: scaleX(0);
  transition: all 0.4s ease-in-out
}

.single-product-items .product-image .product-icon li i {
  color: var(--theme)
}

.single-product-items .product-image .product-icon li.style-2 {
  background-color: var(--theme2);
  cursor: pointer;
  width: 135px
}

.single-product-items .product-image .product-icon li.style-2 a {
  color: var(--white)
}

.single-product-items .product-image .product-icon li.style-2 a i {
  color: var(--white);
  margin-right: 3px
}

.single-product-items .product-content .price {
  margin-bottom: 5px
}

.single-product-items .product-content .price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme2)
}

.single-product-items .product-content .price del {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2)
}

.single-product-items .product-content h5 a {
  background-image: linear-gradient(var(--theme2), var(--theme2));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px
}

.single-product-items .product-content h5 a:hover {
  background-size: 100% 1px;
  color: var(--theme2)
}

.single-product-items:hover .product-image .product-icon li {
  transform: scaleX(1)
}

.single-product-items.active .product-image .product-icon li {
  transform: scaleX(1)
}

.woocommerce-notices-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.woocommerce-notices-wrapper .product-showing {
  padding: 18px 20px;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid var(--border2);
  display: inline-block;
  font-size: 16px
}

.woocommerce-notices-wrapper .form-clt {
  width: 250px
}

.woocommerce-notices-wrapper .form-clt .nice-select {
  padding: 18px 20px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid var(--border2)
}

.product-details-wrapper .shop-single-slide .product-image {
  position: relative
}

.product-details-wrapper .shop-single-slide .product-image img {
  cursor: pointer;
  width: 100%;
  height: 100%
}

.product-details-wrapper .shop-single-slide .product-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease-in-out
}

.product-details-wrapper .shop-single-slide .product-image .icon:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.product-details-wrapper .shop-single-slide:hover .icon {
  opacity: 1
}

.product-details-wrapper .product-image-items .slide-smoll img {
  width: 100%;
  height: 100%;
  cursor: pointer
}

.product-details-wrapper .product-image-items .shop-slider-thumb .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--theme2);
  opacity: 1
}

.product-details-wrapper .product-details-content {
  margin-left: 50px
}

.product-details-wrapper .product-details-content .star i {
  font-size: 16px;
  color: #ff9200
}

.product-details-wrapper .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.product-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px
}

.product-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border2);
  color: var(--header)
}

.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header)
}

.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header)
}

.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header)
}

.product-details-wrapper .product-details-content .cart-wrp .discount input {
  border: 1px solid var(--border2);
  padding: 10px 20px;
  background-color: transparent;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text)
}

.product-details-wrapper .single-tab {
  padding-top: 40px
}

.single-tab .nav {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 20px
}

.single-tab .nav .nav-item {
  flex: 1;
  text-align: center
}

.single-tab .nav .nav-link {
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  position: relative
}

.single-tab .nav .nav-link h6 {
  margin: 0;
  font-size: 14px;
  white-space: nowrap
}

.single-tab .nav .nav-link.active h6 {
  color: var(--theme2)
}

.product-details-wrapper .single-tab .tab-content .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px
}

.product-details-wrapper .single-tab .tab-content .review-items .admin-items .admin-img img {
  border-radius: 50%
}

.product-details-wrapper .single-tab .tab-content .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border2)
}

.product-details-wrapper .single-tab .tab-content .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  transform: rotate(45deg);
  top: 40%;
  left: -16px
}

.product-details-wrapper .single-tab .tab-content .review-items .admin-items .content .head-content h5 span {
  font-size: 14px;
  margin-left: 30px
}

.product-details-wrapper .single-tab .tab-content .review-items .admin-items .content .star i {
  font-size: 16px;
  color: #ff9200
}

.product-details-wrapper .single-tab .tab-content .review-title .rate-now {
  margin-top: 15px;
  gap: 15px
}

.product-details-wrapper .single-tab .tab-content .review-title .rate-now p {
  font-size: 16px;
  text-transform: uppercase
}

.product-details-wrapper .single-tab .tab-content .review-title .rate-now i {
  font-size: 16px;
  color: #ff9200
}

.product-details-wrapper .single-tab .tab-content .review-form {
  margin-top: 40px
}

.product-details-wrapper .single-tab .tab-content .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  text-transform: uppercase
}

.product-details-wrapper .single-tab .tab-content .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border2)
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white)
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--theme)
}

.product-details-wrapper-2 .product-image-items .tab-content .tab-pane .product-image img {
  width: 100%;
  height: 100%
}

.product-details-wrapper-2 .product-image-items .tab-content .tab-pane.active {
  border: 1px solid var(--theme2)
}

.product-details-wrapper-2 .product-image-items .nav {
  border: unset;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px
}

.product-details-wrapper-2 .product-image-items .nav .nav-link {
  padding: 0;
  border: unset;
  background: none
}

.product-details-wrapper-2 .product-image-items .nav .nav-link .image-tab {
  border: 1px solid var(--border2)
}

.product-details-wrapper-2 .product-image-items .nav .nav-link .image-tab img {
  width: 100%;
  height: 100%
}

.product-details-wrapper-2 .product-image-items .nav .nav-link.active .image-tab {
  border: 1px solid var(--theme2)
}

.product-details-wrapper-2 .product-details-content {
  margin-left: 60px
}

.product-details-wrapper-2 .product-details-content .star a {
  color: var(--theme2);
  font-size: 14px;
  font-weight: 600
}

.product-details-wrapper-2 .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 30px
}

.product-details-wrapper-2 .product-details-content .price-list span {
  padding: 8px;
  background-color: var(--theme);
  font-size: 14px;
  color: var(--white)
}

.product-details-wrapper-2 .product-details-content .price-list del {
  font-size: 14px;
  color: var(--theme);
  opacity: 0.4;
  font-weight: 500
}

.product-details-wrapper-2 .product-details-content .price-list h3 {
  font-size: 40px;
  color: var(--theme2)
}

.product-details-wrapper-2 .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px
}

.product-details-wrapper-2 .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px
}

.product-details-wrapper-2 .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border2);
  color: var(--header)
}

.product-details-wrapper-2 .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header)
}

.product-details-wrapper-2 .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header)
}

.product-details-wrapper-2 .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header)
}

.product-details-wrapper-2 .product-details-content .cart-wrp .icon {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border2);
  color: var(--header);
  line-height: 40px
}

.product-details-wrapper-2 .product-details-content .details-info {
  position: relative
}

.product-details-wrapper-2 .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px
}

.product-details-wrapper-2 .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px
}

.product-details-wrapper-2 .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize
}

.product-details-wrapper-2 .single-tab {
  padding-top: 80px
}

.product-details-wrapper-2 .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 20px
}

.product-details-wrapper-2 .single-tab .nav .nav-link.active {
  position: relative
}

.product-details-wrapper-2 .single-tab .nav .nav-link.active h6 {
  color: var(--theme2)
}

.product-details-wrapper-2 .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: #ff5e14;
  transition: 0.3s
}

.product-details-wrapper-2 .single-tab .description-items .description-content {
  margin-right: 50px
}

.product-details-wrapper-2 .single-tab .description-items .description-content h3 {
  margin-bottom: 15px
}

.product-details-wrapper-2 .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px
}

.product-details-wrapper-2 .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--theme);
  font-weight: 500
}

.product-details-wrapper-2 .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400
}

.product-details-wrapper-2 .single-tab .description-items .description-image img {
  width: 100%;
  height: 100%
}

.product-details-wrapper-2 .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px
}

.product-details-wrapper-2 .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%
}

.product-details-wrapper-2 .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border2)
}

.product-details-wrapper-2 .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  transform: rotate(45deg);
  top: 40%;
  left: -16px
}

.product-details-wrapper-2 .single-tab .review-items .admin-items .content .head-content h5 span {
  font-size: 14px;
  margin-left: 30px
}

.product-details-wrapper-2 .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: #ff9200
}

.product-details-wrapper-2 .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px
}

.product-details-wrapper-2 .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: uppercase
}

.product-details-wrapper-2 .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #ff9200
}

.product-details-wrapper-2 .single-tab .review-form {
  margin-top: 40px
}

.product-details-wrapper-2 .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  text-transform: uppercase
}

.product-details-wrapper-2 .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase
}

.faq-wrapper .faq-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.faq-wrapper .faq-content {
  margin-left: 70px;
  margin-top: 100px
}

.faq-wrapper .faq-content .faq-accordion .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

.faq-wrapper .faq-content .faq-accordion .accordion-item .accordion-header .accordion-button {
  color: var(--white);
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: 600;
  padding: 30px 40px
}

.faq-wrapper .faq-content .faq-accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  transition: all 0.3s ease-in-out !important;
  position: absolute;
  top: 30px;
  left: 0
}

.faq-wrapper .faq-content .faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  margin-top: 12px
}

.faq-wrapper .faq-content .faq-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0;
  padding-top: 5px;
  color: var(--white);
  padding-bottom: 25px;
  opacity: 0.7
}

.faq-wrapper.style-2 .faq-content {
  margin-left: 0;
  margin-top: 0;
  margin-right: 70px
}

.faq-wrapper.style-2 .faq-image {
  position: relative
}

.faq-wrapper.style-2 .faq-image .video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.faq-wrapper.style-2 .faq-image .video-button .video-popup {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  background-color: var(--white);
  border-radius: 50%;
  display: inline-block;
  text-transform: uppercase;
  text-align: center
}

.faq-area .faq-accordion .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

.faq-area .faq-accordion .accordion-item .accordion-header .accordion-button {
  color: var(--theme);
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  padding: 25px 40px;
  border-top: 1px solid var(--border2);
  text-transform: uppercase
}

.faq-area .faq-accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  transition: all 0.3s ease-in-out !important;
  position: absolute;
  top: 25px;
  left: 0
}

.faq-area .faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  margin-top: 12px
}

.faq-area .faq-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0;
  padding-top: 5px;
  color: var(--text);
  padding-bottom: 25px
}

.faq-area .faq-accordion .accordion-item .accordion-collapse .accordion-body img {
  width: 100%;
  height: 100%
}

.faq-area.faq-wrapper-2 .faq-image img {
  width: 100%;
  height: 100%
}

.faq-area.faq-wrapper-2 .faq-accordion .accordion-item {
  border: none;
  background-color: var(--white)
}

.faq-area.faq-wrapper-2 .faq-accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px
}

.faq-area.faq-wrapper-2 .faq-accordion .accordion-item .accordion-header .accordion-button {
  color: var(--header-2);
  padding: 18px 20px
}

.faq-area.faq-wrapper-2 .faq-accordion .accordion-item .accordion-header .accordion-button::after {
  position: initial;
  top: initial;
  left: initial
}

.faq-area.faq-wrapper-2 .faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  margin-top: 0
}

.faq-area.faq-wrapper-2 .faq-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 20px;
  padding-top: 0;
  padding-bottom: 20px;
  font-size: 16px
}

.faq-area.faq-wrapper-2 .faq-content {
  margin-left: 50px
}

.faq-section-2 {
  position: relative
}

.faq-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  content: "";
  background-color: var(--theme);
  z-index: -1
}

.main-sidebar {
  margin-left: 35px
}

.main-sidebar .single-sidebar-widget {
  background-color: var(--bg);
  padding: 40px;
  margin-bottom: 40px
}

.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px
}

.main-sidebar .single-sidebar-widget .wid-title span {
  text-transform: uppercase;
  font-size: 14px
}

.main-sidebar .single-sidebar-widget .message-form .single-form-input {
  position: relative
}

.main-sidebar .single-sidebar-widget .message-form .single-form-input input,
.main-sidebar .single-sidebar-widget .message-form .single-form-input textarea {
  margin-bottom: 20px;
  padding: 18px 20px;
  line-height: 1;
  font-size: 14px;
  width: 100%;
  border: none;
  color: var(--text);
  text-transform: uppercase
}

.main-sidebar .single-sidebar-widget .message-form .single-form-input .icon {
  position: absolute;
  right: 20px;
  top: 12px;
  color: var(--theme);
  border-left: 1px solid var(--border2);
  padding-left: 15px
}

.main-sidebar .single-sidebar-widget .message-form .single-form-input textarea {
  padding: 18px 20px 90px
}

.main-sidebar .single-sidebar-widget .faq-category-link a {
  padding: 18px 20px;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  position: relative
}

.main-sidebar .single-sidebar-widget .faq-category-link a:not(:last-child) {
  margin-bottom: 10px
}

.main-sidebar .single-sidebar-widget .faq-category-link a i {
  margin-right: 15px;
  transition: all 0.4s ease-in-out
}

.main-sidebar .single-sidebar-widget .faq-category-link a::before {
  position: absolute;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  content: "\f054"
}

.main-sidebar .single-sidebar-widget .faq-category-link a:hover {
  background-color: var(--theme);
  color: var(--white)
}

.main-sidebar .single-sidebar-widget .faq-category-link a:hover i {
  color: var(--theme2)
}

.main-sidebar .single-sidebar-widget .faq-category-link a.active {
  background-color: var(--theme);
  color: var(--white)
}

.main-sidebar .single-sidebar-widget .faq-category-link a.active i {
  color: var(--theme2)
}

.main-sidebar .single-sidebar-widget .info-list li {
  text-transform: capitalize
}

.main-sidebar .single-sidebar-widget .info-list li:not(:last-child) {
  margin-bottom: 10px
}

.main-sidebar .single-sidebar-widget .info-list li span {
  color: var(--theme)
}

.main-sidebar .single-sidebar-widget .download-service-doc a {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  display: inline-block;
  text-transform: uppercase;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 500
}

.main-sidebar .single-sidebar-widget .download-service-doc a i {
  font-size: 22px;
  margin-right: 15px;
  color: var(--theme2)
}

.main-sidebar .single-sidebar-widget .download-service-doc a:not(:last-child) {
  margin-bottom: 15px
}

.main-sidebar .single-sidebar-widget .download-service-doc a:hover {
  background-color: var(--theme);
  color: var(--white)
}

.main-sidebar .single-sidebar-widget .download-service-doc a.active {
  background-color: var(--theme);
  color: var(--white)
}

.prev-next-btns {
  padding: 20px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2)
}

.prev-next-btns .text {
  font-size: 14px;
  color: var(--theme);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase
}

.prev-next-btns .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  color: var(--theme);
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border2);
  transition: all 0.4s ease-in-out
}

.prev-next-btns .prev-btn,
.prev-next-btns .next-btn {
  gap: 15px
}

.prev-next-btns .prev-btn:hover .text,
.prev-next-btns .next-btn:hover .text {
  color: var(--theme2)
}

.prev-next-btns .prev-btn:hover .icon,
.prev-next-btns .next-btn:hover .icon {
  background-color: var(--theme2);
  color: var(--white);
  border: 1px solid var(--theme2)
}

.cta-call-to-action .cta-img {
  position: absolute;
  top: 10%;
  left: 25%;
  animation: scale-up-two 8s infinite linear
}

.cta-content-items .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background-color: var(--theme);
  text-align: center;
  margin: 0 auto 50px
}

.cta-content-items h2 .text {
  font-size: 50px;
  font-weight: 600;
  color: rgba(0, 22, 89, 0.2)
}

.cta-banner-wrapper .cta-content {
  gap: 30px;
  display: flex;
  align-items: center
}

.cta-banner-wrapper .cta-content p {
  font-size: 16px;
  max-width: 310px
}

.cta-banner-2 {
  position: relative
}

.cta-banner-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.6
}

.cta-wrapper-2 {
  margin-bottom: 110px
}

.counter-wrapper-2 {
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  padding: 80px;
  margin-top: -120px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.counter-wrapper-2 .counter-content h2 {
  color: var(--white);
  margin-bottom: 10px
}

.counter-wrapper-2 .counter-content p {
  color: var(--white)
}

.cta-area-3 {
  background-color: var(--theme);
  position: relative;
  display: block;
  margin-top: 40px
}

.cta-img-box {
  position: absolute;
  top: -38px;
  bottom: -1px;
  left: 0;
  max-width: 694px;
  width: 100%
}

.cta-img-box::before {
  position: absolute;
  top: 0;
  right: -20px;
  content: "";
  border-left: 16px solid transparent;
  border-right: 19px solid transparent;
  border-bottom: 38px solid var(--roofsie-black, #FF5E15);
  z-index: 2;
  transform: rotate(-1deg)
}

.cta-img-box .cta-img {
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0
}

.cta-img-box .cta-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.cta-one-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 400px;
  padding-top: 77px;
  padding-bottom: 77px
}

.cta-one-inner .section-title span {
  color: var(--white)
}

.cta-one-inner .section-title h2 {
  color: var(--white);
  font-size: 36px
}

.pricing-wrapper .package-list-items ul li.border-none {
  border: none;
  margin-top: 51px
}

.pricing-wrapper .signle-pricing-items .price-body li.border-none {
  border: none;
  margin-top: 15px
}

.pricing-card-items .icon {
  position: absolute;
  right: 40px;
  top: 40px;
  color: var(--theme3);
  font-size: 90px;
  line-height: 1
}

.pricing-card-items .pricing-button .theme-bg-2.active {
  background-color: var(--theme3)
}

.marquee-wrapper.style-2 {
  text-transform: uppercase;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--theme);
  -webkit-text-fill-color: transparent;
  opacity: 1;
  margin-top: 0;
  margin-bottom: -25px
}

@keyframes marqueeLeft {
  0% {
    left: 0
  }

  100% {
    left: -100%
  }
}

@keyframes marqueeRight {
  0% {
    right: 0
  }

  100% {
    right: -100%
  }
}

.testimonial-bg .section-title {
  display: inline-block
}

.testimonial-bg .section-title h2 .text {
  font-size: 50px;
  margin-left: 170px;
  color: var(--white);
  font-weight: 600
}

.testimonial-bg .section-title h2 .text-2 {
  font-size: 50px;
  color: var(--theme2);
  font-weight: 600
}

.testimonial-bg .testimonial-wrapper .array-btn .array-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white)
}

.testimonial-bg .testimonial-wrapper .array-btn .array-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--theme2);
  border-radius: 50%;
  color: var(--white)
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content {
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 10px
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content ul {
  margin-bottom: 20px;
  display: flex;
  align-items: center
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content ul li {
  font-size: 16px;
  color: var(--theme2)
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content h3 {
  color: var(--white);
  font-weight: 500
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content h4 {
  color: var(--white);
  margin-top: 15px
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content .client-info {
  margin-top: 30px
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content .client-info h6 {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
  font-family: "Rubik", sans-serif
}

.testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content .client-info h6 span {
  color: var(--theme2)
}

.testimonial-wrapper-2 .testimonial-image .video-btn {
  position: relative;
  text-align: center;
  display: inline-block;
  z-index: 2
}

.testimonial-wrapper-2 .testimonial-image .video-btn a {
  position: relative;
  color: var(--theme);
  font-size: 16px;
  z-index: 1;
  background-color: var(--white);
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  display: block;
  transition: 0.4s
}

.testimonial-wrapper-2 .testimonial-image .video-btn a i {
  color: var(--theme)
}

.testimonial-wrapper-4 .testimonial-items .testimonial-content {
  max-width: 950px;
  text-align: center;
  margin: 50px auto;
  position: relative;
  z-index: 9
}

.testimonial-wrapper-4 .testimonial-items .testimonial-content h3 {
  font-size: 30px;
  line-height: 180%;
  font-weight: 500
}

.testimonial-wrapper-4 .testimonial-items .testimonial-content .star {
  margin-top: 30px
}

.testimonial-wrapper-4 .testimonial-items .testimonial-content .star span {
  font-size: 14px;
  color: var(--ratting)
}

.brand-wrapper.style-2 {
  position: relative;
  z-index: 9;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 80px;
  margin-top: -100px
}

.news-image {
  margin-top: 35px;
  position: relative
}

.news-image img {
  width: 100%;
  height: 100%
}

.news-image .post-cat-item {
  position: absolute;
  top: -20px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px
}

.news-image .post-cat-item .post-title {
  font-size: 14px;
  padding: 10px;
  background-color: var(--theme2);
  color: var(--white);
  cursor: pointer
}

.news-image .post-cat-item .post-title a {
  color: var(--white)
}

.news-image .post-cat-item .post-title-2 {
  font-size: 14px;
  padding: 10px;
  background-color: var(--theme2);
  color: var(--white);
  cursor: pointer
}

.news-image .post-cat-item .post-title-2 a {
  color: var(--white)
}

.news-image .news-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 9
}

.news-image .news-content .post-date {
  margin-bottom: 15px
}

.news-image .news-content .post-date li {
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase
}

.news-image .news-content .post-date li i {
  margin-right: 5px
}

.news-image .news-content .post-date li span {
  color: var(--theme2)
}

.news-image .news-content h4 a {
  color: var(--white)
}

.news-image .news-content h4 a:hover {
  color: var(--theme2)
}

.news-image.style-2 .post-cat-item .post-title {
  background-color: var(--theme3)
}

.news-image.style-2 .post-cat-item .post-title-2 {
  background-color: var(--theme3)
}

.news-image.style-2 .news-content .post-date li span {
  color: var(--theme3)
}

.news-image.style-2 .news-content h4 a:hover {
  color: var(--theme3)
}

.news-right-content .single-news-items .news-content {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px
}

.news-right-content .single-news-items .news-content .post-date {
  margin-bottom: 15px
}

.news-right-content .single-news-items .news-content .post-date li {
  font-size: 16px;
  text-transform: uppercase
}

.news-right-content .single-news-items .news-content .post-date li i {
  margin-right: 5px;
  color: var(--theme)
}

.news-right-content .single-news-items .news-content .post-date li span {
  color: var(--theme);
  font-weight: 500
}

.news-right-content .single-news-items .news-content h5 a:hover {
  color: var(--theme2)
}

.news-right-content .single-news-items .news-content.border-none {
  border: none;
  padding-bottom: 0
}

.news-right-content.style-2 .single-news-items:not(:last-child) {
  padding-bottom: 30px
}

.news-right-content.style-2 .single-news-items .news-content .post-date li i {
  color: var(--header-2)
}

.news-right-content.style-2 .single-news-items .news-content .post-date li span {
  color: var(--theme3)
}

.news-right-content.style-2 .single-news-items .news-content h5 a {
  color: var(--header-2)
}

.news-right-content.style-2 .single-news-items .news-content h5 a:hover {
  color: var(--theme3)
}

.single-news-style-2 .news-image {
  position: relative;
  height: 225px
}

.single-news-style-2 .news-image img {
  width: 100%;
  height: 100%
}

.single-news-style-2 .news-image .post-cat {
  font-size: 14px;
  padding: 10px;
  background-color: var(--theme2);
  cursor: pointer;
  position: absolute;
  right: 30px;
  bottom: 0
}

.single-news-style-2 .news-image .post-cat a {
  color: var(--white)
}

.single-news-style-2 .news-content {
  padding: 40px 30px
}

.single-news-style-2 .news-content .post-date {
  margin-bottom: 10px
}

.single-news-style-2 .news-content .post-date li {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--theme)
}

.single-news-style-2 .news-content .post-date li i {
  color: var(--theme2);
  margin-right: 10px
}

.single-news-style-2 .news-content h4 a:hover {
  color: var(--theme2)
}

.single-news-style-2 .news-content .post-item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.single-news-style-2 .news-content .post-item .post-img {
  display: flex;
  align-items: center;
  gap: 15px
}

.single-news-style-2 .news-content .post-item .post-img li {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase
}

.single-news-style-2 .news-content .post-item .post-img li span {
  font-weight: 500;
  color: var(--theme)
}

.single-news-style-2 .news-content .post-item .post-icon {
  gap: 20px
}

.single-news-style-2 .news-content .post-item .post-icon li i {
  margin-right: 5px;
  color: var(--theme)
}

.single-news-style-3 .news-image {
  position: relative;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  margin-top: 0;
  height: 600px
}

.single-news-style-3 .news-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--white);
  box-shadow: none;
  transition: all 0.4s ease-in-out
}

.single-news-style-3 .news-image::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 490px;
  background-color: var(--border);
  content: ""
}

.single-news-style-3 .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.single-news-style-3 .news-image .post-cat {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--theme2);
  padding: 10px;
  cursor: pointer
}

.single-news-style-3 .news-image .post-cat a {
  color: var(--white)
}

.single-news-style-3 .news-image .news-content {
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
  padding: 0 35px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px
}

.single-news-style-3 .news-image .news-content .post-date li {
  color: var(--theme)
}

.single-news-style-3 .news-image .news-content .post-date li i {
  color: var(--theme2)
}

.single-news-style-3 .news-image .news-content .post-date li span {
  color: var(--theme)
}

.single-news-style-3 .news-image .news-content h4 a {
  color: var(--theme)
}

.single-news-style-3 .news-image .news-button {
  position: absolute;
  left: 35px;
  bottom: 50px;
  opacity: 0
}

.single-news-style-3.active .news-image::before {
  background: linear-gradient(180deg, rgba(0, 22, 89, 0) 0%, #001659 66.67%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25)
}

.single-news-style-3.active .news-image::after {
  display: none
}

.single-news-style-3.active .news-image .news-content {
  border: none
}

.single-news-style-3.active .news-image .news-content .post-date li {
  color: var(--white)
}

.single-news-style-3.active .news-image .news-content .post-date li i {
  color: var(--white)
}

.single-news-style-3.active .news-image .news-content .post-date li span {
  color: var(--text2)
}

.single-news-style-3.active .news-image .news-content h4 a {
  color: var(--white)
}

.single-news-style-3.active .news-image .news-button {
  opacity: 1;
  display: inline-block
}

.single-news-style-3:hover .news-image::before {
  background: linear-gradient(180deg, rgba(0, 22, 89, 0) 0%, #001659 66.67%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25)
}

.single-news-style-3:hover .news-image::after {
  display: none
}

.single-news-style-3:hover .news-image .news-content {
  border: none
}

.single-news-style-3:hover .news-image .news-content .post-date li {
  color: var(--white)
}

.single-news-style-3:hover .news-image .news-content .post-date li i {
  color: var(--white)
}

.single-news-style-3:hover .news-image .news-content .post-date li span {
  color: var(--text2)
}

.single-news-style-3:hover .news-image .news-content h4 a {
  color: var(--white);
  transition: all 0.4s ease-in-out
}

.single-news-style-3:hover .news-image .news-content h4 a:hover {
  color: var(--theme2)
}

.single-news-style-3:hover .news-image .news-button {
  opacity: 1;
  display: inline-block
}

.single-news-items-3 {
  margin-top: 30px
}

.single-news-items-3 .news-image {
  height: 260px;
  position: relative
}

.single-news-items-3 .news-image .post-date {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  background-color: var(--theme);
  padding: 10px 20px
}

.single-news-items-3 .news-image .post-date h5 {
  color: var(--white)
}

.single-news-items-3 .news-image .post-date h5 span {
  font-size: 16px
}

.single-news-items-3 .news-content {
  padding: 30px;
  background-color: var(--white);
  margin-left: 30px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px
}

.single-news-items-3 .news-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px
}

.single-news-items-3 .news-content ul li {
  font-size: 16px
}

.single-news-items-3 .news-content ul li i {
  margin-right: 5px;
  color: var(--theme2)
}

.single-news-items-3 .news-content h4 {
  font-size: 18px
}

.single-news-items-3 .news-content h4 a:hover {
  color: var(--theme2)
}

.single-news-items-3 .news-content .news-btn {
  margin-top: 30px
}

.border-wrap {
  border: 2px solid #ededed
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
  font-weight: 700
}

.blog-wrapper .border-wrap {
  padding: 50px
}

.blog-wrapper .border-wrap .single-blog-post .post-content {
  padding: 0px
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative
}

.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px
}

.blog-wrapper .single-blog-post.post-details .post-content a:hover {
  color: var(--theme2)
}

.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1
}

.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white)
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text)
}

.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme);
  background-image: url("../images/quotepost.png");
  border: none
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 30px;
  color: var(--white)
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span {
  color: var(--white)
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 400px;
  width: 100%;
  position: relative;
  margin-bottom: -2px
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px
}

.blog-wrapper .single-blog-post .post-content {
  padding: 50px;
  border: 2px solid #ededed;
  overflow: hidden;
  box-sizing: border-box
}

.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 30px;
  font-weight: 700
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme2)
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Urbanist", sans-serif
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--theme2)
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme)
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal
}

.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-top: 10px;
  font-weight: 500
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--theme);
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme2)
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 500
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme2)
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px
}

.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid #ededed;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px
}

.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0
}

.news-area .main-sidebar .single-sidebar-widget ul>li {
  margin-bottom: 10px
}

.news-area .main-sidebar .single-sidebar-widget ul>li a {
  font-size: 18px;
  text-transform: capitalize
}

.news-area .main-sidebar .single-sidebar-widget ul>li a:hover {
  color: var(--theme)
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0
}

.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
  font-size: 20px
}

.main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme)
}

.main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme)
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.news-area .main-sidebar form .theme-btn {
  font-size: 14px !important
}

.search_widget form {
  width: 100%;
  position: relative
}

.search_widget form input {
  background-color: var(--white);
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--header)
}

.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out
}

.search_widget form button:hover {
  background-color: var(--header)
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
  overflow: hidden
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme2)
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
  margin-top: 5px;
  color: var(--theme2);
  font-weight: 500;
  font-size: 14px
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px
}

.page-nav-wrap ul li {
  display: inline-block
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white)
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white)
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 7px 18px;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--white);
  background: var(--theme);
  transition: all 0.4s ease-in-out;
  box-shadow: inherit
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 7px
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before,
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background: var(--theme2);
  color: var(--white)
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%)
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white)
}

.comment-form .theme-btn {
  display: inline-block;
  line-height: 1;
  text-transform: capitalize;
  padding: 20px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px
}

.comment-form .theme-btn i {
  margin-right: 10px
}

.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme)
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme)
}

.portfolio-section .array-btn .array-prev {
  position: absolute;
  top: 50%;
  left: 13%;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme2);
  transform: rotate(-90deg)
}

.portfolio-section .array-btn .array-next {
  position: absolute;
  top: 55%;
  left: 13%;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  transform: rotate(-90deg)
}

.work-cases-section .arry-button .array-prev {
  width: 50px;
  height: 50px;
  background-color: transparent;
  color: var(--text);
  border-radius: 50%;
  border: 2px solid var(--border2);
  margin-right: 20px
}

.work-cases-section .arry-button .array-next {
  width: 50px;
  height: 50px;
  background-color: var(--theme2);
  color: var(--white);
  border-radius: 50%
}

.work-cases-wrapper .work-case-content .nav {
  border: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.work-cases-wrapper .work-case-content .nav .nav-link {
  padding: 0;
  border: unset;
  background: none
}

.work-cases-wrapper .work-case-content .nav .nav-link .title {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--theme)
}

.work-cases-wrapper .work-case-content .nav .nav-link.active .title {
  color: var(--theme2);
  position: relative;
  padding-left: 70px
}

.work-cases-wrapper .work-case-content .nav .nav-link.active .title::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  height: 2px;
  width: 50px;
  background-color: var(--theme2)
}

.work-cases-wrapper .work-cases-items .cases-image .icon {
  position: absolute;
  right: 30px;
  top: 0px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--theme);
  background-color: var(--white);
  line-height: 60px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  z-index: 2
}

.work-cases-wrapper .work-cases-items .cases-image .icon:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.work-cases-wrapper .work-cases-items:hover .icon {
  opacity: 1;
  visibility: visible;
  top: 30px
}

.case-study-wrapper .case-study-items .case-study-image .icon {
  position: absolute;
  top: -40px;
  right: 40px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  fill: rgba(255, 255, 255, 0.01);
  filter: drop-shadow(0px 40px 80px rgba(0, 0, 0, 0.9));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  z-index: 2
}

.case-study-wrapper .case-study-items .case-study-image .icon i {
  color: var(--white);
  font-size: 24px
}

.case-study-wrapper .case-study-items:hover .case-study-image .icon {
  opacity: 1;
  visibility: visible;
  top: 30px
}

.case-study-wrapper .swiper-slide.swiper-slide-active .case-study-items .case-study-image .icon {
  opacity: 1;
  visibility: visible;
  top: 30px
}

.case-study-wrapper .swiper-slide.swiper-slide-active .case-study-items .case-study-content {
  opacity: 1;
  visibility: visible
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2 .case-study-image .icon {
  position: absolute;
  top: -40px;
  right: 30px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  transform: rotate(-45deg);
  cursor: pointer;
  color: var(--theme);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2 .case-study-image .icon i {
  font-weight: 500;
  transition: all 0.4s ease-in-out
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2 .case-study-image .icon:hover {
  background-color: var(--theme2)
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2 .case-study-image .icon:hover i {
  color: var(--white)
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2.style-2 {
  max-width: 400px
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2.style-2 .case-study-image .icon {
  width: 50px;
  height: 50px;
  line-height: 50px
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2:hover .case-study-image .icon {
  opacity: 1;
  visibility: visible;
  top: 30px
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2.active .case-study-image .icon {
  opacity: 1;
  visibility: visible;
  top: 30px;
  background-color: var(--theme2)
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2.active .case-study-image .icon i {
  color: var(--white)
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2.active .case-study-content {
  opacity: 1;
  visibility: visible
}

.case-study-wrapper-3 .case-study-single-items .case-study-items-2.active .case-study-content h4 a,
.case-study-wrapper-3 .case-study-single-items .case-study-items-2.active .case-study-content h6 a {
  background-image: linear-gradient(var(--theme2), var(--theme2));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-size: 100% 1px;
  color: var(--theme2)
}

.work-details-wrapper .hilight-text {
  padding: 30px 35px;
  position: relative;
  border-left: 4px solid var(--theme);
  margin-top: 30px
}

.work-details-wrapper .hilight-text::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  opacity: 0.06
}

.work-details-wrapper .hilight-text .text {
  color: var(--theme);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px
}

.work-details-wrapper .hilight-text h6 {
  font-size: 14px;
  font-weight: 500
}

.work-details-wrapper .hilight-text h6 span {
  color: var(--theme2)
}

.work-details-wrapper .case-details-image .video-button .video-popup {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  background-color: var(--white);
  border-radius: 50%;
  display: inline-block;
  text-transform: uppercase;
  text-align: center
}

.project-wrapper .swiper-slide.swiper-slide-active .project-items .project-image::before {
  visibility: visible;
  opacity: 1
}

.project-wrapper .swiper-slide.swiper-slide-active .project-items .project-content {
  bottom: 40px;
  visibility: visible;
  opacity: 1
}

.project-wrapper-2 .project-items-2 .project-button .theme-btn span,
.project-wrapper-2 .project-items-2 .project-button .theme-btn i {
  color: var(--white)
}

.contact-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 50px;
  background-color: var(--white);
  position: relative;
  z-index: 9
}

.contact-info-wrapper .contact-info-items {
  gap: 50px
}

.contact-info-wrapper .contact-info-items:not(:last-child) {
  border-right: 1px solid var(--border2);
  padding-right: 70px
}

.contact-info-wrapper .contact-info-items .content span {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme)
}

.contact-info-wrapper .contact-info-items .content h5 {
  text-transform: initial
}

.contact-info-wrapper.style-2 {
  padding: 0;
  padding-top: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--theme)
}

.contact-form-area {
  padding-top: 50px
}

.contact-form-area .map-item {
  margin-left: 30px
}

.contact-form-area .map-item .googpemap {
  height: 655px;
  position: relative
}

.contact-form-area .map-item .googpemap .circle-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--white)
}

.contact-form-area .map-item .googpemap iframe {
  width: 100%;
  height: 100%
}

.contact-form-area.style-2 {
  margin-top: 30px !important;
  display: inline-block
}

.contact-form-items .form-clt {
  position: relative
}

.contact-form-items .form-clt span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block
}

.contact-form-items .form-clt .icon {
  position: absolute;
  top: 55px;
  left: 15px
}

.contact-form-items .form-clt .icon i {
  color: var(--theme);
  font-size: 14px
}

.contact-form-items .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  text-transform: uppercase
}

.contact-form-items .form-clt-big span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block
}

.contact-form-items .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase
}

.contact-form {
  margin-top: 35px;
  display: inline-block
}

.contact-form .contact-image {
  margin-left: 50px
}

.contact-form .contact-image img {
  width: 100%;
  height: 100%
}

.map-area .googpemap {
  height: 550px;
  position: relative
}

.map-area .googpemap .circle-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--white)
}

.map-area .googpemap iframe {
  width: 100%;
  height: 100%
}

.contact-section-2 .contact-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  animation: right-image-bounce 3s infinite ease-in-out
}

.contact-wrapper-2 .contact-content .contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 30px
}

.contact-wrapper-2 .contact-content .contact-info-area .contact-info-items .icon {
  font-size: 28px;
  color: var(--header-2)
}

.contact-wrapper-2 .contact-content .contact-info-area .contact-info-items .content h3 {
  font-size: 18px;
  margin-top: 5px;
  text-transform: initial;
  color: var(--header-2)
}

.contact-wrapper-2 .contact-content .contact-info-area .contact-info-items .content h3 a {
  color: var(--header-2)
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt {
  position: relative
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-box .contact-form-items .form-clt textarea {
  border: 1px solid #E4E4E4;
  color: var(--text);
  font-size: 16px;
  background-color: transparent;
  text-transform: uppercase;
  padding: 16px 20px
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt input::-moz-placeholder,
.contact-wrapper-2 .contact-box .contact-form-items .form-clt textarea::-moz-placeholder {
  color: var(--text)
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt input::placeholder,
.contact-wrapper-2 .contact-box .contact-form-items .form-clt textarea::placeholder {
  color: var(--text)
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt .nice-select {
  background-color: transparent;
  border: 1px solid #E4E4E4;
  padding: 16px 20px
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt .nice-select span {
  color: var(--text);
  font-size: 16px;
  text-transform: uppercase
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt .icon {
  position: absolute;
  top: 18px;
  right: 30px
}

.contact-wrapper-2 .contact-box .contact-form-items .form-clt .icon i {
  color: var(--header-2)
}

.contact-wrapper-2 .contact-box .contact-form-items textarea {
  padding: 16px 20px 90px !important;
  width: 100%
}

.contact-wrapper-2 .contact-box .contact-form-items .theme-btn {
  display: inherit;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto
}

.footer-widgets-wrapper {
  padding: 90px 0 120px
}

.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px
}

.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
  color: var(--white)
}

.footer-widgets-wrapper .single-footer-widget .widget-head h4 img {
  margin-right: 5px
}

.footer-widgets-wrapper .single-footer-widget .list-items ul li:not(:last-child) {
  margin-bottom: 20px
}

.footer-widgets-wrapper .single-footer-widget .list-items ul li a {
  color: var(--white);
  font-size: 16px
}

.footer-widgets-wrapper .single-footer-widget .list-items ul li a i {
  font-size: 16px;
  color: #415698;
  margin-right: 10px;
  transition: all 0.4s ease-in-out
}

.footer-widgets-wrapper .single-footer-widget .list-items ul li:hover a {
  color: var(--theme2)
}

.footer-widgets-wrapper .single-footer-widget .list-items ul li:hover a i {
  color: var(--theme2)
}

.footer-widgets-wrapper .single-footer-widget .list li:not(:last-child) {
  margin-bottom: 20px
}

.footer-widgets-wrapper .single-footer-widget .list li a {
  color: var(--white);
  font-size: 16px
}

.footer-widgets-wrapper .single-footer-widget .list li a i {
  font-size: 16px;
  color: #415698;
  margin-right: 10px
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items {
  background-color: var(--white);
  padding: 50px
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content h4 {
  text-transform: capitalize;
  margin-bottom: 15px
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content h4 img {
  margin-right: 5px
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content p {
  font-size: 14px;
  margin-bottom: 20px
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input {
  position: relative
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input .icon {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 1
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input .icon i {
  color: var(--theme);
  font-size: 14px
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input input {
  width: 100%;
  font-size: 14px;
  padding: 18px 20px 18px 40px;
  border: none;
  background-color: var(--bg);
  color: var(--text);
  position: relative;
  text-transform: uppercase
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input::-moz-placeholder {
  color: var(--text)
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input::placeholder {
  color: var(--text)
}

.footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .theme-btn {
  width: 100%
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .widget-head h4 {
  color: var(--theme)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .text-area {
  max-width: 360px;
  margin: 0 auto
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .social-icon {
  margin-top: 40px;
  gap: 10px
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--theme);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border2)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--white)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list-items ul li a {
  color: var(--theme)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list-items ul li a i {
  color: var(--theme)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list-items ul li:hover a {
  color: var(--theme2)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list-items ul li:hover a i {
  color: var(--theme2)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list li a {
  color: var(--theme)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list li a i {
  color: var(--theme);
  transition: all 0.4s ease-in-out
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list li:hover a {
  color: var(--theme2)
}

.footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list li:hover a i {
  color: var(--theme2)
}

.social-icon-items .social-icon {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 30px
}

.social-icon-items .social-icon:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 200px
}

.social-icon-items .social-icon i {
  font-size: 20px;
  color: var(--white);
  transition: all 0.4s ease-in-out
}

.social-icon-items .social-icon h6 {
  font-size: 16px
}

.social-icon-items .social-icon h6 a {
  color: var(--white)
}

.social-icon-items .social-icon:hover i {
  color: var(--theme2)
}

.social-icon-items .social-icon:hover h6 a {
  color: var(--theme2)
}

.footer-bottom {
  padding: 35px 0;
  background-color: #001248
}

.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom .footer-bottom-wrapper p {
  text-transform: uppercase;
  color: var(--white);
  font-size: 16px
}

.footer-bottom .footer-bottom-wrapper p a {
  color: var(--theme2)
}

.footer-bottom .footer-bottom-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 30px
}

.footer-bottom .footer-bottom-wrapper .footer-menu li {
  font-size: 16px;
  font-weight: 500
}

.footer-bottom .footer-bottom-wrapper .footer-menu li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-transform: uppercase
}

.footer-bottom .footer-bottom-wrapper .footer-menu li a:hover {
  color: var(--theme2)
}

.footer-bottom.style-2 {
  background-color: var(--white);
  padding: 0
}

.footer-bottom.style-2 .footer-bottom-wrapper {
  border-top: 1px solid var(--theme);
  padding: 30px 0
}

.footer-bottom.style-2 .footer-bottom-wrapper p {
  color: var(--text)
}

.footer-bottom.style-2 .footer-bottom-wrapper .footer-menu li a {
  color: var(--theme)
}

.footer-bottom.style-2 .footer-bottom-wrapper .footer-menu li a:hover {
  color: var(--theme2)
}

.footer-section .eonfik-text {
  margin-top: -35px;
  margin-bottom: -32px
}

.footer-section .eonfik-text h2 {
  font-size: 275px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--bg);
  -webkit-text-fill-color: transparent;
  line-height: 1
}

.footer-section-2 {
  position: relative
}

.footer-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  opacity: 0.85
}

.footer-widgets-wrapper-2 {
  padding: 90px 0 80px;
  position: relative;
  z-index: 9
}

.footer-widgets-wrapper-2 .single-footer-widget {
  margin-top: 30px
}

.footer-widgets-wrapper-2 .single-footer-widget .widget-head {
  margin-bottom: 30px
}

.footer-widgets-wrapper-2 .single-footer-widget .widget-head h4 {
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content p {
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input {
  position: relative
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input input {
  width: 100%;
  background: #272727;
  border: none;
  padding: 16px 20px;
  text-transform: capitalize;
  font-size: 14px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input input::-moz-placeholder {
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input .newsletter-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input .contact-info {
  margin-top: 30px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input .contact-info li {
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input .contact-info li a {
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input .contact-info li:not(:last-child) {
  margin-bottom: 10px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .footer-input .contact-info li i {
  margin-right: 5px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 10px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border2)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--white);
  border: 1px solid transparent
}

.footer-widgets-wrapper-2 .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px
}

.footer-widgets-wrapper-2 .single-footer-widget .list-area li a {
  color: var(--white);
  position: relative
}

.footer-widgets-wrapper-2 .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--theme2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out
}

.footer-widgets-wrapper-2 .single-footer-widget .list-area li a:hover {
  padding-left: 20px;
  color: var(--theme2)
}

.footer-widgets-wrapper-2 .single-footer-widget .list-area li a:hover::before {
  opacity: 1;
  visibility: visible
}

.footer-widgets-wrapper-2 .single-footer-widget .popular-posts .single-post-item {
  margin-bottom: 35px
}

.footer-widgets-wrapper-2 .single-footer-widget .popular-posts .single-post-item .post-content h5 {
  font-size: 15px
}

.footer-widgets-wrapper-2 .single-footer-widget .popular-posts .single-post-item .post-content h5 a {
  color: var(--white)
}

.footer-widgets-wrapper-2 .single-footer-widget .popular-posts .single-post-item .post-content h5 a:hover {
  color: var(--theme2)
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item {
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 94, 21, 0.85);
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 35px
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1
}

.footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1
}

.footer-widgets-wrapper-2.style-2 {
  padding: 90px 0 110px
}

.footer-widgets-wrapper-2.style-2 .single-footer-widget .social-icon a:hover {
  background-color: var(--theme3)
}

.footer-widgets-wrapper-2.style-2 .single-footer-widget .list-area li a::before {
  background-color: var(--theme3)
}

.footer-widgets-wrapper-2.style-2 .single-footer-widget .list-area li a:hover {
  color: var(--theme3)
}

.footer-widgets-wrapper-2.style-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  background-color: rgba(229, 218, 56, 0.85)
}

.footer-bottom-2 {
  position: relative;
  z-index: 9
}

.footer-bottom-2 .footer-bottom-wrapper-2 {
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom-2 .footer-bottom-wrapper-2 p {
  color: var(--white)
}

.footer-bottom-2 .footer-bottom-wrapper-2 p a {
  color: var(--white)
}

.footer-bottom-2 .footer-bottom-wrapper-2 p a:hover {
  color: var(--white)
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px)
}

.product-card a:hover {
  color: var(--theme2)
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease
}

.product-card:hover .product-image img {
  transform: scale(1.05)
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease
}

.product-card:hover .product-overlay {
  opacity: 1
}

.product-content {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3
}

.product-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1
}

.application-section-3 .container.mt-5 .row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0.5rem !important
}

.application-section-3 .col-lg-3 {
  all: unset
}

.application-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative
}

.application-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px)
}

.application-image {
  position: relative;
  width: 100%;
  height: 530px;
  overflow: hidden
}

.application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease
}

.application-card:hover .application-image img {
  transform: scale(1.08)
}

.application-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(180deg, rgba(0, 22, 89, 0) 0%, rgba(0, 22, 89, 0) 100%);
  color: #fff;
  transform: translateY(0);
  transition: all 0.3s ease
}

.application-card:hover .application-content {
  background: linear-gradient(180deg, rgba(0, 22, 89, 0) 0%, #001659 100%)
}

.application-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3
}

.application-content p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-height: 0
}

.application-card:hover .application-content p {
  opacity: 1;
  visibility: visible;
  max-height: 100px
}

.dth-hero-section {
  padding: 60px 0;
  border-top: 1px solid #f1f1f1
}

.dth-hero-wrapper {
  position: relative
}

.dth-hero-image {
  position: relative;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.dth-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease
}

.dth-hero-image:hover img {
  transform: scale(1.05)
}

.dth-hero-content {
  padding-left: 50px
}

.hero-content h1,
.dth-hero-content h1 {
  font-size: 24px;
  font-weight: 700;
  color:var(--theme);
  margin-bottom: 25px;
  line-height: 1.3
}

/*.hero-content h1 {*/
/*  font-size: 42px*/
/*}*/

.dth-hero-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px
}

.dth-hero-button {
  display: inline-block
}

.dth-hero-button .theme-btn {
  padding: 18px 45px
}

.contact-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 80px 0
}

.contact-form-wrapper {
  position: relative
}

.contact-form {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

.form-group {
  position: relative
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: block
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
  font-family: inherit
}

.form-control:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none
}

.form-control::placeholder {
  color: #999
}

.form-control option {
  color: #333;
  background-color: #fff
}

textarea.form-control {
  resize: vertical;
  min-height: 150px
}

.contact-form .theme-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  margin-top: 10px
}

.form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1)
}

.form-control.is-invalid {
  border-color: #dc3545
}

.form-control.is-valid {
  border-color: #28a745
}

.product-table-content {
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.product-specifications-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden
}

.product-specifications-table thead {
  background: linear-gradient(135deg, #001659 0%, #002878 100%)
}

.product-specifications-table thead tr {
  border: none
}

.product-specifications-table thead th {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 15px;
  text-align: left;
  border: none;
  white-space: nowrap
}

.product-specifications-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease
}

.product-specifications-table tbody tr:hover {
  background-color: #f5f5f5
}

.product-specifications-table tbody tr:last-child {
  border-bottom: none
}

.product-specifications-table tbody td {
  padding: 16px 15px;
  font-size: 15px;
  color: #333;
  border: none
}

.product-specifications-table tbody td:first-child {
  font-weight: 600;
  color: #ff6b35
}

.product-table-content::-webkit-scrollbar {
  height: 8px
}

.product-table-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px
}

.product-table-content::-webkit-scrollbar-thumb {
  background: #ff6b35;
  border-radius: 4px
}

.product-table-content::-webkit-scrollbar-thumb:hover {
  background: #e55a24
}

.product-table-content {
  scrollbar-color: #ff6b35 transparent;
  scrollbar-width: thin
}

.description-content {
  padding: 20px 0
}

.description-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px
}

.description-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px
}

.selection-guide-content {
  background-color: #fafbfc;
  padding: 40px
}

.selection-guide-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--header);
  padding-left: 20px
}

.selection-guide-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  position: relative;
  padding-left: 20px
}

.selection-guide-content h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 18px;
  background-color: var(--theme2);
  border-radius: 1px
}

.selection-card {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease-in-out;
  text-align: center
}

.selection-card:hover {
  box-shadow: 0 8px 20px rgba(255, 94, 21, 0.12);
  border-left-color: var(--theme2);
  transform: translateY(-5px)
}

.selection-card .card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, rgba(255, 94, 21, 0.1) 0%, rgba(255, 94, 21, 0.05) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--theme2)
}

.selection-card h6 {
  font-size: 17px;
  font-weight: 600;
  color: var(--header);
  margin-bottom: 12px
}

.selection-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0
}

.expert-note {
  background: linear-gradient(135deg, rgba(255, 94, 21, 0.08) 0%, rgba(255, 94, 21, 0.04) 100%);
  border-left: 4px solid var(--theme2);
  border-radius: 8px;
  padding: 25px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start
}

.expert-note .note-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--theme2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px
}

.expert-note .note-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  margin-bottom: 8px
}

.expert-note .note-content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0
}

.expert-note .note-content a {
  color: var(--theme2)
}

.expert-note .note-content a:hover {
  color: var(--header)
}

.structure-hero {
  background-color: transparent
}

.structure-hero .lead {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 500;
  border-left: 4px solid var(--theme2);
  padding-left: 20px
}

.features-inline {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.feature-item-inline {
  background: #fafbfc;
  padding: 16px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease
}

.feature-item-inline:hover {
  background: var(--white);
  border-left-color: var(--theme2);
  box-shadow: 0 4px 12px rgba(255, 94, 21, 0.1)
}

.feature-header-inline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px
}

.feature-icon-inline {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(255, 94, 21, 0.15) 0%, rgba(255, 94, 21, 0.08) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--theme2)
}

.feature-item-inline h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--header);
  margin: 0;
  line-height: 1.3
}

.feature-item-inline p {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  margin: 0
}

.features-section {
  display: flex;
  flex-direction: column;
  gap: 0
}

.features-section h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--header);
  position: relative;
  padding-left: 20px
}

.features-section h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 22px;
  background-color: var(--theme2);
  border-radius: 1px
}

.feature-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.feature-item:hover {
  box-shadow: 0 8px 24px rgba(255, 94, 21, 0.12);
  border-left-color: var(--theme2);
  transform: translateX(5px)
}

.feature-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 15px
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(255, 94, 21, 0.15) 0%, rgba(255, 94, 21, 0.08) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--theme2)
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  margin: 0;
  line-height: 1.4
}

.feature-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0
}

.performance-highlights {
  background: linear-gradient(135deg, rgba(255, 94, 21, 0.08) 0%, rgba(255, 94, 21, 0.04) 100%);
  padding: 40px 30px;
  border-radius: 8px;
  border-top: 2px solid var(--theme2)
}

.performance-highlights h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--header)
}

.highlight-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-bottom: 3px solid transparent
}

.highlight-item:hover {
  border-bottom-color: var(--theme2);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 94, 21, 0.1)
}

.highlight-item .highlight-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--theme2);
  margin-bottom: 10px;
  line-height: 1
}

.highlight-item p {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  margin: 0
}

.tab-pane {
  animation: fadeIn 0.3s ease-in-out
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.about-hero-section {
  padding-top: 80px;
  padding-bottom: 120px
}

.about-hero-content h1 {
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 30px;
  color: var(--header)
}

.about-hero-content p {
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 20px
}

.about-hero-content .theme-link {
  color: var(--theme);
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  text-decoration: underline
}

.about-hero-content .theme-link:hover {
  color: var(--theme2)
}

.about-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.6s ease-in-out
}

.about-hero-image:hover img {
  transform: scale(1.05)
}

.our-story-section {
  padding-top: 80px;
  padding-bottom: 120px
}

.our-story-content h2 {
  font-size: 50px;
  line-height: 120%;
  margin-bottom: 30px;
  color: var(--header)
}

.our-story-content p {
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 20px
}

.our-story-content p:last-child {
  margin-bottom: 0
}

.our-story-video {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1)
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none
}

.core-strengths-section {
  padding-top: 100px;
  padding-bottom: 120px
}

.core-strengths-wrapper {
  position: relative
}

.core-strengths-wrapper .row {
  align-items: flex-start !important
}

.core-strengths-wrapper .strength-item {
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%
}

.core-strengths-wrapper .strength-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 400px;
  margin-bottom: 30px;
  flex-shrink: 0
}

.core-strengths-wrapper .strength-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out
}

.core-strengths-wrapper .strength-item:hover .strength-image img {
  transform: scale(1.08)
}

.strength-content {
  flex-grow: 1
}

.strength-content h3 {
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 20px;
  color: var(--header)
}

.strength-content p {
  font-size: 16px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 15px
}

.strength-features {
  list-style: none;
  padding: 0;
  margin: 0
}

.strength-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border2)
}

.strength-features li:last-child {
  border-bottom: none
}

.strength-features li i {
  color: var(--theme2);
  font-size: 18px;
  flex-shrink: 0
}

.strength-features li:hover {
  color: var(--theme2);
  transition: all 0.3s ease-in-out
}

.case-list-section {
  padding-top: 100px;
  padding-bottom: 120px
}

.case-filter-wrapper {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 10px
}

.filter-text p {
  font-size: 16px;
  color: var(--text);
  margin: 0
}

.filter-text p .filter-count {
  color: var(--theme2);
  font-weight: 600
}

.filter-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--white);
  color: var(--theme);
  border: 1px solid var(--border2);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease-in-out
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--theme2);
  color: var(--white);
  border-color: var(--theme2)
}

.case-card-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column
}

.case-card-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px)
}

.case-image {
  position: relative;
  overflow: hidden;
  height: 300px
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out
}

.case-card-item:hover .case-image img {
  transform: scale(1.08)
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 22, 89, 0.9) 0%, rgba(255, 94, 21, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out
}

.case-card-item:hover .case-overlay {
  opacity: 1;
  visibility: visible
}

.overlay-content {
  text-align: center;
  color: var(--white);
  margin-right: 40px
}

.overlay-content h4 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px
}

.overlay-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9)
}

.case-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  font-size: 20px;
  transition: all 0.4s ease-in-out;
  margin-left: 40px
}

.case-link:hover {
  background-color: var(--theme2);
  color: var(--white);
  transform: translateX(10px)
}

.case-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column
}

.case-category {
  display: inline-block;
  background-color: rgba(255, 94, 21, 0.1);
  color: var(--theme2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 15px;
  width: fit-content
}

.case-content h3 {
  font-size: 22px;
  line-height: 140%;
  margin-bottom: 15px;
  margin-top: 0
}

.case-content h3 a {
  color: var(--header);
  transition: all 0.4s ease-in-out
}

.case-content h3 a:hover {
  color: var(--theme2)
}

.case-content p {
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 20px
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border2)
}

.case-meta span {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px
}

.case-meta span i {
  color: var(--theme2);
  font-size: 16px
}

.pagination-wrapper {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border2)
}

.pagination {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0
}

.page-item {
  display: inline-block
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--border2);
  color: var(--theme);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  cursor: pointer
}

.page-link i {
  margin: 0 5px;
  font-size: 12px
}

.page-link:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme)
}

.page-item.active .page-link {
  background-color: var(--theme2);
  color: var(--white);
  border-color: var(--theme2)
}

.page-item.disabled .page-link {
  background-color: var(--bg);
  color: var(--text2);
  cursor: not-allowed;
  opacity: 0.6
}

.case-card-item.hidden {
  display: none
}

.case-card-item.filtered {
  animation: fadeIn 0.4s ease-in-out
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.case-details-section {
  padding-top: 100px;
  padding-bottom: 120px
}

.case-details-header {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border2)
}

.case-meta-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.case-meta-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500
}

.case-meta-info i {
  color: var(--theme2);
  font-size: 16px
}

.case-details-header h1 {
  font-size: 36px;
  line-height: 120%;
  margin-bottom: 0
}

.case-hero-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 60px
}

.case-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 0.4s ease-in-out
}

.case-hero-image:hover img {
  transform: scale(1.02)
}

.case-challenge-section {
  background-color: var(--bg);
  padding: 60px;
  border-radius: 10px
}

.section-label {
  display: inline-block;
  background-color: rgba(255, 94, 21, 0.1);
  color: var(--theme2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 5px;
  margin-bottom: 20px
}

.challenge-content h2,
.solution-content h2 {
  font-size: 40px;
  margin-bottom: 25px
}

.challenge-content p,
.solution-content p {
  font-size: 16px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 15px
}

.challenge-problems h5,
.solution-components h5 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--header)
}

.challenge-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.challenge-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text)
}

.challenge-list li i {
  color: var(--theme2);
  font-size: 16px;
  flex-shrink: 0
}

.challenge-image,
.solution-image {
  border-radius: 10px;
  overflow: hidden
}

.challenge-image img,
.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out
}

.challenge-image:hover img,
.solution-image:hover img {
  transform: scale(1.03)
}

.case-solution-section {
  background-color: var(--white)
}

.component-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border2)
}

.component-item:last-child {
  border-bottom: none
}

.component-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 94, 21, 0.1);
  border-radius: 50%;
  color: var(--theme2);
  font-size: 24px
}

.component-text h6 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--header)
}

.component-text p {
  font-size: 14px;
  color: var(--text);
  margin: 0
}

.case-results-section {
  background-color: var(--bg);
  padding: 60px;
  border-radius: 10px
}

.results-header h2 {
  font-size: 40px;
  margin-bottom: 20px
}

.results-header p {
  font-size: 16px;
  color: var(--text)
}

.metric-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05)
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1)
}

.metric-icon {
  font-size: 48px;
  color: var(--theme2);
  margin-bottom: 20px
}

.metric-card h3 {
  font-size: 50px;
  color: var(--theme2);
  margin-bottom: 10px
}

.metric-card p {
  font-size: 16px;
  color: var(--header);
  margin-bottom: 8px;
  font-weight: 500
}

.metric-card small {
  font-size: 0.85rem;
  color: var(--text)
}

.results-image {
  border-radius: 10px;
  overflow: hidden
}

.results-image img {
  width: 100%;
  height: auto
}

.case-testimonial-section {
  margin-top: 80px;
  margin-bottom: 80px
}

.testimonial-card {
  background: linear-gradient(135deg, var(--theme) 0%, rgba(0, 22, 89, 0.8) 100%);
  padding: 50px 40px;
  border-radius: 10px;
  position: relative;
  color: var(--white)
}

.testimonial-icon {
  font-size: 48px;
  color: var(--theme2);
  margin-bottom: 20px;
  opacity: 0.3
}

.testimonial-card p {
  font-size: 18px;
  line-height: 32px;
  color: var(--white);
  margin-bottom: 30px
}

.testimonial-author h6 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px
}

.testimonial-author span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8)
}

.case-insights-section h2 {
  font-size: 40px;
  margin-bottom: 40px
}

.insight-card {
  background-color: #fff4f3;
  padding: 40px 30px;
  border-radius: 10px;
  position: relative;
  border-left: 4px solid var(--theme2);
  transition: all 0.4s ease-in-out;
  min-height: 250px;
  display: flex;
  flex-direction: column
}

.insight-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px)
}

.insight-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: var(--theme2);
  opacity: 0.1;
  font-weight: 700
}

.insight-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--header)
}

.insight-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 26px;
  flex-grow: 1
}

.case-cta-section {
  margin: 80px 0
}

.cta-card {
  /*background: linear-gradient(135deg, var(--theme2) 0%, rgba(255, 94, 21, 0.8) 100%);*/
  background: linear-gradient(135deg, var(--theme) 0%, rgb(43 80 209) 100%);
  /*background:  var(--theme);*/
  padding: 60px 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.cta-content {
  flex: 1;
  color: var(--white)
}

.cta-content h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 15px
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 26px
}

.cta-icon {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.1);
  display: none
}

.related-cases-section h2 {
  font-size: 40px;
  margin-bottom: 40px
}

.case-card-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out
}

.case-card-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px)
}

.case-image {
  position: relative;
  overflow: hidden;
  height: 250px
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out
}

.case-card-item:hover .case-image img {
  transform: scale(1.08)
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 22, 89, 0.9) 0%, rgba(255, 94, 21, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  padding: 20px
}

.case-card-item:hover .case-overlay {
  opacity: 1;
  visibility: visible
}

.overlay-content {
  color: var(--white)
}

.overlay-content h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px
}

.overlay-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9)
}

.case-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  font-size: 18px;
  transition: all 0.4s ease-in-out
}

.case-link:hover {
  background-color: var(--theme2);
  color: var(--white);
  transform: translateX(5px)
}

.case-content {
  padding: 25px
}

.case-content h3 {
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 12px;
  margin-top: 0
}

.case-content h3 a {
  color: var(--header);
  transition: all 0.4s ease-in-out
}

.case-content h3 a:hover {
  color: var(--theme2)
}

.case-content p {
  font-size: 14px;
  line-height: 24px;
  color: var(--text);
  margin-bottom: 15px
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border2)
}

.case-meta span {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px
}

.case-meta span i {
  color: var(--theme2)
}

.quick-contact-section {
  padding: 20px 0
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background-color: var(--white);
  border: 2px solid var(--border2);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden
}

.contact-link-item::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 94, 21, 0.05);
  transition: all 0.4s ease-in-out;
  content: "";
  z-index: -1
}

.contact-link-item:hover::before {
  left: 0
}

.contact-link-item:hover {
  border-color: var(--theme2);
  box-shadow: 0 4px 12px rgba(255, 94, 21, 0.15)
}

.link-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 94, 21, 0.1) 0%, rgba(255, 94, 21, 0.05) 100%);
  border-radius: 8px;
  font-size: 24px;
  transition: all 0.4s ease-in-out
}

.contact-link-item.whatsapp-link .link-icon {
  color: #25d366
}

.contact-link-item.email-link .link-icon {
  color: var(--theme2)
}

.contact-link-item:hover .link-icon {
  background: linear-gradient(135deg, var(--theme2) 0%, rgba(255, 94, 21, 0.8) 100%);
  color: var(--white);
  transform: scale(1.1)
}

.link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.link-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--header);
  text-transform: uppercase;
  display: block
}

.link-desc {
  font-size: 12px;
  color: var(--text);
  margin: 0;
  font-weight: 400
}

.contact-link-item:hover .link-label {
  color: var(--theme2)
}

.link-arrow {
  font-size: 18px;
  color: var(--theme2);
  transition: all 0.4s ease-in-out;
  opacity: 0.6
}

.contact-link-item:hover .link-arrow {
  opacity: 1;
  transform: translateX(5px)
}

.contact-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border2) 50%, transparent 100%)
}

.quick-contact-section .theme-btn {
  padding: 16px 20px !important;
  font-size: 15px !important
}

.quick-contact-section .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 94, 21, 0.2)
}

.trending-articles-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0
}

.trending-article-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border2);
  transition: all 0.3s ease-in-out
}

.trending-article-item:hover {
  padding-left: 12px
}

.trending-article-item:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.article-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--theme2) 0%, rgba(255, 94, 21, 0.8) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out
}

.trending-article-item:hover .article-number {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 94, 21, 0.3)
}

.article-content {
  flex: 1;
  min-width: 0
}

.article-content h6 {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px 0;
  font-weight: 600;
  color: var(--header);
  transition: all 0.3s ease-in-out
}

.article-content h6 a {
  color: var(--header);
  text-decoration: none
}

.article-content h6 a:hover {
  color: var(--theme2)
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px
}

.article-meta span {
  font-size: 12px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px
}

.article-meta span i {
  color: var(--theme2);
  font-size: 12px
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.trending-article-item {
  animation: slideIn 0.5s ease-out
}

.trending-article-item:nth-child(1) {
  animation-delay: 0.1s
}

.trending-article-item:nth-child(2) {
  animation-delay: 0.2s
}

.trending-article-item:nth-child(3) {
  animation-delay: 0.3s
}

.trending-article-item:nth-child(4) {
  animation-delay: 0.4s
}

.blog-post-form-section {
  background-color: var(--bg);
  padding: 60px 40px;
  border-radius: 10px;
  margin-top: 60px
}

.blog-post-form-section h3 {
  font-size: 32px;
  color: var(--header);
  margin-bottom: 15px;
  font-weight: 700
}

.blog-post-form-section>p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 30px
}

.blog-contact-form {
  position: relative
}

.blog-contact-form .form-group {
  position: relative
}

.blog-contact-form .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--header);
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.blog-contact-form .form-label .text-danger {
  color: #dc3545;
  margin-left: 2px
}

.blog-contact-form .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border2);
  border-radius: 6px;
  font-size: 15px;
  color: var(--text);
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  font-family: "Rubik", sans-serif;
  line-height: 1.5
}

.contact-form-area .blog-contact-form .form-control:focus {
  border-color: var(--theme2);
  box-shadow: 0 0 0 3px rgba(255, 94, 21, 0.1);
  outline: none;
  background-color: var(--white)
}

.blog-contact-form .form-control::placeholder {
  color: #ccc;
  font-weight: 400
}

.blog-contact-form .form-control::-webkit-input-placeholder {
  color: #ccc
}

.blog-contact-form .form-control::-moz-placeholder {
  color: #ccc
}

.blog-contact-form textarea.form-control {
  resize: vertical;
  min-height: 160px;
  font-family: "Rubik", sans-serif
}

.blog-contact-form .nice-select {
  width: 100%;
  background-color: var(--white);
  border: 2px solid var(--border2);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease-in-out
}

.blog-contact-form .nice-select:hover {
  border-color: var(--theme2)
}

.blog-contact-form .nice-select.open {
  border-color: var(--theme2)
}

.blog-contact-form .nice-select .list {
  background-color: var(--white);
  border: 2px solid var(--theme2);
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.blog-contact-form .nice-select .option {
  color: var(--text);
  padding: 12px 18px;
  transition: all 0.2s ease-in-out
}

.blog-contact-form .nice-select .option:hover {
  background-color: var(--bg);
  color: var(--theme2)
}

.blog-contact-form .nice-select .option.selected {
  background-color: rgba(255, 94, 21, 0.1);
  color: var(--theme2);
  font-weight: 600
}

.blog-contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.blog-contact-form .form-check-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  border: 2px solid var(--border2);
  border-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  accent-color: var(--theme2)
}

.blog-contact-form .form-check-input:hover {
  border-color: var(--theme2);
  box-shadow: 0 0 0 3px rgba(255, 94, 21, 0.1)
}

.blog-contact-form .form-check-input:checked {
  background-color: var(--theme2);
  border-color: var(--theme2)
}

.blog-contact-form .form-check-label {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  cursor: pointer;
  margin-bottom: 0
}

.blog-contact-form .form-check-label .text-link {
  color: var(--theme2);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out
}

.blog-contact-form .form-check-label .text-link:hover {
  text-decoration: underline;
  color: var(--theme)
}

.blog-contact-form .theme-btn {
  padding: 16px 50px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.blog-contact-form .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 94, 21, 0.25)
}

.blog-contact-form .form-control:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05)
}

.blog-contact-form .form-control:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1)
}

.blog-contact-form .form-control:valid:not(:placeholder-shown) {
  border-color: #28a745
}

.blog-contact-form .form-control:valid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1)
}

.blog-contact-form .invalid-feedback {
  font-size: 13px;
  color: #dc3545;
  margin-top: 6px;
  display: block
}

.blog-contact-form .valid-feedback {
  font-size: 13px;
  color: #28a745;
  margin-top: 6px;
  display: block
}

.blog-contact-form .form-control:disabled,
.blog-contact-form .form-control[disabled] {
  background-color: #f0f0f0;
  color: #ccc;
  cursor: not-allowed;
  border-color: #e0e0e0
}

.blog-contact-form .theme-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed
}

.mining-hero-section {
  padding: 120px 0
}

.mining-hero-wrapper {
  position: relative
}

.mining-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px
}

.mining-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease
}

.mining-hero-image:hover img {
  transform: scale(1.05)
}

.mining-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3
}

.mining-hero-content .subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme2);
  margin-bottom: 20px;
  line-height: 1.4
}

.mining-hero-content .description {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 30px
}

.challenges-solutions-section {
  margin-top: 60px
}

.challenge-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--header)
}

.challenge-image,
.solution-image {
  border-radius: 10px;
  overflow: hidden
}

.challenge-image img,
.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease
}

.challenge-image:hover img,
.solution-image:hover img {
  transform: scale(1.08)
}

.recommended-tools-section {
  margin-top: 60px
}

.case-slider-wrapper .swiper-wrapper {
  margin-bottom: 30px
}

@media (max-width:1899px) {
  .header-4 .header-main .main-menu ul li .has-homemenu {
    left: -250px
  }

  .team-wrapper-2 {
    margin-right: -5%
  }

  .cta-img-box .cta-img::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000;
    opacity: 0.8
  }

  .cta-one-inner {
    padding-left: 0
  }
}

@media (max-width:1600px) {
  .hero-1 {
    overflow: hidden
  }

  .hero-1 .hero-image {
    right: 180px;
    width: 800px;
    height: 700px
  }

  .social-icon-items .social-icon:not(:last-child) {
    padding-right: 0;
    border: none
  }
}

@media (max-width:1399px) {
  h1 {
    font-size: 62px
  }

  h3 {
    font-size: 24px
  }

  .section-title.style-3 h2 {
    font-size: 28px
  }

  .header-top-wrapper {
    margin-left: 0
  }

  .menu-thumb {
    display: none !important
  }

  .header-1 .header-logo {
    margin-top: 30px
  }

  .header-1 .header-main .main-menu ul li .has-homemenu {
    left: -250px
  }

  .header-3 .mega-menu-wrapper .header-main {
    padding: 0 20px
  }

  .header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li {
    margin-inline-end: 20px
  }

  .header-5 .header-main .main-menu ul li .has-homemenu {
    left: -400px
  }

  .sticky .header-logo {
    margin-top: 0
  }

  .hero-2 .hero-content .hero-button {
    top: 27%
  }

  .hero-2 .hero-content h1 {
    font-size: 92px
  }

  .hero-3 .array-btn {
    right: 10%
  }

  .hero-4 .swiper-dot-2 {
    display: none
  }

  .hero-4 .hero-content h1 {
    font-size: 80px
  }

  .hero-4.style-2 .hero-content h1 {
    font-size: 56px
  }

  .hero-4.style-3 .shape-1 {
    display: none
  }

  .hero-4.style-3 .shape-2 {
    display: none
  }

  .about-wrapper .about-content {
    margin-left: 40px;
    margin-top: 60px
  }

  .about-wrapper .about-content .about-image-2 {
    margin-top: 70px
  }

  .about-wrapper-2 .about-content {
    margin-left: 50px
  }

  .about-wrapper-2.wrapper-2 .about-content {
    margin-left: 0
  }

  .about-company-wrapper .about-company-items.border-line::before {
    display: none
  }

  .about-company-wrapper .about-company-items.border-line-2::before {
    display: none
  }

  .about-wrapper-3 .about-image-items .about-image-1 .about-image-2 {
    right: -4%;
    bottom: -5%;
    max-width: 280px
  }

  .about-wrapper-3 .about-content {
    margin-left: 0
  }

  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    bottom: -60px;
    right: -5%
  }

  .single-service-wrapper {
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-around
  }

  .sposors-wrapper .sponsors-content {
    border: none
  }

  .sposors-wrapper .sponsor-right {
    margin-left: 0
  }

  .border-right {
    border: none
  }

  .border-left-right {
    border: none;
    height: initial
  }

  .single-team-items .team-image img {
    max-width: initial
  }

  .team-wrapper .single-team-style-2 .single-team-items .icon-shape {
    left: 90px
  }

  .team-section .line-shape {
    display: none
  }

  .team-section .line-shape-2 {
    display: none
  }

  .team-wrapper-2 {
    margin-right: -8%
  }

  .choose-us-wrapper-3 .choose-image {
    margin: 0
  }

  .product-details-wrapper-2 .product-details-content {
    margin-left: 30px
  }

  .product-details-wrapper-2 .single-tab .description-items .description-content {
    margin-right: 30px
  }

  .faq-section::before {
    top: 12%
  }

  .faq-wrapper .faq-content {
    margin-left: 40px
  }

  .faq-wrapper .faq-content .section-title h2 {
    font-size: 42px
  }

  .faq-section-2::before {
    height: 100%
  }

  .main-sidebar .single-sidebar-widget .download-service-doc a {
    font-size: 16px;
    padding: 18px 40px
  }

  .testimonial-section-4 .client-1 {
    display: none
  }

  .testimonial-section-4 .client-2 {
    display: none
  }

  .padding-style {
    padding-top: 120px
  }

  .portfolio-wrapper .portfolio-items {
    padding: 45px
  }

  .contact-info-wrapper .contact-info-items:not(:last-child) {
    padding-right: 0;
    border: none
  }

  .footer-section .eonfik-text h2 {
    font-size: 250px
  }
}

@media (max-width:1200px) {
  .application-section-3 .container.mt-5 .row {
    grid-template-columns: repeat(3, 1fr) !important
  }

  .feature-item-inline {
    padding: 14px
  }

  .feature-item-inline h6 {
    font-size: 13px
  }

  .feature-item-inline p {
    font-size: 11px
  }
}

@media (max-width:1199px) {
  h1 {
    font-size: 52px
  }

  h2 {
    font-size: 37px
  }

  h4 {
    font-size: 22px
  }

  .section-title .text-color {
    font-size: 37px
  }

  .section-title.style-2 h2 .text-color {
    font-size: 37px
  }

  .section-title.style-3 h2 {
    font-size: 26px
  }

  .section-padding {
    padding: 100px 0
  }

  .header-top-wrapper {
    display: none
  }

  .header-top-4 .container-fluid {
    padding: 0 20px
  }

  .header-1 .header-main {
    border: none
  }

  .header-1 .header-right .header-button {
    display: none
  }

  .header-2 .header-main .header-button {
    display: none
  }

  .header-3 .mega-menu-wrapper .header-main .header-left {
    gap: 0
  }

  .header-3 .mega-menu-wrapper .header-main .header-left .sidebar__toggle {
    display: none
  }

  .header-3 .mega-menu-wrapper .header-main .header-left .header-logo {
    margin-right: 40px
  }

  .header-3 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none
  }

  .header-3 .mega-menu-wrapper .header-main .header-right .header-content {
    display: none
  }

  .header-3 .mega-menu-wrapper .header-main .header-right .sidebar__toggle .bar-2 {
    display: none
  }

  .header-4 .container-fluid {
    padding: 20px 20px
  }

  .header-4 .header-main .header-right .header-button {
    display: none
  }

  .header-5 .container-fluid {
    padding: 0 20px
  }

  .header-5 .mega-menu-wrapper .header-main {
    gap: 20px
  }

  .header-5 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li {
    margin-inline-end: 20px
  }

  .header-5 .header-main .header-right .header-button {
    display: none
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-right .bar-2 {
    display: block
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-right .bar-1 {
    display: none
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none
  }

  .breadcrumb-wrapper .page-heading {
    padding-top: 220px;
    padding-bottom: 60px
  }

  .breadcrumb-wrapper .page-heading .icon-shape {
    display: none
  }

  .breadcrumb-wrapper .page-heading h2 {
    font-size: 52px;
    margin-top: 5px
  }

  .breadcrumb-wrapper.coming-page .page-heading ul {
    flex-wrap: wrap
  }

  .breadcrumb-wrapper.coming-page .page-heading ul li span {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 32px
  }

  .hero-1 {
    padding: 220px 0
  }

  .hero-1 .pattern-shape {
    display: none
  }

  .hero-1::before {
    display: none
  }

  .hero-1 .hero-content h1 {
    font-size: 76px
  }

  .hero-1 .hero-content h1 .text {
    color: var(--theme)
  }

  .hero-1 .hero-content h1 .text-2 {
    color: var(--theme)
  }

  .hero-1 .hero-image {
    right: 0;
    width: 550px;
    height: 500px
  }

  .hero-1 .hero-image::after {
    display: none
  }

  .hero-2 {
    padding: 110px 0 0
  }

  .hero-2 .swiper-dot {
    display: none
  }

  .hero-2 .hero-image {
    display: none
  }

  .hero-2 .text-circle {
    display: none
  }

  .hero-2 .hero-content .hero-button {
    top: 25%
  }

  .hero-2 .hero-content h1 {
    font-size: 82px
  }

  .hero-3 .array-btn {
    display: none
  }

  .hero-3 .hero-text-slider-2 {
    height: 564px
  }

  .hero-3 .hero-content {
    padding-top: 270px;
    padding-bottom: 150px
  }

  .hero-3 .hero-content h1 {
    font-size: 72px
  }

  .hero-4 .hero-content {
    padding: 140px 0
  }

  .hero-4 .hero-content h1 {
    font-size: 70px
  }

  .hero-4.style-2 .hero-content h1 {
    font-size: 52px
  }

  .video-section {
    padding: 250px 0
  }

  .achievement-wrapper .counter-area {
    margin-left: 0
  }

  .about-wrapper .about-image .counter-content {
    height: 160px
  }

  .about-wrapper-2 .about-content.about-inner {
    margin-left: 30px
  }

  .about-wrapper-2 .about-growth-items .growth-box-number {
    margin-bottom: 30px
  }

  .about-wrapper-2 .about-growth-items .growth-box-image {
    margin-bottom: 30px
  }

  .about-wrapper-2 .about-growth-items .growth-box-image-2 {
    width: 200px;
    text-align: center;
    margin: 0 auto
  }

  .about-company-wrapper .about-company-items {
    flex-wrap: wrap;
    gap: 50px
  }

  .about-wrapper-3 .about-image-items .exp-box {
    left: 0;
    top: 0
  }

  .about-wrapper-3 .about-content {
    margin-left: 15px
  }

  .about-wrapper-3 .about-content .about-list-items {
    flex-wrap: wrap
  }

  .about-wrapper-3.style-2 {
    margin-bottom: 0
  }

  .about-wrapper-3.style-2 .about-image-items::before {
    right: 20%
  }

  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    bottom: 0;
    right: 10%
  }

  .about-wrapper-3.style-2 .about-content .list-area-2 {
    flex-wrap: wrap;
    gap: 40px
  }

  .service-wrapper .service-icon-area {
    margin-right: 0
  }

  .service-wrapper-2 {
    margin-right: 0
  }

  .sposors-wrapper .sponsor-right .sponsor-items:not(:last-child) {
    margin-bottom: 70px
  }

  .mt-100 {
    margin-top: 0
  }

  .team-wrapper .single-team-style-2 .single-team-items .icon-shape {
    left: 15px
  }

  .team-details-wrapper .team-details-content {
    margin-left: 50px
  }

  .team-wrapper-2 {
    margin-right: 0
  }

  .faq-wrapper .faq-content {
    margin-left: 0;
    margin-top: 0
  }

  .faq-area.faq-wrapper-2 .faq-content {
    margin-left: 0
  }

  .main-sidebar {
    margin-left: 0
  }

  .main-sidebar .single-sidebar-widget {
    padding: 25px
  }

  .cta-call-to-action {
    padding-bottom: 0
  }

  .cta-call-to-action .dot-shape {
    display: none
  }

  .cta-call-to-action .cta-img {
    display: none
  }

  .cta-call-to-action .cta-img-2 {
    display: none
  }

  .cta-call-to-action .cta-img-3 {
    display: none
  }

  .cta-call-to-action .cta-img-4 {
    display: none
  }

  .cta-call-to-action .cta-img-5 {
    display: none
  }

  .cta-content-items h2 .text {
    font-size: 37px
  }

  .cta-content-items h2 .text-2 {
    font-size: 37px
  }

  .cta-banner-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center
  }

  .cta-join-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 30px
  }

  .cta-join-wrapper .team-image {
    display: none
  }

  .cta-join-us {
    padding-top: 0
  }

  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px
  }

  .border-right-none {
    border-right: 1px solid #192D69 !important
  }

  .testimonial-bg {
    overflow: hidden
  }

  .testimonial-bg .text-circle {
    display: none
  }

  .testimonial-bg .section-title h2 {
    font-size: 37px
  }

  .testimonial-bg .section-title h2 .text {
    font-size: 37px
  }

  .testimonial-bg .section-title h2 .text-2 {
    font-size: 37px
  }

  .testimonial-bg .testimonial-wrapper .testimonial-slide-content {
    height: 600px
  }

  .testimonial-wrapper-2 .testimonial-content-items {
    margin-left: 0
  }

  .testimonial-wrapper-2 .testimonial-content-items {
    padding: 35px
  }

  .testimonial-wrapper-2 .testimonial-content-items .client-info {
    margin-top: 30px
  }

  .testimonial-wrapper-4 .testimonial-items {
    padding: 40px
  }

  .testimonial-wrapper-4 .testimonial-items::before {
    top: 70px
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content h3 {
    font-size: 24px
  }

  .testimonial-section-4 {
    margin-top: -40px
  }

  .padding-style {
    padding-top: 90px
  }

  .single-news-style-3 .news-image::after {
    height: 100%
  }

  .portfolio-section {
    padding-bottom: 100px
  }

  .portfolio-wrapper .portfolio-items {
    margin-right: 0;
    padding: 40px
  }

  .case-study-wrapper-3 .case-study-single-items {
    flex-wrap: wrap;
    gap: 40px
  }

  .case-study-wrapper-3 .case-study-single-items .case-study-items-2.style-2 {
    margin-bottom: 30px
  }

  .case-study-wrapper-3 .case-study-single-items .case-study-items-2.active .case-study-content {
    margin-bottom: 30px
  }

  .contact-info-wrapper {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center
  }

  .contact-info-section .pattern-shape {
    display: none
  }

  .contact-form-area .map-item {
    margin-left: 0
  }

  .contact-text {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center !important
  }

  .contact-text h6 {
    text-align: center
  }

  .contact-form .contact-image {
    margin-left: 0
  }

  .footer-widgets-wrapper {
    padding: 60px 0 90px
  }

  .footer-widgets-wrapper .single-footer-widget.footer-widget-2 .list-items {
    justify-content: initial !important;
    gap: 60px
  }

  .social-icon-items {
    flex-wrap: wrap;
    justify-content: center
  }

  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 30px
  }

  .footer-section .eonfik-text h2 {
    font-size: 200px
  }

  .footer-widgets-wrapper-2 {
    padding: 60px 0 90px
  }

  .footer-widgets-wrapper-2.style-2 {
    padding: 70px 0 90px
  }

  /* .dth-hero-section {
    padding: 100px 0
  } */

  .dth-hero-image {
    height: 500px
  }

  .dth-hero-content {
    padding-left: 30px
  }

  .dth-hero-content h1 {
    font-size: 48px
  }
}

@media (max-width:1024px) {
  .product-table-content {
    margin: 15px 0;
    padding: 0
  }

  .product-specifications-table thead th {
    font-size: 14px;
    padding: 14px 10px
  }

  .product-specifications-table tbody td {
    font-size: 13px;
    padding: 12px 10px
  }
}

@media (max-width:992px) {
  .selection-guide-content {
    padding: 30px
  }

  .selection-card {
    padding: 20px
  }

  .structure-hero .row {
    flex-direction: column
  }

  .features-inline {
    gap: 12px
  }

  .feature-item-inline {
    padding: 12px
  }

  .feature-header-inline {
    gap: 10px
  }

  .feature-icon-inline {
    width: 36px;
    height: 36px;
    font-size: 16px
  }

  .feature-item {
    padding: 25px
  }

  .feature-item h5 {
    font-size: 17px
  }

  .feature-item p {
    font-size: 13px
  }
}

@media (max-width:991px) {
  .theme-btn.bg-color-4 {
    padding: 18px 35px
  }

  .theme-btn {
    font-size: 15px;
    padding: 20px 35px
  }

  h1 {
    font-size: 42px
  }

  h2 {
    font-size: 32px
  }

  h3 {
    font-size: 24px
  }

  .section-title .text-color {
    font-size: 32px
  }

  .section-title.style-2 h2 .text-color {
    font-size: 32px
  }

  .section-title.style-2 br {
    display: none
  }

  .right-text h6 {
    left: 8%
  }

  .section-padding {
    padding: 80px 0
  }

  .header-top-4 {
    display: none
  }

  .header-2 {
    padding: 15px 0
  }

  .header-3 .mega-menu-wrapper .header-main .header-left {
    padding: 20px 0
  }

  .header-5 .container-fluid {
    padding: 15px 20px
  }

  .sticky.header-5 .mega-menu-wrapper .header-main {
    padding: 12px 0px !important
  }

  .breadcrumb-wrapper .page-heading h2 {
    font-size: 48px
  }

  .breadcrumb-wrapper .page-heading h2 span {
    font-size: 48px
  }

  .breadcrumb-wrapper.error-page .page-heading h1 {
    font-size: 150px
  }

  .hero-1 {
    padding-top: 150px;
    padding-bottom: 250px
  }

  .hero-1 .hero-content h1 {
    font-size: 58px
  }

  .hero-1 .hero-image {
    width: 450px;
    height: 450px
  }

  .hero-2 .hero-content .hero-button {
    top: 23%
  }

  .hero-2 .hero-content h1 {
    font-size: 58px;
    line-height: 150%
  }

  .hero-3 .hero-text-slider-2 {
    height: 502px
  }

  .hero-3 .hero-content h1 {
    font-size: 48px
  }

  .hero-4 .hero-content {
    padding: 120px 0
  }

  .hero-4 .hero-content h1 {
    font-size: 60px
  }

  .hero-4.style-2 .hero-content {
    padding-top: 250px;
    padding-bottom: 170px
  }

  .hero-4.style-2 .hero-content h1 {
    font-size: 48px
  }

  .video-section {
    padding: 200px 0
  }

  .about-wrapper .section-header h2 {
    margin-left: 185px
  }

  .about-wrapper .about-content {
    margin-left: 0;
    margin-top: 50px
  }

  .about-wrapper .about-content .about-image-2 {
    margin-top: 50px
  }

  .about-wrapper-2 .about-image .circle-box {
    display: none
  }

  .about-wrapper-2 .about-content {
    margin-left: 0
  }

  .about-wrapper-2 .about-content.about-inner {
    margin-left: 0
  }

  .about-wrapper-3 .about-image-items .exp-box {
    left: -40px;
    top: 40px
  }

  .about-wrapper-3 .about-image-items .about-image-1 .about-image-2 {
    right: -10%;
    bottom: -5%;
    max-width: 280px
  }

  .about-wrapper-3 .about-content {
    margin-left: 0
  }

  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: -15%;
    bottom: -12%
  }

  .about-wrapper-3.style-2 .about-content .list-area-2 {
    flex-wrap: initial;
    gap: 40px
  }

  .single-team-items .team-image img {
    max-width: 100%;
    height: 100%
  }

  .team-details-wrapper .team-details-content {
    margin-left: 0
  }

  .choose-us-wrapper-2 .choose-image-items {
    margin-left: 0
  }

  .product-details-wrapper .product-details-content {
    margin-left: 0
  }

  .product-details-wrapper-2 .product-details-content {
    margin-left: 0
  }

  .product-details-wrapper-2 .single-tab .description-items .description-content {
    margin-right: 0
  }

  .cta-content-items h2 .text {
    font-size: 32px
  }

  .cta-content-items h2 .text-2 {
    font-size: 32px
  }

  .cta-one-inner {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center
  }

  .pricing-wrapper .package-list-items {
    margin-top: 43px
  }

  .pricing-wrapper .signle-pricing-items .price-body li .pr-text {
    display: block
  }

  .pricing-wrapper .signle-pricing-items .price-body li .pr-icon {
    opacity: 1
  }

  .testimonial-bg .section-title h2 {
    font-size: 32px
  }

  .testimonial-bg .section-title h2 .text {
    font-size: 32px;
    margin-left: 0
  }

  .testimonial-bg .section-title h2 .text-2 {
    font-size: 32px
  }

  .testimonial-bg .testimonial-wrapper .array-btn {
    display: none
  }

  .testimonial-bg .testimonial-wrapper .client-image-items {
    display: none
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content {
    margin: 30px auto
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content h3 {
    font-size: 20px;
    line-height: 170%
  }

  .padding-style {
    padding-top: 70px
  }

  .single-news-style-3 .news-image .post-cat {
    left: 30px
  }

  .single-news-style-3 .news-image .news-content {
    padding: 0 30px;
    bottom: 140px;
    padding-bottom: 30px
  }

  .single-news-style-3 .news-image .news-content h4 {
    font-size: 20px
  }

  .single-news-style-3 .news-image .news-button {
    left: 30px
  }

  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px
  }

  .news-area .main-sidebar {
    margin-top: 40px
  }

  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px
  }

  .portfolio-section {
    padding-bottom: 80px
  }

  .project-wrapper-2 .project-items-2 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center
  }

  .contact-info-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px
  }

  .footer-widgets-wrapper {
    padding: 40px 0 70px
  }

  .footer-bottom .footer-bottom-wrapper {
    justify-content: center
  }

  .footer-section .eonfik-text {
    margin-top: -20px
  }

  .footer-section .eonfik-text h2 {
    font-size: 150px
  }

  .footer-widgets-wrapper-2 {
    padding: 40px 0 70px
  }

  .footer-widgets-wrapper-2.style-2 {
    padding: 50px 0 70px
  }

  /* .dth-hero-section {
    padding: 80px 0
  } */

  .dth-hero-image {
    height: 400px;
    margin-bottom: 40px
  }

  .dth-hero-content {
    padding-left: 0
  }

  .dth-hero-content h1 {
    font-size: 40px
  }

  .dth-hero-content p {
    font-size: 16px
  }

  .about-hero-section {
    padding-top: 60px;
    padding-bottom: 80px
  }

  .about-hero-image {
    margin-top: 40px
  }

  .our-story-section {
    padding-top: 60px;
    padding-bottom: 80px
  }

  .core-strengths-section {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .core-strengths-wrapper .row {
    gap: 40px
  }

  .case-list-section {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .case-details-section {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .case-details-header h1 {
    font-size: 28px
  }

  .mining-hero-section {
    padding: 80px 0
  }

  .mining-hero-section {
    padding: 80px 0
  }

  .challenge-content h3 {
    font-size: 28px
  }
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .search-wrap .search-field-holder {
    width: 70%
  }
}

@media (max-width:768px) {
  .application-section-3 .container.mt-5 .row {
    grid-template-columns: repeat(2, 1fr) !important
  }

  .application-image {
    height: 300px
  }

  .application-content h3 {
    font-size: 18px
  }

  .application-content p {
    font-size: 13px
  }

  .contact-form-section {
    padding: 60px 0
  }

  .contact-form {
    padding: 30px
  }

  .form-control {
    padding: 12px 14px;
    font-size: 14px
  }

  .form-label {
    font-size: 14px
  }

  .product-table-content {
    margin: 15px 0;
    padding: 0;
    overflow-x: auto;
    border-radius: 0
  }

  .product-specifications-table {
    min-width: 100%;
    border-radius: 0
  }

  .product-specifications-table thead {
    position: sticky;
    top: 0;
    z-index: 10
  }

  .product-specifications-table thead th {
    font-size: 12px;
    padding: 12px 8px
  }

  .product-specifications-table tbody tr {
    display: table-row;
    border: none
  }

  .product-specifications-table tbody tr:hover {
    background-color: #f5f5f5
  }

  .product-specifications-table tbody td {
    display: table-cell;
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
    font-size: 12px
  }

  .product-specifications-table tbody td::before {
    display: none
  }

  .tab-content {
    padding: 20px 0
  }

  .description-content h3 {
    font-size: 20px;
    margin-bottom: 15px
  }

  .description-content p {
    font-size: 13px
  }

  .selection-guide-content {
    padding: 20px
  }

  .selection-guide-content h3 {
    font-size: 24px
  }

  .selection-card {
    padding: 18px
  }

  .selection-card h6 {
    font-size: 16px
  }

  .expert-note {
    flex-direction: column;
    text-align: center;
    gap: 15px
  }

  .expert-note .note-icon {
    margin: 0 auto
  }

  .structure-hero {
    padding: 0
  }

  .structure-hero .lead {
    font-size: 15px
  }

  .features-inline {
    gap: 10px;
    margin-top: 20px
  }

  .feature-item-inline {
    padding: 12px
  }

  .feature-item-inline h6 {
    font-size: 12px
  }

  .feature-item-inline p {
    font-size: 11px
  }

  .features-section h4 {
    font-size: 20px;
    margin-top: 30px
  }

  .feature-item {
    padding: 20px
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 20px
  }

  .feature-item h5 {
    font-size: 15px
  }

  .feature-item p {
    font-size: 12px
  }

  .performance-highlights {
    padding: 30px 20px
  }

  .performance-highlights h4 {
    font-size: 20px
  }

  .highlight-item {
    padding: 20px
  }

  .highlight-item .highlight-number {
    font-size: 36px
  }

  .highlight-item p {
    font-size: 14px
  }

  .video-container {
    padding-bottom: 56.25%
  }

  .case-filter-wrapper {
    padding: 20px
  }

  .case-filter-wrapper .row {
    flex-direction: column
  }

  .case-filter-wrapper .col-md-6 {
    margin-bottom: 20px;
    text-align: center !important
  }

  .filter-buttons {
    justify-content: center
  }

  .trending-article-item {
    gap: 15px;
    padding: 18px 0
  }

  .article-number {
    width: 36px;
    height: 36px;
    font-size: 14px
  }

  .article-content h6 {
    font-size: 13px
  }

  .article-meta span {
    font-size: 11px
  }

  .blog-post-form-section {
    padding: 35px 20px
  }

  .blog-contact-form .form-control {
    font-size: 14px;
    padding: 12px 15px
  }

  .blog-contact-form textarea.form-control {
    min-height: 120px
  }

  .blog-contact-form .theme-btn {
    padding: 14px 35px;
    font-size: 14px
  }

  .blog-contact-form .row {
    margin: 0 -5px
  }

  .blog-contact-form .col-md-6 {
    padding: 0 5px
  }
}

@media (max-width:767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto
  }

  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em
  }

  .section-title {
    margin-bottom: 0
  }

  .section-title.style-3 h2 {
    font-size: 24px
  }

  .breadcrumb-wrapper .page-heading {
    padding-top: 160px;
    padding-bottom: 40px
  }

  .breadcrumb-wrapper .page-heading h2 {
    font-size: 36px
  }

  .breadcrumb-wrapper .page-heading h2 span {
    font-size: 36px
  }

  .hero-1 .hero-content br {
    display: none
  }

  .hero-1 .hero-content h1 {
    font-size: 48px
  }

  .hero-2 {
    padding: 80px 0 0
  }

  .hero-2 .hero-content br {
    display: none
  }

  .hero-2 .hero-content .hero-button {
    top: 40%
  }

  .hero-2 .hero-content h1 {
    font-size: 42px;
    margin-bottom: 130px
  }

  .hero-2 .hero-content h1 span {
    margin-left: 0
  }

  .hero-3 .hero-text-slider-2 {
    height: 482px
  }

  .hero-3 .hero-content {
    padding-top: 250px;
    padding-bottom: 130px
  }

  .hero-4 .hero-content {
    padding: 100px 0
  }

  .hero-4 .hero-content h1 {
    font-size: 42px
  }

  .hero-4.style-2 .array-button {
    display: none
  }

  .hero-4.style-2 .hero-content {
    padding-top: 200px;
    padding-bottom: 130px
  }

  .hero-4.style-2 .hero-content h1 {
    font-size: 42px
  }

  .hero-4.style-3 .array-button {
    display: none
  }

  .video-items-2 .video-button {
    width: 80px;
    height: 80px;
    line-height: 80px
  }

  .video-section-2 {
    padding-top: 100px;
    padding-bottom: 200px
  }

  .single-funfact-items .funfact-content h2 {
    font-size: 62px;
    margin-top: 20px
  }

  .achievement-wrapper .counter-area .counter-items .content h2 {
    font-size: 36px
  }

  .about-wrapper .section-header h2 br {
    display: none
  }

  .about-wrapper .section-header h2 span {
    position: initial
  }

  .about-wrapper .about-image .counter-content {
    width: 170px;
    height: 150px
  }

  .about-wrapper-2 .about-image-items .about-image-1 {
    text-align: center;
    margin: 0 auto
  }

  .about-wrapper-2 .about-image-items .about-image-2 {
    text-align: center;
    margin: 0 auto;
    margin-top: 0
  }

  .about-wrapper-2 .about-image-items .circle-box {
    display: none
  }

  .about-wrapper-3 .about-image-items .exp-box {
    left: 0;
    padding: 30px 30px 50px;
    top: 0
  }

  .about-wrapper-3 .about-image-items .about-image-1 {
    height: 520px
  }

  .about-wrapper-3 .about-image-items .about-image-1 .about-image-2 {
    right: 0;
    bottom: 0;
    max-width: 250px
  }

  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 {
    bottom: 0;
    right: 10%
  }

  .about-wrapper-3.style-2 .about-content .list-area-2 {
    margin-top: 30px;
    gap: 30px;
    flex-wrap: wrap
  }

  .single-service-wrapper {
    justify-content: space-between
  }

  .service-card-items-2 {
    padding: 30px
  }

  .arry-button {
    display: none
  }

  .border-left-right {
    text-align: initial;
    margin: initial
  }

  .team-wrapper-2 .team-image-inner .team-image {
    height: 480px
  }

  .choose-us-wrapper-2 .choose-image-items .choose-image-1 {
    height: 450px
  }

  .choose-us-wrapper-2 .choose-image-items .choose-image-2 {
    height: 450px;
    margin-top: 0
  }

  .single-tab .nav .nav-link {
    padding: 12px 8px
  }

  .single-tab .nav .nav-link h6 {
    font-size: 12px
  }

  .cart-wrapper {
    overflow-x: scroll
  }

  .cart-wrapper .cart-items-wrapper {
    width: 700px
  }

  .cart-wrapper .cart-wrapper-footer {
    width: 700px
  }

  .product-details-wrapper-2 .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px
  }

  .counter-wrapper-2 {
    padding: 50px
  }

  .cta-one-inner .section-title h2 {
    font-size: 30px
  }

  .pricing-wrapper .package-list-items {
    margin-bottom: -75px
  }

  .pricing-wrapper .signle-pricing-items .price-header {
    text-align: center
  }

  .pricing-card-items {
    padding: 30px 30px
  }

  .pricing-card-items .icon {
    top: 30px;
    right: 30px
  }

  .pricing-card-items .pricing-header h2 {
    font-size: 32px
  }

  .pricing-card-items .pricing-header h3 {
    font-size: 20px
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content {
    margin: 20px auto
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content h3 {
    font-size: 18px;
    line-height: 165%
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content .star {
    margin-top: 20px
  }

  .single-news-style-3 .news-image::before {
    background: linear-gradient(180deg, rgba(0, 22, 89, 0) 0%, #001659 66.67%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25)
  }

  .single-news-style-3 .news-image::after {
    display: none
  }

  .single-news-style-3 .news-image .news-content {
    border: none
  }

  .single-news-style-3 .news-image .news-content .post-date li {
    color: var(--white)
  }

  .single-news-style-3 .news-image .news-content .post-date li i {
    color: var(--white)
  }

  .single-news-style-3 .news-image .news-content .post-date li span {
    color: var(--text2)
  }

  .single-news-style-3 .news-image .news-content h4 a {
    color: var(--white);
    transition: all 0.4s ease-in-out
  }

  .single-news-style-3 .news-image .news-content h4 a:hover {
    color: var(--theme2)
  }

  .single-news-style-3 .news-image .news-button {
    opacity: 1;
    display: inline-block
  }

  .blog-wrapper .border-wrap {
    padding: 50px 15px
  }

  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px
  }

  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px
  }

  .blog-wrapper .single-blog-post.post-details blockquote,
  .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5
  }

  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px
  }

  .blog-wrapper .single-blog-post .post-content {
    padding: 50px 10px
  }

  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 14px
  }

  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 13px
  }

  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px
  }

  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px
  }

  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 16px
  }

  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px
  }

  .tagcloud a {
    font-size: 14px
  }

  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px
  }

  .tag-share-wrap h5 {
    margin-bottom: 10px;
    font-size: 18px
  }

  .tag-share-wrap .tagcloud {
    margin-bottom: 20px
  }

  .comments-heading h5,
  .related-post-wrap h5,
  .comment-form-wrap h5 {
    font-size: 18px
  }

  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px
  }

  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px
  }

  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px
  }

  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px
  }

  .comment-form {
    padding: 30px
  }

  .comment-form textarea {
    height: 120px
  }

  .comment-form .theme-btn {
    padding: 20px 40px
  }

  .work-cases-section .arry-button {
    display: none
  }

  .work-cases-wrapper .work-case-content .nav {
    justify-content: initial
  }

  .project-wrapper .project-items .project-image {
    height: 470px
  }

  .footer-widgets-wrapper .single-footer-widget.footer-widget-2 .text-area {
    margin: initial
  }

  .footer-widgets-wrapper .single-footer-widget.footer-widget-2 .social-icon.style-2 {
    justify-content: initial !important;
    margin-top: 20px
  }

  .footer-section .eonfik-text {
    margin-top: -15px
  }

  .footer-section .eonfik-text h2 {
    font-size: 120px
  }

  .dth-hero-content h1 {
    font-size: 32px
  }

  .about-hero-content h1 {
    font-size: 40px
  }

  .our-story-content h2 {
    font-size: 35px
  }

  .core-strengths-wrapper .strength-image {
    height: 300px
  }

  .strength-content h3 {
    font-size: 24px
  }

  .case-image {
    height: 250px
  }

  .overlay-content h4 {
    font-size: 20px
  }

  .case-content {
    padding: 20px
  }

  .case-content h3 {
    font-size: 18px
  }

  .case-meta {
    gap: 15px;
    flex-wrap: wrap
  }

  .pagination-wrapper {
    margin-top: 60px;
    padding-top: 60px
  }

  .case-meta-info {
    gap: 15px
  }

  .case-details-header h1 {
    font-size: 40px
  }

  .case-hero-image img {
    height: 300px
  }

  .case-challenge-section {
    padding: 30px
  }

  .challenge-content h2,
  .solution-content h2 {
    font-size: 28px
  }

  .case-results-section {
    padding: 30px
  }

  .results-header h2 {
    font-size: 28px
  }

  .metric-card h3 {
    font-size: 36px
  }

  .testimonial-card {
    padding: 30px 20px
  }

  .testimonial-card p {
    font-size: 16px;
    line-height: 26px
  }

  .case-insights-section h2 {
    font-size: 28px
  }

  .cta-card {
    padding: 40px 20px;
    flex-direction: column;
    text-align: center
  }

  .cta-content h3 {
    font-size: 24px
  }

  .related-cases-section h2 {
    font-size: 28px
  }

  .case-hero-image img {
    height: 250px
  }

  .testimonial-card {
    padding: 30px 20px
  }

  .cta-card {
    padding: 30px 20px
  }

  .contact-links {
    gap: 10px
  }

  .contact-link-item {
    padding: 14px
  }

  .link-icon {
    width: 45px;
    height: 45px;
    font-size: 20px
  }

  .link-label {
    font-size: 14px
  }

  .link-desc {
    font-size: 11px
  }

  .link-arrow {
    font-size: 16px
  }

  .quick-contact-section .theme-btn {
    padding: 14px 15px !important;
    font-size: 14px !important
  }

  .blog-post-form-section {
    padding: 40px 25px
  }

  .blog-post-form-section h3 {
    font-size: 24px
  }

  .mining-hero-image {
    margin-bottom: 40px
  }

  .mining-hero-content h1 {
    font-size: 32px
  }

  .mining-hero-content .subtitle {
    font-size: 16px
  }

  .challenges-solutions-section {
    margin-top: 40px
  }

  .challenge-item {
    padding: 40px 0
  }

  .challenge-content h3 {
    font-size: 24px
  }

  .case-slider-wrapper {
    margin-top: 30px
  }

  .mining-hero-content .subtitle {
    font-size: 16px
  }

  .challenge-item {
    padding: 30px 0
  }

  .challenge-content h3 {
    font-size: 22px
  }
}

@media (max-width:585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content,
  .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px
  }

  .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
  .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px
  }

  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px
  }

  .comment-form {
    padding: 30px 15px
  }

  .comment-form input,
  .comment-form textarea {
    padding: 15px
  }

  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px
  }
}

@media (max-width:576px) {
  .application-section-3 .container.mt-5 .row {
    grid-template-columns: 1fr !important
  }

  .application-image {
    height: 280px
  }

  .contact-form-section {
    padding: 40px 0
  }

  .contact-form {
    padding: 20px
  }

  .col-md-6 {
    width: 100%
  }

  .product-table-content {
    margin: 15px 0;
    padding: 0
  }

  .product-specifications-table {
    min-width: 100%
  }

  .product-specifications-table thead th {
    font-size: 11px;
    padding: 10px 6px
  }

  .product-specifications-table tbody td {
    padding: 8px 6px;
    font-size: 11px
  }

  .feature-item {
    padding: 18px
  }

  .feature-header {
    flex-direction: column;
    gap: 10px
  }

  .feature-icon {
    width: 40px;
    height: 40px
  }

  .feature-item h5 {
    font-size: 14px
  }

  .feature-item p {
    font-size: 12px
  }

  .highlight-number {
    font-size: 32px !important
  }

  .contact-link-item {
    gap: 12px
  }

  .link-icon {
    width: 40px;
    height: 40px;
    font-size: 18px
  }

  .link-label {
    font-size: 13px
  }

  .link-arrow {
    font-size: 14px
  }

  .trending-article-item {
    gap: 12px;
    padding: 16px 0
  }

  .article-number {
    width: 32px;
    height: 32px;
    font-size: 13px
  }

  .article-content h6 {
    font-size: 12px;
    line-height: 1.4
  }

  .blog-post-form-section {
    padding: 30px 15px
  }

  .blog-post-form-section h3 {
    font-size: 20px;
    margin-bottom: 12px
  }

  .blog-post-form-section>p {
    font-size: 14px;
    margin-bottom: 20px
  }

  .blog-contact-form .form-label {
    font-size: 13px
  }

  .blog-contact-form .form-control,
  .blog-contact-form .nice-select {
    font-size: 13px;
    padding: 11px 13px
  }

  .blog-contact-form .theme-btn {
    width: 100%;
    padding: 13px 25px
  }

  .blog-contact-form .row {
    margin: 0
  }

  .blog-contact-form .col-md-6 {
    padding: 0
  }
}

@media (max-width:575px) {
  .theme-btn .theme-effect {
    font-size: 14px;
    height: 16px
  }

  .theme-btn.bg-color-4 {
    padding: 16px 32px
  }

  .theme-btn {
    font-size: 14px;
    padding: 18px 32px
  }

  h1 {
    font-size: 36px;
    line-height: 120%
  }

  h2 {
    font-size: 28px
  }

  h3 {
    font-size: 20px
  }

  h4 {
    font-size: 20px
  }

  .search-wrap .search-field-holder {
    width: 80%
  }

  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px
  }

  input.main-search-input::-moz-placeholder {
    font-size: 18px
  }

  input.main-search-input::placeholder {
    font-size: 18px
  }

  .section-title .text-color {
    font-size: 28px
  }

  .section-title.style-2 h2 .text-color {
    font-size: 28px
  }

  .section-title.style-2 {
    margin-bottom: 25px
  }

  .section-title.style-3 h2 {
    font-size: 20px
  }

  .offcanvas__wrapper {
    padding: 20px
  }

  .breadcrumb-wrapper .page-heading {
    padding-top: 150px;
    padding-bottom: 30px
  }

  .breadcrumb-wrapper .page-heading h2 {
    font-size: 32px
  }

  .breadcrumb-wrapper .page-heading h2 span {
    font-size: 32px
  }

  .breadcrumb-wrapper .breadcrumb-items {
    flex-wrap: wrap
  }

  .breadcrumb-wrapper.error-page .page-heading h1 {
    font-size: 80px
  }

  .breadcrumb-wrapper.coming-page .page-heading h1 {
    font-size: 36px
  }

  .hero-1 {
    padding-top: 100px;
    padding-bottom: 200px
  }

  .hero-1 .hero-content {
    text-align: center
  }

  .hero-1 .hero-content h1 {
    font-size: 36px
  }

  .hero-1 .service-btn {
    left: 50%;
    bottom: 4%;
    width: 100px;
    height: 100px;
    padding: 20px
  }

  .hero-1 .hero-image {
    display: none
  }

  .hero-2 {
    padding: 60px 0 0
  }

  .hero-2 .hero-content {
    text-align: center
  }

  .hero-2 .hero-content .hero-button {
    left: 23%;
    top: 45%
  }

  .hero-2 .hero-content h1 {
    font-size: 32px;
    margin-bottom: 110px
  }

  .hero-2 .hero-content p {
    font-size: 18px
  }

  .hero-2 .hero-content p {
    padding-left: 0;
    border: none
  }

  .hero-3 .hero-text-slider-2 {
    height: 400px
  }

  .hero-3 .hero-content {
    padding-top: 200px;
    padding-bottom: 100px
  }

  .hero-3 .hero-content h1 {
    font-size: 36px
  }

  .hero-4 .hero-content {
    text-align: center
  }

  .hero-4 .hero-content h1 {
    font-size: 32px;
    line-height: 1.3
  }

  .hero-4 .hero-content .hero-button {
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap
  }

  .hero-4.style-2 .hero-content {
    text-align: center;
    padding-top: 176px;
    padding-bottom: 100px
  }

  .hero-4.style-2 .hero-content h1 {
    font-size: 28px;
    line-height: 1.3
  }

  .hero-4.style-2 .hero-content .hero-button {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px
  }

  .hero-4.style-2 .hero-content .hero-button .video-box .video-btn {
    width: 50px;
    height: 50px;
    line-height: 50px
  }

  .hero-4.style-3 .hero-content .hero-button {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px
  }

  .hero-4.style-3 .hero-content .hero-button .video-box .video-btn {
    width: 50px;
    height: 50px;
    line-height: 50px
  }

  .video-items-2 .video-button {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 14px
  }

  .video-section-2 {
    padding-top: 80px;
    padding-bottom: 180px
  }

  .video-section {
    padding: 150px 0
  }

  .single-funfact-items .funfact-content p {
    padding-bottom: 30px
  }

  .achievement-wrapper .counter-area .counter-items .content h2 {
    font-size: 32px
  }

  .about-wrapper .section-header {
    padding-bottom: 50px
  }

  .about-wrapper .section-header .circle-box {
    display: none
  }

  .about-wrapper .section-header h2 {
    margin-left: 0
  }

  .about-wrapper .section-header h2 span {
    position: initial
  }

  .about-wrapper .about-image .counter-content {
    width: 170px;
    height: 130px
  }

  .about-wrapper .about-image .counter-content h2 {
    font-size: 42px
  }

  .about-wrapper-2 .about-growth-items .growth-box-number {
    padding: 40px 20px;
    margin-bottom: 30px
  }

  .about-company-wrapper .about-company-items {
    gap: 30px;
    justify-content: center
  }

  .about-company-wrapper .about-company-items:not(:last-child) {
    margin-bottom: 35px
  }

  .about-company-wrapper .about-company-items .company-title h2 {
    margin-bottom: 35px
  }

  .about-company-wrapper .about-company-items .company-items .company-content {
    text-align: center;
    margin: 30px auto
  }

  .about-company-wrapper .about-company-items .company-items .company-content h3 {
    margin-bottom: 10px
  }

  .about-wrapper-3 .about-image-items .exp-box {
    padding: 20px 20px 40px
  }

  .about-wrapper-3 .about-image-items .exp-box .icon-item {
    gap: 15px
  }

  .about-wrapper-3 .about-image-items .exp-box .icon-item .icon {
    font-size: 32px
  }

  .about-wrapper-3 .about-image-items .about-image-1 {
    height: 450px
  }

  .about-wrapper-3 .about-image-items .about-image-1 .about-image-2 {
    max-width: 200px
  }

  .about-wrapper-3 .about-content .about-list-items {
    margin-top: 20px
  }

  .about-wrapper-3 .about-content .pro-items {
    margin-top: 20px
  }

  .about-wrapper-3 .about-author {
    margin-top: 20px;
    flex-wrap: wrap
  }

  .about-wrapper-3.style-2 .about-image-items .about-image-1 .about-image-2 .video-box .video-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 16px
  }

  .about-wrapper-3.style-2 .about-content .list-area-2 {
    margin-top: 20px;
    gap: 20px
  }

  .single-service-wrapper {
    justify-content: center
  }

  .single-service-wrapper .service-box-items .icon {
    margin: 0 auto;
    width: 140px;
    height: 140px;
    line-height: 160px;
    font-size: 60px
  }

  .single-service-wrapper .service-box-items .content {
    margin-top: 20px
  }

  .service-card-items-2 {
    padding: 30px 20px
  }

  .sposors-wrapper .sponsor-right .sponsor-items {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: initial !important
  }

  .sposors-wrapper .sponsor-right .sponsor-items:not(:last-child) {
    margin-bottom: 50px
  }

  br {
    display: none
  }

  .nice-select {
    padding: 15px 20px
  }

  .single-team-items .team-image {
    height: 380px
  }

  .team-wrapper .single-team-style-2 .single-team-items .team-image {
    height: 400px
  }

  .team-wrapper-2 .team-image-inner .team-image {
    height: 400px
  }

  .choose-wrapper .choose-image .choose-image-1 {
    text-align: center;
    margin: 0 auto
  }

  .choose-wrapper .choose-image .choose-image-2 {
    text-align: center;
    margin: 0 auto
  }

  .choose-wrapper .choose-image .choose-image-3 {
    display: none
  }

  .choose-us-wrapper-2 .choose-us-content .icon-items {
    margin-top: 20px
  }

  .choose-us-wrapper-2 .choose-us-content .icon-items .content h5 {
    font-size: 18px
  }

  .choose-us-wrapper-2 .choose-image-items {
    margin-bottom: -10px
  }

  .choose-us-wrapper-2 .choose-image-items .video-box .video-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 16px
  }

  .choose-us-wrapper-2 .choose-image-items .choose-image-1 {
    height: 380px
  }

  .choose-us-wrapper-2 .choose-image-items .choose-image-2 {
    height: 380px
  }

  .choose-us-wrapper-3 .choose-image {
    height: 400px
  }

  .woocommerce-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px
  }

  .product-details-wrapper .single-tab .tab-content .review-items .admin-items {
    justify-content: center
  }

  .product-details-wrapper .single-tab .tab-content .review-items .admin-items .content::before {
    display: none
  }

  .product-details-wrapper .single-tab .tab-content .review-form .form-clt input {
    padding: 15px 20px
  }

  .product-details-wrapper .single-tab .tab-content .review-form .form-clt-big textarea {
    padding: 15px 20px
  }

  .checkout-single-wrapper .boxshado-single {
    padding: 14px
  }

  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px
  }

  .product-details-wrapper-2 .single-tab {
    padding-top: 50px
  }

  .product-details-wrapper-2 .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px
  }

  .product-details-wrapper-2 .single-tab .review-items .admin-items .content::before {
    display: none
  }

  .product-details-wrapper-2 .single-tab .review-form .form-clt input {
    padding: 15px 20px
  }

  .product-details-wrapper-2 .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px
  }

  .faq-wrapper .faq-image {
    height: 400px
  }

  .faq-wrapper .faq-content .faq-accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 16px;
    padding-bottom: 15px
  }

  .faq-wrapper.style-2 .faq-content {
    margin-right: 0
  }

  .faq-area .faq-accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 16px;
    padding-bottom: 15px
  }

  .main-sidebar .single-sidebar-widget {
    margin-bottom: 30px
  }

  .main-sidebar .single-sidebar-widget .download-service-doc a {
    font-size: 15px;
    padding: 18px 25px
  }

  .cta-content-items h2 .text {
    font-size: 28px
  }

  .cta-content-items h2 .text-2 {
    font-size: 28px
  }

  .cta-banner-wrapper form {
    width: 100%
  }

  .cta-join-wrapper {
    justify-content: center !important;
    gap: 20px
  }

  .cta-wrapper-2 {
    margin-bottom: 115px
  }

  .cta-wrapper-2 .section-title h2 {
    font-size: 22px
  }

  .counter-wrapper-2 {
    padding: 40px
  }

  .cta-img-box {
    top: 0
  }

  .cta-one-inner {
    padding-top: 50px;
    padding-bottom: 50px
  }

  .cta-one-inner .section-title h2 {
    font-size: 26px
  }

  .pricing-wrapper .package-list-items .price-header-img {
    padding: 20px 30px
  }

  .pricing-wrapper .package-list-items .price-header {
    padding: 20px 30px
  }

  .pricing-wrapper .package-list-items ul li {
    padding: 15px 20px
  }

  .pricing-wrapper .signle-pricing-items .price-header {
    padding: 20px 30px
  }

  .pricing-wrapper .signle-pricing-items .price-header h3 {
    font-size: 32px
  }

  .pricing-wrapper .signle-pricing-items .price-body li {
    padding: 15px 20px
  }

  .pricing-card-items {
    padding: 30px 20px
  }

  .pricing-card-items .icon {
    top: 20px;
    right: 20px
  }

  .pricing-card-items .pricing-header h2 {
    font-size: 28px
  }

  .pricing-card-items .pricing-header h3 {
    font-size: 18px
  }

  .pricing-card-items .pricing-header p {
    padding-bottom: 20px
  }

  .pricing-card-items ul {
    margin-top: 20px
  }

  .marquee-wrapper.style-2 {
    margin-bottom: -7px
  }

  .text-slider {
    font-size: 50px;
    height: 70px
  }

  .testimonial-bg .section-title h2 {
    font-size: 28px
  }

  .testimonial-bg .section-title h2 .text {
    font-size: 28px
  }

  .testimonial-bg .section-title h2 .text-2 {
    font-size: 28px
  }

  .testimonial-bg .testimonial-wrapper .testimonial-slide-content {
    height: 550px
  }

  .testimonial-bg .testimonial-wrapper .testimonial-slide-content .testimonial-content {
    padding: 40px
  }

  .testimonial-wrapper-4 .testimonial-items {
    padding: 30px
  }

  .testimonial-wrapper-4 .testimonial-items .client-info {
    margin-top: 10px
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content {
    margin: 10px auto
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content h3 {
    font-size: 15px;
    line-height: 160%
  }

  .testimonial-wrapper-4 .testimonial-items .testimonial-content .star {
    margin-top: 10px
  }

  .news-image .post-cat-item .post-title {
    font-size: 11px
  }

  .news-image .post-cat-item .post-title-2 {
    font-size: 11px
  }

  .single-news-style-2 .news-content {
    padding: 30px 25px
  }

  .single-news-style-3 .news-image .post-cat {
    left: 20px
  }

  .single-news-style-3 .news-image .news-content {
    padding: 0 20px;
    padding-bottom: 20px;
    bottom: 100px
  }

  .single-news-style-3 .news-image .news-content h4 {
    font-size: 17px
  }

  .single-news-style-3 .news-image .news-button {
    left: 20px;
    bottom: 40px
  }

  .single-news-style-3 .news-image {
    height: 400px
  }

  .single-news-items-3 .news-content {
    margin-left: 0
  }

  .portfolio-wrapper .portfolio-items .text-right {
    font-size: 100px;
    top: 10px
  }

  .portfolio-wrapper .portfolio-items .portfolio-content {
    margin-top: 110px
  }

  .work-cases-wrapper .work-cases-items .cases-image {
    height: 400px
  }

  .case-study-wrapper .case-study-items .case-study-image {
    height: 380px
  }

  .case-study-wrapper .case-study-items .case-study-image .icon {
    height: 70px;
    width: 70px;
    line-height: 80px
  }

  .case-study-wrapper .case-study-items .case-study-content ul {
    flex-wrap: wrap;
    gap: 20px
  }

  .case-study-wrapper-3 .case-study-single-items {
    justify-content: center
  }

  .work-details-wrapper .case-details-image .video-button .video-popup {
    width: 80px;
    height: 80px;
    line-height: 80px
  }

  .project-wrapper .project-items .project-image {
    height: 420px
  }

  .project-wrapper .project-items .project-content h5 {
    font-size: 18px
  }

  .contact-info-wrapper .contact-info-items {
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center
  }

  .contact-info-wrapper .contact-info-items .content {
    text-align: center
  }

  .contact-form-area .map-item .googpemap {
    height: 430px
  }

  .contact-form-items .form-clt span {
    margin-bottom: 5px
  }

  .contact-form-items .form-clt .icon {
    display: none
  }

  .contact-form-items .form-clt input {
    padding: 15px 20px
  }

  .contact-wrapper-2 .contact-box .contact-form-items .form-clt input,
  .contact-wrapper-2 .contact-box .contact-form-items .form-clt textarea {
    padding: 12px 20px
  }

  .contact-wrapper-2 .contact-box .contact-form-items .form-clt .nice-select {
    padding: 12px 20px
  }

  .contact-wrapper-2 .contact-box .contact-form-items textarea {
    padding: 12px 20px 90px !important
  }

  .footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input .icon {
    top: 12px
  }

  .footer-widgets-wrapper .single-footer-widget .footer-contact-items .contact-content .footer-input input {
    padding: 14px 20px 14px 40px
  }

  .social-icon-items .social-icon {
    gap: 15px
  }

  .footer-section .eonfik-text {
    margin-top: -10px
  }

  .footer-section .eonfik-text h2 {
    font-size: 90px
  }

  .footer-widgets-wrapper-2 .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
    width: 100px
  }

  .footer-bottom-2 .footer-bottom-wrapper-2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center
  }
/* 
  .dth-hero-section {
    padding: 60px 0
  } */

  .dth-hero-image {
    height: 300px;
    margin-bottom: 30px
  }

  .dth-hero-content h1 {
    font-size: 26px
  }

  .dth-hero-content p {
    font-size: 14px;
    margin-bottom: 25px
  }

  .dth-hero-button .theme-btn {
    padding: 16px 32px
  }
}

@media (max-width:500px) {
  .checkout-radio {
    padding: 10px
  }
}

@media (max-width:450px) {
  .offcanvas__info {
    width: 300px
  }

  .testimonial-bg .testimonial-wrapper .testimonial-slide-content {
    height: 650px
  }
}

@media (max-width:414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px
  }
}

@media print {
  .product-table-content {
    overflow: visible;
    margin: 20px 0;
    padding: 0
  }

  .product-specifications-table {
    box-shadow: none;
    border: 1px solid #999;
    min-width: auto
  }

  .product-specifications-table thead {
    background: #f0f0f0 !important;
    position: static
  }

  .product-specifications-table thead th {
    color: #000 !important;
    border: 1px solid #999
  }

  .product-specifications-table tbody td {
    border: 1px solid #999;
    white-space: normal
  }
}

@media (min-width:991px) {
  .news-area .main-sidebar {
    margin-left: 20px
  }
}

@media (min-width:992px) {
  .cta-icon {
    display: block
  }
}

@media (min-width:1025px) {
  .product-specifications-table tbody td {
    white-space: normal
  }
}

@media (min-width:1220px) {
  .team-wrapper {
    margin-right: calc(-50vw + 635px)
  }

  .faq-wrapper {
    margin-left: calc(-50vw + 635px)
  }

  .faq-wrapper.style-2 {
    margin-right: calc(-50vw + 635px);
    margin-left: initial
  }

  .testimonial-wrapper-2 {
    margin-left: calc(-50vw + 555px)
  }

  .portfolio-wrapper {
    margin-right: calc(-50vw + 555px)
  }

  .work-cases-wrapper {
    margin-right: calc(-50vw + 635px)
  }
}

@media (min-width:1400px) {
  .case-list-wrapper .row .col-lg-6 {}
}