* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none
}

:root {
  --text-font: "Figtree", serif;
  --title-font: "Red Rose", serif
}

body {
  font-size: 17px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 400;
  background: #fff;
  font-family: var(--text-font);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased
}

@media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0 15px
  }
}

.large-container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto
}

.container-fluid {
  padding: 0
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto
}

.small-container {
  max-width: 680px;
  margin: 0 auto
}

.boxed_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

a {
  font-family: var(--title-font);
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

a:hover {
  text-decoration: none;
  outline: none
}

input,
button,
select,
textarea {
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 17px;
  background: #fff0
}

::-webkit-input-placeholder {
  color: inherit
}

::-moz-input-placeholder {
  color: inherit
}

::-ms-input-placeholder {
  color: inherit
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0
}

input {
  transition: all 500ms ease
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease
}

p {
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0;
  transition: all 500ms ease
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  margin: 0;
  transition: all 500ms ease
}

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: var(--theme-color)
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255 255 255 / .3)
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
  animation-delay: 1.6s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
  animation-delay: 1.8s
}

.handle-preloader .loader-section {
  background-color: #fff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px)
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #fff
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #fff;
  border-top-color: rgb(255 255 255 / .3)
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg)
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg)
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg)
  }
}

@media screen and (max-width:767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em
  }
}

@media screen and (max-width:500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 30px;
    letter-spacing: 5px
  }
}

.centred {
  text-align: center
}

.pull-left {
  float: left
}

.pull-right {
  float: right
}

figure {
  margin: 0
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all
}

.row {
  --bs-gutter-x: 30px
}

.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  vertical-align: middle;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--title-font);
  background: var(--secondary-color);
  color: #fff;
  text-align: center;
  padding: 16px 26px;
  text-transform: uppercase;
  z-index: 1;
  gap: 10px;
  transition: all 500ms ease
}

.theme-btn:hover {
  color: #fff
}

.theme-btn i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px;
  transition: all 500ms ease
}

.theme-btn:hover i {
  color: #fff
}

.theme-btn::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: var(--theme-color);
  transition: all 500ms ease
}

.theme-btn:hover::before {
  width: 100%
}

.theme-btn.btn-two {
  background-color: #fff;
  color: var(--title-color)
}

.theme-btn.btn-two::before {
  background-color: var(--secondary-color)
}

.theme-btn.btn-two:hover {
  color: #fff
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px
}

.pagination-wrapper.centred .pagination {
  justify-content: center
}

.pagination li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  line-height: 26px;
  color: #a5aaaf;
  font-weight: 600;
  text-transform: uppercase
}

.pagination li a.current,
.pagination li a:hover {
  color: var(--theme-color)
}

.pagination li a span {
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  transition: all 500ms ease
}

.pagination li a:hover span {
  color: var(--theme-color)
}

.pagination li a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  top: 3px;
  color: var(--theme-color)
}

.pagination li:first-child a i {
  transform: rotate(180deg);
  top: -3px
}

.pagination li .bar {
  width: 25px;
  height: 1px;
  background-color: #e4e9ec
}

.pagination li:first-child {
  padding-right: 15px
}

.pagination li:last-child {
  padding-left: 15px
}

.sec-pad {
  padding: 113px 0 120px 0
}

.sec-pad-2 {
  padding: 120px 0 90px 0px !important
}

.mr-0 {
  margin: 0px !important
}

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgb(0 46 65 / .2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

.home_3 .scroll-to-top {
  box-shadow: inset 0 0 0 2px rgb(0 204 102 / .5)
}

.home_3 .scroll-to-top .scroll-top-inner path {
  stroke: rgb(0 204 102)
}

.home_3 .scroll-to-top::after {
  color: rgb(0 204 102)
}

.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.scroll-to-top::after {
  position: absolute;
  content: "\f12a";
  font-family: 'flaticon_metallic';
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

.scroll-to-top:hover::after {
  color: var(--theme-color)
}

.scroll-to-top:hover::before {
  opacity: 1
}

.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: #fff0;
  box-sizing: border-box;
  stroke: var(--theme-color);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px #fff0;
    box-shadow: 0 0 0 30px #fff0
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px #fff0;
    box-shadow: 0 0 0 30px #fff0
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0
  }
}

.sec-title {
  position: relative;
  display: block
}

.sec-title h6 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
  padding-left: 10px;
  margin-bottom: 16px
}

.sec-title h6::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 2px;
  height: 17px;
  left: 0;
  bottom: 0
}

.sec-title h2 {
  display: block;
  font-size: 50px;
  line-height: 58px
}

.sec-title h2 span {
  font-weight: 300;
  color: var(--theme-color)
}

.main-header {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  background-color: #fff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1
}

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  background: rgb(0 0 0 / .8);
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease
}

.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1
}

.search-popup .popup-inner {
  width: 100%;
  background: #fff;
  height: 100%
}

.search-popup .upper-box {
  position: relative;
  padding: 70px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99
}

.search-popup .upper-box .logo-box {
  max-width: 203px
}

.search-popup .overlay-layer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block
}

.search-popup .close-search {
  position: relative;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease
}

.search-popup .search-form {
  position: relative;
  width: 100%;
  padding: 100px 0 250px 0
}

.search-popup .search-form .form-group {
  position: relative;
  margin: 0
}

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 90px;
  padding: 20px 0;
  background: #fff;
  line-height: 30px;
  font-size: 20px;
  color: gray;
  font-family: 'Poppins', sans-serif;
  border: none;
  font-weight: 400;
  border-radius: 0;
  padding-right: 50px;
  border-bottom: 1px solid #e5e5e5
}

.search-popup .search-form fieldset button[type="submit"] {
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 25px;
  color: #141417;
  cursor: pointer;
  transition: all 500ms ease
}

.search-popup .search-form fieldset input[type="search"]:focus {
  border-color: #141417
}

.search-popup .form-control:focus {
  box-shadow: none !important
}

.nice-select {
  position: relative;
  padding-right: 22px
}

.nice-select:before {
  position: absolute;
  content: "\f102";
  font-family: 'flaticon_metallic';
  font-size: 20px;
  color: #a8a7a7;
  top: 0;
  right: 0
}

.nice-select .list {
  min-width: 100px;
  width: 100%;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / .1)
}

.nice-select .list li {
  color: var(--text-color) !important;
  display: block !important;
  margin: 0px !important
}

.main-header {
  position: relative;
  background-color: #fff
}

.main-header .outer-container {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #ebe9ef
}

.main-header .left-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px
}

.main-header .sidebar-toggler {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  background-color: #f0f4f8;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 500ms ease
}

.main-header .sidebar-toggler i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color)
}

.main-header .menu-right-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px
}

.main-header .theme-btn {
  padding: 18px 29px
}

.main-header .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.main-header .menu-right-content li.contact-link a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  gap: 10px
}

.main-header .menu-right-content li.contact-link a i {
  position: relative;
  display: inline-block;
  color: #a5aaaf;
  top: 2px;
  transition: all 500ms ease
}

.main-header .menu-right-content li.contact-link a:hover {
  color: var(--theme-color)
}

.main-header .language-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

.main-header .language-box .nice-select {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600
}

.main-header .language-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #a5aaaf;
  top: 2px
}

.main-header .menu-right-content .search-form {
  position: relative;
  display: block;
  width: 215px;
  padding-left: 30px;
  margin-left: 20px
}

.main-header .menu-right-content .search-form .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 0
}

.main-header .menu-right-content .search-form .form-group input[type='search'] {
  position: relative;
  display: block;
  width: 100%;
  height: 28px;
  font-size: 17px;
  line-height: 28px;
  color: #a5aaaf;
  padding-right: 30px
}

.main-header .menu-right-content .search-form .form-group button[type='submit'] {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 24px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 500ms ease
}

.main-header .menu-right-content .search-form .form-group input:focus+button,
.main-header .menu-right-content .search-form .form-group button:hover {
  color: var(--theme-color)
}

.main-header .bg-color {
  position: absolute;
  background-color: #f0f4f8;
  width: 447px;
  height: 100%;
  top: 0;
  right: 0;
  border-left: 1px solid #ebe9ef
}

.main-menu .navbar-collapse {
  padding: 0;
  display: block !important
}

.main-menu .navigation {
  margin: 0
}

.main-menu .navigation>li {
  position: relative;
  float: left;
  z-index: 2;
  margin: 0 18px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease
}

.main-menu .navigation>li:last-child {
  margin-right: 0px !important
}

.main-menu .navigation>li:first-child {
  margin-left: 0px !important
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: capitalize;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease
}

.main-menu .navigation>li.dropdown>a {
  padding-right: 17px
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a {
  color: var(--theme-color) !important
}

.main-menu .navigation>li.dropdown>a:before {
  position: absolute;
  font-family: flaticon_metallic;
  top: 16px;
  right: -4px;
  font-size: 22px;
  color: #a4a9ae;
  transition: all 500ms ease
}

.main-menu .navigation>li.current>a:before,
.main-menu .navigation>li:hover>a:before {
  color: var(--theme-color)
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 270px;
  margin-top: 15px;
  z-index: 100;
  display: none;
  background: #fff;
  opacity: 0;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1);
  visibility: hidden;
  border-radius: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%
}

.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>.megamenu li>a {
  position: relative;
  display: block;
  padding: 18px 30px;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  font-family: var(--title-font);
  color: var(--title-color);
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

.main-menu .navigation>li>ul>li>a {
  border-bottom: 1px solid #e4e9ec
}

.main-menu .navigation>li>.megamenu li>a {
  padding-left: 0
}

.main-menu .navigation>li>.megamenu h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>.megamenu li>a:hover {
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color)
}

.main-menu .navigation>li>ul>li:last-child>a,
.main-menu .navigation>li>.megamenu li:last-child>a {
  border-bottom: none
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  content: "\f102";
  font-family: flaticon_flexibank;
  position: absolute;
  right: 30px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  color: #a8a7a7;
  text-align: center;
  z-index: 5;
  transition: all 500ms ease
}

.main-menu .navigation>li>ul>li.dropdown>a:hover:after {
  color: #fff
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  margin-top: 30px;
  margin-left: 10px;
  background: #fff;
  width: 270px;
  box-shadow: 0 0 50px 0 rgb(0 0 0 / .1);
  z-index: 100;
  display: none;
  border-radius: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

.main-menu .navigation>li>ul>li>ul:before {
  position: absolute;
  content: '';
  background: #fff0;
  width: 40px;
  height: 100%;
  left: -40px;
  top: 0
}

.main-menu .navigation>li>ul>li>ul.from-right {
  left: auto;
  right: 0
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 14px 30px;
  line-height: 24px;
  font-weight: 400;
  font-size: 17px;
  text-transform: capitalize;
  font-family: var(--text-font);
  color: var(--text-color);
  border-bottom: 1px solid #e6e4e4;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
  border-bottom: none
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  color: #fff;
  background: var(--theme-color);
  border-color: var(--theme-color)
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5
}

.main-menu .navigation>li.dropdown:hover>ul,
.main-menu .navigation>li.dropdown:hover>.megamenu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  top: 100%
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-top: 15px
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--secondary-color);
  display: none
}

.mobile-menu .nav-logo img {
  max-width: 160px
}

.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
  margin-bottom: 0
}

.main-menu .navigation>li.dropdown>.megamenu {
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0
}

.main-menu .navigation li.dropdown .megamenu li h4 {
  margin-bottom: 10px
}

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease
}

.mobile-menu .navbar-collapse {
  display: block !important
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 50px 25px;
  text-align: left;
  padding-bottom: 100px
}

.mobile-menu-visible {
  overflow: hidden
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible
}

.mobile-menu .menu-backdrop {
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: .7;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--secondary-color);
  padding: 0 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%)
}

.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg)
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgb(255 255 255 / .1)
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgb(255 255 255 / .1)
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgb(255 255 255 / .1)
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease
}

.mobile-menu .navigation li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease
}

.mobile-menu .navigation li.current>a:before {
  height: 100%
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  background: rgb(255 255 255 / .1);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  color: #fff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
  display: none
}

.mobile-menu .social-links {
  position: relative;
  padding: 0 25px
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease
}

.mobile-menu .social-links li a:hover {
  color: var(--theme-color)
}

div#mCSB_1_container {
  top: 0px !important
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgb(255 255 255 / .8);
  margin-bottom: 3px
}

.mobile-menu .contact-info ul li a {
  color: rgb(255 255 255 / .8)
}

.mobile-menu .contact-info ul li a:hover {
  color: var(--theme-color)
}

.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important
}

.owl-carousel .owl-nav button span {
  font-family: 'flaticon_metallic'
}

.owl-nav button {
  background: #fff0
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear
}

@-webkit-keyframes bounceSlide {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px)
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
  }
}

@keyframes bounceSlide {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px)
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
  }
}

.bounce-slide {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounceSlide;
  animation-name: bounceSlide
}

.tabs-box .tab {
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease
}

.tabs-box .tab.active-tab {
  display: block
}

.tabs-box .tab {
  transform: scale(.9, .9) translateY(0)
}

.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0)
}

.accordion-box .block .acc-content,
.accordion-inner .block .acc-content {
  position: relative;
  display: none
}

.accordion-box .block .acc-content.current,
.accordion-inner .block .acc-content.current {
  display: block
}

.sidebar-popup {
  position: fixed;
  left: -100%;
  top: 91px;
  width: 425px;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: #f0f4f8;
  transition: all 0.5s ease-in-out 0.1s
}

.sidebar-popup.popup-visible {
  left: 0;
  visibility: visible;
  opacity: 1
}

.sidebar-popup .popup-inner {
  position: relative;
  display: block;
  padding: 50px;
  padding-bottom: 120px;
  height: 100%;
  overflow-y: scroll
}

.sidebar-popup .close-popup {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 54px;
  font-size: 20px;
  color: var(--title-color);
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 500ms ease
}

.sidebar-popup .close-popup:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.check-box-one input {
  display: none
}

.check-box-one label {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  padding-left: 24px;
  display: inline-block;
  cursor: pointer
}

.check-box-one label:before {
  position: absolute;
  content: '';
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 1px;
  border-color: #cdd5dd;
  background: #fff0
}

.check-box-one label:after {
  position: absolute;
  content: '';
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--theme-color);
  opacity: 0;
  transition: all 500ms ease
}

.check-box-one input:checked+label:after {
  opacity: 1
}

.sidebar-popup .logo-box {
  position: relative;
  display: block;
  margin-bottom: 30px
}

.sidebar-popup .logo-box a {
  position: relative;
  display: inline-block
}

.sidebar-popup .form-inner {
  position: relative;
  display: block;
  padding-bottom: 45px;
  border-bottom: 3px solid #cdd5dd;
  margin-bottom: 54px
}

.sidebar-popup .form-inner::before {
  position: absolute;
  content: '';
  background-color: #cdd5dd;
  width: 70px;
  height: 1px;
  left: 0;
  bottom: -7px
}

.sidebar-popup .form-inner .form-group {
  position: relative;
  display: block;
  margin-bottom: 18px
}

.sidebar-popup .form-inner .form-group label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  margin-bottom: 8px
}

.sidebar-popup .form-inner .form-group label i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  top: 2px;
  color: var(--theme-color)
}

.sidebar-popup .form-inner .form-group input[type='email'],
.sidebar-popup .form-inner .form-group input[type='password'] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #dbdfe3;
  font-size: 17px;
  color: #a5aaaf;
  padding: 10px 20px
}

.sidebar-popup .form-inner .form-group input:focus {
  border-color: var(--theme-color)
}

.sidebar-popup .form-inner .forgot-password {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px
}

.sidebar-popup .form-inner .forgot-password button {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  color: #66696b;
  border-bottom: dashed;
  border-width: 1px;
  border-color: var(--theme-color);
  transition: all 500ms ease
}

.sidebar-popup .form-inner .forgot-password button:hover {
  color: var(--theme-color)
}

.sidebar-popup .form-inner .theme-btn {
  width: 100%
}

.sidebar-popup .form-inner .text-box p a {
  display: inline-block;
  color: var(--theme-color)
}

.sidebar-popup .form-inner .text-box p a:hover {
  text-decoration: underline
}

.sidebar-popup .inner-box {
  position: relative;
  display: block;
  background-color: var(--theme-color);
  padding: 40px;
  overflow: hidden;
  margin-bottom: 40px
}

.sidebar-popup .inner-box .icon-box {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--theme-color);
  margin-bottom: 18px
}

.sidebar-popup .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 24px
}

.sidebar-popup .inner-box h3 span {
  font-weight: 400
}

.sidebar-popup .copyright p a {
  display: inline-block;
  color: var(--text-color)
}

.sidebar-popup .copyright p a:hover {
  text-decoration: underline
}

.sidebar-popup .inner-box .light-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 170px;
  color: rgb(255 255 255 / .1)
}

.banner-top-section {
  position: relative
}

.banner-top-section .outer-container {
  position: relative;
  padding-left: 375px
}

.banner-top-section .inner-box {
  position: relative;
  display: block;
  padding: 102.5px 95px
}

.banner-top-section .inner-box h2 {
  position: relative;
  display: block;
  font-size: 120px;
  line-height: 110px;
  text-transform: uppercase;
  max-width: 1020px
}

.banner-top-section .inner-box h2 span {
  font-weight: 300;
  color: var(--theme-color)
}

.banner-top-section .based-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 375px;
  padding-right: 40px;
  border-right: 1px solid #ebe9ef
}

.banner-top-section .based-content .inner {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  padding: 50px 45px 46px 50px
}

.banner-top-section .based-content .inner .logo-box {
  position: relative;
  display: block;
  margin-bottom: 65px
}

.banner-top-section .based-content .inner .logo-box .logo {
  position: relative;
  display: block;
  margin-bottom: 45px
}

.banner-top-section .based-content .inner .logo-box h5 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  color: #a5aaaf;
  padding-right: 110px
}

.banner-top-section .based-content .inner .logo-box h5::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100px;
  height: 3px;
  right: 0;
  bottom: 11px
}

.banner-top-section .based-content .inner .logo-box h5::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 50px;
  height: 1px;
  right: 50px;
  bottom: 7px
}

.banner-top-section .based-content .inner .single-item {
  position: relative;
  display: block;
  padding-left: 100px
}

.banner-top-section .based-content .inner .single-item .shape {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 90px;
  height: 162px;
  background-repeat: no-repeat
}

.banner-top-section .based-content .inner .single-item h2 {
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  margin-bottom: 3px
}

.banner-top-section .based-content .inner .single-item h5 {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #a5aaaf
}

.banner-top-section .based-content .rotate-text {
  position: absolute;
  top: 0;
  right: 7px;
  writing-mode: vertical-lr;
  height: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-family: var(--title-font);
  color: #a5aaaf;
  font-weight: 600;
  transform: rotate(180deg)
}

.banner-top-section .inner-box .video-box {
  position: absolute;
  top: -10px;
  right: 220px;
  width: 168px;
  height: 136px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center
}

.banner-top-section .inner-box .video-box .video-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-10deg)
}

.banner-top-section .inner-box .video-box .bg-color {
  position: absolute;
  background-color: #f7d8cb;
  width: 100%;
  height: 100%;
  left: 12px;
  top: 10px;
  transform: rotate(-10deg)
}

.banner-top-section .inner-box .video-box a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 64px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  color: var(--secondary-color);
  z-index: 1
}

.banner-top-section .inner-box .video-box a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.banner-top-section .inner-box .content-box {
  position: relative;
  max-width: 1020px
}

.banner-top-section .inner-box p {
  position: absolute;
  top: 40px;
  right: 0
}

.banner-section {
  position: relative;
  overflow: hidden
}

.banner-section::before {
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: 1px;
  height: calc(100% - 200px);
  top: 0;
  right: 100px;
  z-index: 2
}

.banner-section .pattern-layer {
  position: absolute;
  top: 100px;
  right: 100px;
  width: 286px;
  height: 326px;
  background-repeat: no-repeat
}

.banner-section .pattern-layer-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 445px;
  height: calc(100% - 200px);
  background-repeat: no-repeat;
  z-index: 2
}

.banner-section .outer-container {
  position: relative
}

.banner-carousel .slide-item {
  position: relative;
  overflow: hidden
}

.banner-section .banner-carousel .slide-item {
  padding-bottom: 200px
}

.banner-section .banner-carousel .content-box {
  position: relative;
  float: right;
  background-color: #fff;
  max-width: 750px;
  padding: 24px 30px 100px 100px;
  width: 100%
}

.banner-section .banner-carousel .content-box .image-layer {
  position: absolute;
  left: -75px;
  bottom: 179px
}

.banner-section .banner-carousel .content-box .inner-box {
  position: relative;
  z-index: 5
}

.banner-carousel .slide-item .bg-layer {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear
}

.banner-carousel .active .slide-item .bg-layer {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25)
}

.banner-carousel .content-box h2 {
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 42px;
  text-transform: capitalize;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease
}

.banner-carousel .active .content-box h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms
}

.banner-section .banner-carousel .content-box h2 {
  padding-bottom: 30px
}

.banner-section .banner-carousel .content-box h2::before {
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 100px;
  height: 1px;
  left: 0;
  bottom: 0
}

.banner-carousel .content-box h2 span {
  font-weight: 300
}

.banner-carousel .content-box p {
  margin-bottom: 42px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease
}

.banner-section .banner-carousel .content-box p {
  max-width: 380px;
  padding-left: 100px
}

.banner-carousel .active .content-box p {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms
}

.banner-carousel .content-box .btn-box {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease
}

.banner-section .banner-carousel .content-box .btn-box {
  padding-left: 100px
}

.banner-carousel .active .content-box .btn-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms
}

.banner-section .banner-right-content {
  position: absolute;
  top: -70px;
  right: 0;
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  z-index: 2
}

.banner-section .banner-right-content .mail-box {
  position: relative;
  display: block;
  padding-bottom: 40px;
  margin-bottom: 40px;
  text-align: center
}

.banner-section .banner-right-content .mail-box::before {
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: 70px;
  height: 1px;
  left: -22px;
  bottom: 0
}

.banner-section .banner-right-content .mail-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #a5aaaf;
  writing-mode: vertical-lr;
  transform: rotate(180deg)
}

.banner-section .banner-right-content .mail-box a i {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  transform: rotate(180deg)
}

.banner-section .banner-right-content .social-links {
  position: relative;
  display: block;
  text-align: center
}

.banner-section .banner-right-content .social-links li {
  position: relative;
  display: block;
  margin-bottom: 25px
}

.banner-section .banner-right-content .social-links li:last-child {
  margin-bottom: 0
}

.banner-section .banner-right-content .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #afb3b8
}

.banner-section .banner-right-content .social-links li a:hover {
  color: var(--theme-color)
}

.banner-section .banner-right-content .social-links li h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #a5aaaf;
  writing-mode: vertical-lr;
  transform: rotate(180deg)
}

.banner-section .banner-carousel .owl-nav {
  position: absolute;
  right: 750px;
  bottom: 200px
}

.banner-section .banner-carousel .owl-nav button {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  background-color: var(--theme-color)
}

.banner-section .banner-carousel .owl-nav button.owl-prev {
  border-bottom: 1px solid #fe7a45
}

.banner-section .banner-right-content .mail-box a:hover {
  color: var(--theme-color)
}

.intro-section {
  position: relative
}

.intro-section .outer-container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto
}

.intro-block-one {
  position: relative;
  display: block;
  border: 1px solid #e4e9ec;
  margin-bottom: 30px
}

.intro-block-one .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.intro-block-one .inner-box .content-box {
  position: relative;
  display: block;
  min-width: 189px;
  border-right: 1px solid #e4e9ec;
  width: 189px;
  height: 100%
}

.intro-block-one .inner-box .content-box .icon-box {
  position: relative;
  display: inline-block;
  width: 188px;
  height: 180px;
  line-height: 180px;
  text-align: center;
  border-bottom: 1px solid #e4e9ec
}

.intro-block-one .inner-box .content-box .icon-box .icon {
  position: relative;
  transition: all .45s cubic-bezier(.25, .8, .25, 1)
}

.intro-block-one:hover .inner-box .content-box .icon-box .icon {
  opacity: 0
}

.intro-block-one .inner-box .content-box .icon-box .overlay-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  transition: all .45s cubic-bezier(.25, .8, .25, 1)
}

.intro-block-one:hover .inner-box .content-box .icon-box .overlay-icon {
  opacity: 1
}

.intro-block-one .inner-box .content-box .text-box {
  position: relative;
  display: block;
  background-color: #f0f4f8;
  padding: 24px 30px
}

.intro-block-one .inner-box .content-box .text-box h6 {
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase
}

.intro-block-one .inner-box .content-box .text-box h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 18px
}

.intro-block-one .inner-box .content-box .text-box p {
  color: #66696b
}

.intro-block-one .inner-box .image-box {
  position: relative;
  display: block;
  min-height: 358px
}

.intro-block-one .inner-box .image-box .image {
  position: relative;
  max-width: 381px
}

.intro-block-one .inner-box .image-box .image img {
  width: 100%
}

.intro-block-one .inner-box .image-box .rotate-text {
  position: absolute;
  left: -9px;
  top: 0;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 48px;
  line-height: 56px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(180deg);
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #e4e9ec
}

.intro-block-one .inner-box .image-box .bar-box .bar {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 1px dashed #dadada
}

.intro-block-one .inner-box .image-box .bar-box .bar-1 {
  left: 40px
}

.intro-block-one .inner-box .image-box .bar-box .bar-2 {
  left: 90px
}

.intro-block-one .inner-box .image-box .bar-box .bar-3 {
  left: 140px
}

.intro-block-one .inner-box .image-box .link-box {
  position: absolute;
  right: 20px;
  bottom: 20px
}

.intro-block-one .inner-box .image-box .link-box a {
  position: relative;
  display: inline-block;
  width: 82px;
  height: 56px;
  line-height: 62px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  background-color: var(--secondary-color);
  transform: scale(0, 0)
}

.intro-block-one:hover .inner-box .image-box .link-box a {
  transform: scale(1, 1)
}

.intro-block-one .inner-box .image-box .link-box a:hover {
  background-color: var(--theme-color)
}

.about-section {
  position: relative
}

.about-section .content-box {
  position: relative;
  display: block
}

.about-section .content-box .sec-title h2 {
  max-width: 500px
}

.about-section .content-box .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px
}

.about-section .content-box .inner-box .single-team {
  position: relative;
  display: block;
  width: 250px;
  min-width: 250px;
  background-color: var(--theme-color);
  padding: 25px 15px 15px 30px;
  overflow: hidden
}

.about-section .content-box .inner-box .single-team h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 161px
}

.about-section .content-box .inner-box .single-team .image-box {
  position: absolute;
  left: 0;
  bottom: 0
}

.about-section .content-box .inner-box .single-team .link a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 58px;
  background-color: #fff;
  text-align: center;
  font-size: 22px;
  color: #332d4f;
  z-index: 2
}

.about-section .content-box .inner-box .single-team .link a:hover {
  color: var(--theme-color)
}

.about-section .content-box .inner-box .single-team .rotate-text {
  position: absolute;
  top: 0;
  right: -9px;
  font-size: 48px;
  line-height: 50px;
  font-family: var(--title-font);
  font-weight: 600;
  writing-mode: vertical-lr;
  height: 100%;
  text-align: center;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255 255 255 / .1);
  text-transform: uppercase;
  transform: rotate(180deg)
}

.about-section .content-box .inner-box .text-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px
}

.about-section .content-box .inner-box .text-box p {
  margin-bottom: 30px
}

.about-section .content-box .inner-box .text-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase
}

.about-section .content-box .inner-box .text-box a:hover {
  color: var(--theme-color)
}

.about-section .content-box .inner-box .text-box a i {
  position: relative;
  display: inline-block;
  top: 2px;
  font-size: 22px;
  color: var(--theme-color)
}

.about-section .inner-content {
  position: relative;
  display: block
}

.about-section .inner-content .image-box {
  position: relative;
  margin-left: 100px
}

.about-section .inner-content .image-box .image {
  position: relative;
  display: block
}

.about-section .inner-content .image-box .image img {
  max-width: none;
  float: left
}

.about-section .inner-content .award-box {
  position: absolute;
  left: -100px;
  top: 118px;
  width: 200px;
  background-color: var(--secondary-color);
  text-align: center;
  padding: 30px 20px 22px 20px
}

.about-section .inner-content .award-box .icon-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.about-section .inner-content .award-box .icon-list li {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 58px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 26px;
  color: #332d4f;
  margin: 0 -5px
}

.about-section .inner-content .award-box .icon-list li:last-child {
  color: #fff;
  background-color: var(--theme-color)
}

.about-section .inner-content .award-box .icon-list li:first-child {
  z-index: 1
}

.about-section .inner-content .award-box h5 {
  font-size: 18px;
  line-height: 26px;
  color: #fff
}

.about-section .inner-content .image-box .image-content {
  position: absolute;
  left: 0;
  bottom: 118px;
  width: 320px;
  background-color: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 24px 30px;
  z-index: 2
}

.about-section .inner-content .image-box .image-content .text-box {
  position: relative;
  display: block;
  min-width: 160px;
  max-width: 160px;
  width: 100%
}

.about-section .inner-content .image-box .image-content .text-box::before {
  position: absolute;
  content: '';
  background-color: #dbdfe3;
  width: 1px;
  height: 97px;
  right: 0;
  top: 13px
}

.about-section .inner-content .image-box .image-content .text-box h2 {
  display: block;
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 2px
}

.about-section .inner-content .image-box .image-content .text-box h2 span {
  font-size: 30px
}

.about-section .inner-content .image-box .image-content .text-box h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #66696b
}

.about-section .inner-content .image-box .image-content .video-box {
  position: relative;
  display: block;
  padding-left: 53px
}

.about-section .inner-content .image-box .image-content .video-box h5 {
  position: absolute;
  left: 13px;
  top: 23px;
  font-size: 18px;
  line-height: 26px;
  writing-mode: vertical-lr;
  height: 100%;
  text-align: center;
  transform: rotate(180deg)
}

.about-section .inner-content .image-box .image-content .video-box a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 60px;
  background-color: #e2e7ed;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--title-color)
}

.about-section .inner-content .image-box .image-content .video-box a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.about-section .pattern-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 573px;
  height: 1217px;
  background-repeat: no-repeat
}

.service-section {
  position: relative
}

.service-section .sec-title {
  padding-left: 190px
}

.service-section .upper-box .count-box {
  position: relative;
  display: block
}

.service-section .upper-box .count-box h2 {
  font-size: 140px;
  line-height: 100px;
  font-weight: 400
}

.service-section .upper-box .count-box h2 span {
  font-size: 72px
}

.service-section .upper-box .count-box h5 {
  font-size: 18px;
  line-height: 26px;
  color: #66696b
}

.service-section .upper-box .count-box .shape {
  position: absolute;
  top: 20px;
  right: -160px;
  width: 90px;
  height: 124px;
  background-repeat: no-repeat
}

.service-section .inner-container {
  position: relative;
  background-color: #f0f4f8
}

.service-section .inner-container::before {
  position: absolute;
  content: '';
  background-color: #f0f4f8;
  width: 5000px;
  height: 100%;
  left: 0;
  top: 0
}

.service-section .upper-box {
  position: relative;
  padding: 106px 0 55px 50px
}

.service-section .lower-box {
  position: relative;
  margin-right: -375px;
  padding-right: 375px;
  border-top: 1px solid #dbdfe3
}

.service-section .lower-box .single-service-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 375px
}

.service-section .lower-box .single-service-box .inner-box {
  position: relative;
  display: block
}

.service-section .lower-box .single-service-box .inner-box .image {
  position: relative;
  display: block
}

.service-section .lower-box .single-service-box .inner-box .image img {
  width: 100%
}

.service-section .lower-box .single-service-box .lower-content {
  position: relative;
  padding: 9px 30px 44px 50px
}

.service-section .lower-box .single-service-box .lower-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px
}

.service-section .lower-box .single-service-box .lower-content p {
  margin-bottom: 21px
}

.service-section .lower-box .single-service-box .lower-content a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase
}

.service-section .lower-box .single-service-box .lower-content a:hover {
  color: var(--theme-color)
}

.service-section .lower-box .single-service-box .lower-content a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.service-block-one .inner-box {
  position: relative;
  display: block;
  padding: 50px 20px 50px 50px;
  border-right: 1px solid #dbdfe3
}

.service-block-one .inner-box .image-inner {
  position: relative;
  display: block;
  margin-bottom: 42px
}

.service-block-one .inner-box .image-inner .count-text {
  position: absolute;
  right: 22px;
  bottom: -18px;
  font-size: 100px;
  line-height: 100px;
  font-family: var(--title-font);
  color: #e2e7ed
}

.service-block-one .inner-box .image-inner .image-box {
  position: relative;
  display: block;
  width: 150px;
  height: 150px
}

.service-block-one .inner-box .image-inner .image-box .shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 150px;
  background-repeat: no-repeat
}

.service-block-one .inner-box .image-inner .image-box .image {
  position: relative;
  display: block;
  transition: all .3s cubic-bezier(.25, .8, .25, 1);
  transform: scaleX(0);
  transform-origin: left center
}

.service-block-one .inner-box:hover .image-inner .image-box .image {
  transform: scaleX(1)
}

.service-block-one .inner-box .image-inner .image-box .image img {
  width: 100%
}

.service-block-one .inner-box .image-inner .image-box .icon-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  line-height: 80px;
  background-color: #fff;
  text-align: center;
  font-size: 50px;
  color: var(--theme-color);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / .1);
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.service-block-one .inner-box:hover .image-inner .image-box .icon-box {
  color: #fff;
  background-color: var(--theme-color);
  box-shadow: none
}

.service-block-one .inner-box .lower-content {
  position: relative;
  display: block
}

.service-block-one .inner-box .lower-content .block-title {
  position: relative;
  display: block;
  padding-bottom: 16px;
  margin-bottom: 24px
}

.service-block-one .inner-box .lower-content h3 {
  font-size: 24px;
  line-height: 32px
}

.service-block-one .inner-box .lower-content h3 a {
  position: relative;
  display: inline-block;
  color: var(--title-color)
}

.service-block-one .inner-box .lower-content h3 a:hover {
  color: var(--theme-color)
}

.service-block-one .inner-box .lower-content .block-title .line-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: var(--theme-color)
}

.service-block-one .inner-box .lower-content .block-title .line-shape::before,
.service-block-one .inner-box .lower-content .block-title .line-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  bottom: -2px
}

.service-block-one .inner-box .lower-content .block-title .line-shape::before {
  left: 0
}

.service-block-one .inner-box .lower-content .block-title .line-shape::after {
  right: 0
}

.service-block-one .inner-box .lower-content p {
  margin-bottom: 33px
}

.service-block-one .inner-box .lower-content .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background-color: #e2e7ed;
  padding: 14px 30px
}

.service-block-one .inner-box .lower-content .btn-box a:hover {
  color: #fff;
  background-color: var(--secondary-color)
}

.service-block-one .inner-box .lower-content .btn-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--title-color);
  top: 3px;
  transition: all 500ms ease
}

.service-block-one .inner-box .lower-content .btn-box a:hover i {
  color: var(--theme-color)
}

.service-block-one .inner-box .lower-content .btn-box a span {
  position: relative;
  transform: scaleX(0);
  transform-origin: left center;
  display: none;
  transition: all 500ms ease
}

.service-block-one .inner-box .lower-content .btn-box a:hover span {
  transform: scaleX(1);
  display: block
}

.service-section .lower-box .owl-nav {
  position: absolute;
  left: -56px;
  bottom: 50px
}

.service-section .lower-box .owl-nav button {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background-color: #fff;
  text-align: center;
  font-size: 30px;
  color: #a5aaaf;
  transition: all 500ms ease
}

.service-section .lower-box .owl-nav button.owl-prev {
  border-bottom: 1px solid #ebe9ef
}

.service-section .lower-box .owl-nav button.owl-prev span {
  position: relative;
  display: inline-block;
  transform: rotate(180deg)
}

.service-section .lower-box .owl-nav button:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.service-section .bg-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 510px;
  background-repeat: no-repeat;
  background-position: left bottom
}

.tabs-box .tab {
  position: relative;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease
}

.tabs-box .tab.active-tab {
  display: block
}

.tabs-box .tab {
  transform: scale(1) translateY(0)
}

.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0)
}

.industries-section {
  position: relative;
  padding-top: 112px
}

.industries-section .sec-title a {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase
}

.industries-section .sec-title a:hover {
  color: var(--theme-color)
}

.industries-section .sec-title a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.industries-section .inner-container {
  position: relative;
  display: block;
  margin-left: -375px;
  padding-left: 375px
}

.industries-section .inner-container::before {
  position: absolute;
  content: '';
  background: #e4e9ec;
  width: 5000px;
  height: 1px;
  top: 0;
  right: 0
}

.industries-section .inner-container::after {
  position: absolute;
  content: '';
  background: #e4e9ec;
  width: 5000px;
  height: 1px;
  bottom: 0;
  right: 0
}

.industries-section .inner-container .single-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 375px
}

.industries-section .inner-container .single-box .inner-box {
  position: relative;
  display: block;
  padding: 40px 40px 34px 40px
}

.industries-section .inner-container .single-box .inner-box .image-box {
  position: relative;
  display: block
}

.industries-section .inner-container .single-box .inner-box .image-box img {
  width: 100%
}

.industries-section .inner-container .single-box .inner-box .lower-content {
  position: relative;
  display: block;
  padding-top: 28px
}

.industries-section .inner-container .single-box .inner-box .lower-content .shape {
  position: absolute;
  right: 0;
  top: 45px;
  width: 70px;
  height: 51px;
  background-repeat: no-repeat
}

.industries-section .inner-container .single-box .inner-box .lower-content h2 {
  display: block;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 5px
}

.industries-section .inner-container .single-box .inner-box .lower-content h2 span {
  font-weight: 300
}

.industries-section .inner-container .single-box .inner-box .lower-content h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #66696b;
  font-weight: 600
}

.industries-section .tab-btns .tab-btn {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  padding: 35.5px 30px;
  cursor: pointer;
  border-bottom: 1px solid #e4e9ec;
  border-left: 1px solid #e4e9ec;
  transition: all 500ms ease
}

.industries-section .tab-btns .tab-btn:last-child {
  border-bottom: none
}

.industries-section .tab-btns .tab-btn.active-btn {
  color: var(--theme-color)
}

.industries-section .tab-btn-box {
  position: relative;
  margin: 0 15px
}

.industries-section .tab-btn-box .btn-column {
  padding: 0
}

.industries-section .tabs-box .content-box {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  margin-left: -30px;
  padding: 42px 30px 50px 40px
}

.industries-section .tabs-box .content-box h6 {
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: var(--theme-color);
  text-transform: uppercase;
  margin-bottom: 2px
}

.industries-section .tabs-box .content-box h3 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px
}

.industries-section .tabs-box .content-box p {
  color: #a5aaaf;
  margin-bottom: 25px
}

.industries-section .tabs-box .content-box .list-item li {
  position: relative;
  display: block;
  color: #a5aaaf;
  padding-left: 30px;
  margin-bottom: 8px
}

.industries-section .tabs-box .content-box .list-item li:last-child {
  margin-bottom: 0
}

.industries-section .tabs-box .content-box .list-item li:before {
  position: absolute;
  content: "\f117";
  font-family: 'flaticon_metallic';
  left: 0;
  top: 0;
  font-size: 16px;
  color: var(--theme-color)
}

.industries-section .tabs-box .content-box .list-item li:last-child::before {
  display: none
}

.industries-section .tabs-box .content-box .list-item li a {
  color: #fff;
  display: inline-block
}

.industries-section .tabs-box .content-box .list-item li a:hover {
  color: var(--theme-color)
}

.industries-section .tabs-box .content-box .list-item {
  margin-bottom: 32px
}

.industries-section .tabs-box .content-box .link-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase
}

.industries-section .tabs-box .content-box .link-box a:hover {
  color: var(--theme-color)
}

.industries-section .tabs-box .content-box .link-box a i {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 50px;
  line-height: 60px;
  font-size: 22px;
  color: #fff;
  background-color: #243d53;
  text-align: center;
  transition: all 500ms ease
}

.industries-section .tabs-box .content-box .link-box a:hover i {
  background-color: var(--theme-color)
}

.theme-btn.btn-three {
  background-color: var(--theme-color)
}

.theme-btn.btn-three i {
  color: #fff
}

.industries-section .lower-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f4f8;
  padding: 43px 0
}

.industries-section .lower-box::before {
  position: absolute;
  content: '';
  background-color: #f0f4f8;
  width: 5000px;
  height: 100%;
  top: 0;
  right: 0
}

.industries-section .lower-box .text-box {
  position: relative;
  display: block;
  padding-left: 25px
}

.industries-section .lower-box .text-box::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 2px;
  height: calc(100% - 14px);
  left: 0;
  top: 7px
}

.industries-section .lower-box .text-box h2 {
  display: block;
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
  color: var(--theme-color)
}

.industries-section .lower-box .text-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px
}

.industries-section .lower-box .right-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px
}

.industries-section .lower-box .right-column .link-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase
}

.industries-section .lower-box .right-column .link-box a:hover {
  color: var(--theme-color)
}

.industries-section .lower-box .right-column .link-box a i {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 58px;
  background-color: #e2e7ed;
  text-align: center;
  border-radius: 50%;
  font-size: 22px;
  color: var(--theme-color)
}

.industries-section {
  max-width: 1920px;
  margin: 0 auto
}

.industries-section .bg-layer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 450px;
  height: 660px;
  background-repeat: no-repeat;
  background-position: left bottom
}

.industries-section::before {
  position: absolute;
  content: '';
  background-color: #f0f4f8;
  width: 450px;
  height: 410px;
  right: 0;
  bottom: 0
}

.project-section {
  position: relative;
  padding: 112px 30px 110px 0
}

.project-section .inner-container {
  position: relative;
  overflow-x: hidden;
  margin-right: -345px;
  padding-right: 345px
}

.project-section .sec-title {
  padding-left: 190px
}

.project-section .upper-box .count-box {
  position: relative;
  display: block
}

.project-section .upper-box .count-box h2 {
  font-size: 140px;
  line-height: 100px;
  font-weight: 400
}

.project-section .upper-box .count-box h2 span {
  font-size: 72px
}

.project-section .upper-box .count-box h5 {
  font-size: 18px;
  line-height: 26px;
  color: #66696b
}

.project-section .upper-box .count-box .shape {
  position: absolute;
  top: 20px;
  right: -160px;
  width: 90px;
  height: 124px;
  background-repeat: no-repeat
}

.project-tab .p-tab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden
}

.project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5
}

.project-tab .p-tabs-content {
  position: relative;
  display: block
}

.project-section .owl-carousel .owl-stage-outer {
  overflow: visible
}

.project-tab .p-tab.active-tab .project-block-one {
  opacity: 1;
  top: 0
}

.project-tab .p-tab .project-block-one {
  position: relative;
  opacity: 0;
  top: 10px;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease
}

.project-block-one .inner-box {
  position: relative;
  display: block;
  padding: 155px 30px 60px 0;
  width: 50%;
  transition: all 500ms ease
}

.active .project-block-one .inner-box {
  width: 100%
}

.project-block-one .inner-box .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 500ms ease
}

.active .project-block-one .inner-box .bg-layer {
  left: 70px;
  width: calc(100% - 70px)
}

.project-block-one .inner-box .category {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #f0f4f8;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
  padding: 19px 30px;
  z-index: 1;
  transition: all 500ms ease
}

.active .project-block-one .inner-box .category {
  color: var(--theme-color)
}

.project-block-one .inner-box .content-box {
  position: relative;
  display: block;
  background-color: var(--theme-color);
  max-width: 370px;
  padding: 32px 30px 40px 40px;
  opacity: 0;
  transition: all 500ms ease
}

.active .project-block-one .inner-box .content-box {
  opacity: 1
}

.project-block-one .inner-box .content-box h3 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 22px
}

.project-block-one .inner-box .content-box p {
  color: rgb(255 255 255 / .8);
  margin-bottom: 18px
}

.project-block-one .inner-box .content-box h6 {
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px
}

.project-block-one .inner-box .content-box .text {
  position: relative;
  display: block;
  color: rgb(255 255 255 / .8);
  margin-bottom: 34px
}

.project-block-one .inner-box .content-box a {
  position: relative;
  display: inline-block;
  width: 82px;
  height: 56px;
  line-height: 66px;
  background-color: #fff;
  text-align: center;
  font-size: 22px;
  color: var(--title-color)
}

.project-section .tab-btn-box {
  position: relative
}

.project-section .tab-btn-box .tab-btns li {
  position: relative;
  display: block;
  margin-bottom: 15px
}

.project-section .tab-btn-box .tab-btns li:last-child {
  margin-bottom: 0
}

.project-section .tab-btn-box .tab-btns li h6 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  color: #a5aaaf;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 500ms ease
}

.project-section .tab-btn-box .tab-btns li.active-btn h6 {
  padding-left: 22px;
  color: var(--theme-color)
}

.project-section .tab-btn-box .tab-btns li h6:before {
  position: absolute;
  content: "\f11a";
  font-family: 'flaticon_metallic';
  font-size: 16px;
  left: 0;
  top: 0;
  color: var(--theme-color);
  opacity: 0;
  transition: all 500ms ease
}

.project-section .tab-btn-box .tab-btns li.active-btn h6:before {
  opacity: 1
}

.project-section .pattern-layer .pattern-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 882px;
  height: 775px;
  background-repeat: no-repeat
}

.project-section .pattern-layer .pattern-2 {
  position: absolute;
  left: 160px;
  bottom: 305px;
  width: 220px;
  height: 156px;
  background-repeat: no-repeat
}

.nav-style-one button {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color);
  cursor: pointer
}

.nav-style-one button.owl-prev span {
  position: relative;
  display: inline-block;
  transform: rotate(180deg)
}

.nav-style-one button.owl-prev {
  padding-right: 44px;
  margin-right: 15px
}

.nav-style-one button.owl-prev::before {
  position: absolute;
  content: 'prev';
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
  top: 3px;
  right: 0
}

.nav-style-one button.owl-next {
  padding-left: 44px;
  margin-left: 15px
}

.nav-style-one button.owl-next::before {
  position: absolute;
  content: 'next';
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
  top: 3px;
  left: 0
}

.nav-style-one button.owl-prev::after {
  position: absolute;
  content: '';
  background-color: #e6e9ed;
  width: 1px;
  height: 30px;
  top: 0;
  right: -15px
}

.project-section .nav-style-one .owl-nav {
  position: absolute;
  left: -204px;
  bottom: 24px
}

.project-section .project-tab .owl-dots {
  position: absolute;
  left: -158px;
  bottom: 77px;
  counter-reset: slides-num;
  min-height: 30px;
  min-width: 51px
}

.project-section .project-tab .owl-dots::after {
  position: absolute;
  right: -30px;
  top: 17px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 18px;
  color: #a5aaaf;
  font-weight: 600;
  font-family: var(--title-font)
}

.project-section .project-tab .owl-dots:before {
  position: absolute;
  content: '';
  right: 0;
  top: 30px;
  width: 5px;
  height: 2px;
  background: #a5aaaf;
  transform: rotate(15deg)
}

.project-section .project-tab .owl-dots button span {
  display: none !important
}

.project-section .project-tab .owl-dots button {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: slides-num;
  font-size: 72px;
  line-height: 30px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600
}

.project-section .project-tab .owl-dots button.active:before {
  position: absolute;
  content: counter(slides-num)
}

.project-section .project-tab .owl-dots button.active:after {
  position: absolute;
  content: '0';
  top: 0;
  right: 0
}

.sec-title.light h2 {
  color: #fff
}

.sec-title.light p {
  color: rgb(255 255 255 / .5)
}

.working-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--secondary-color)
}

.working-section .left-content {
  position: relative;
  display: block
}

.working-section .left-content .inner-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-left: 40px
}

.working-section .left-content .inner-box h4 {
  position: absolute;
  left: -6px;
  top: 5px;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  writing-mode: vertical-lr;
  transform: rotate(180deg)
}

.working-section .left-content .inner-box h2 {
  font-size: 400px;
  line-height: 240px;
  font-weight: 400;
  background-image: url(../images/icons/text-bg.png);
  color: #fff0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  z-index: 1
}

.working-section .left-content .inner-box .single-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: #243d53;
  border-radius: 50%;
  text-align: center;
  padding: 0 20px;
  margin-left: -40px
}

.working-section .left-content .inner-box .single-box a {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  margin-bottom: 6px
}

.working-section .left-content .inner-box .single-box a:hover {
  color: #fff
}

.working-section .left-content .inner-box .single-box h5 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff
}

.working-section .line-shape .line-1 {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #324c62;
  margin-left: -35px
}

.working-section .line-shape .line-2 {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #324c62;
  margin-left: 35px
}

.working-section .right-content {
  position: relative
}

.working-section .right-content .tab-btns {
  position: absolute;
  left: -50px;
  top: 0;
  height: 100%;
  z-index: 2
}

.working-section .right-content .tab-btns li {
  position: absolute;
  display: inline-block;
  width: 70px;
  height: 103px;
  line-height: 103px;
  text-align: center;
  font-size: 20px;
  font-family: var(--title-font);
  color: #a5aaaf;
  background-color: #324c62;
  left: 0;
  cursor: pointer;
  clip-path: polygon(0% 30%, 100% 0%, 100% 70%, 0% 100%, 0% 0%);
  transition: all 500ms ease
}

.working-section .right-content .tab-btns li.active-btn {
  color: #fff;
  background-color: var(--theme-color)
}

.working-section .right-content .tab-btns li:first-child {
  top: 0
}

.working-section .right-content .tab-btns li:last-child {
  bottom: 0
}

.working-section .right-content .content-box {
  position: relative;
  display: block
}

.working-section .right-content .content-box .rotate-text {
  position: absolute;
  left: -140px;
  top: 0;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 48px;
  line-height: 50px;
  font-family: var(--title-font);
  font-weight: 600;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #324c62;
  text-transform: uppercase;
  transform: rotate(180deg)
}

.working-section .right-content .content-box h2 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 8px
}

.working-section .right-content .content-box h6 {
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #a5aaaf;
  text-transform: uppercase
}

.working-section .right-content .content-box .image-box {
  position: relative;
  display: block;
  margin-bottom: 32px;
  margin-top: 32px
}

.working-section .right-content .content-box .image-box img {
  width: 100%
}

.working-section .right-content .content-box h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 18px
}

.working-section .right-content .content-box p {
  color: #a5aaaf;
  margin-bottom: 32px
}

.working-section .pattern-layer {
  position: absolute;
  left: 60px;
  bottom: 60px;
  width: 574px;
  height: 827px;
  background-repeat: no-repeat
}

.chooseus-section {
  position: relative;
  padding: 112px 0 70px 0
}

.chooseus-block-one {
  position: relative;
  max-width: 370px;
  width: 100%;
  margin: 0 auto
}

.chooseus-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 40px 20px 33px 40px;
  margin-bottom: 50px;
  z-index: 1
}

.chooseus-block-one .inner-box::before {
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 100%;
  height: 0%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 500ms ease
}

.chooseus-block-one .inner-box:hover::before {
  height: 100%
}

.chooseus-block-one .inner-box .block-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
  transition: all 500ms ease
}

.chooseus-block-one .inner-box:hover .block-shape {
  opacity: 0
}

.chooseus-block-one .inner-box .icon-box {
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
  margin-bottom: 29px
}

.chooseus-block-one .inner-box .icon-box .icon {
  position: relative;
  display: inline-block;
  font-size: 70px;
  line-height: 70px;
  color: var(--theme-color)
}

.chooseus-block-one .inner-box .icon-box .bar-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--theme-color)
}

.chooseus-block-one .inner-box .icon-box .bar-shape::before,
.chooseus-block-one .inner-box .icon-box .bar-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  bottom: -9px
}

.chooseus-block-one .inner-box .icon-box .bar-shape::before {
  left: 0
}

.chooseus-block-one .inner-box .icon-box .bar-shape::after {
  right: 0
}

.chooseus-block-one .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 14px
}

.chooseus-block-one .inner-box h3 a {
  display: inline-block;
  color: var(--title-color)
}

.chooseus-block-one .inner-box h3 a:hover {
  text-decoration: underline
}

.chooseus-block-one .inner-box:hover h3 a {
  color: #fff
}

.chooseus-block-one .inner-box p {
  margin-bottom: 28px;
  transition: all 500ms ease
}

.chooseus-block-one .inner-box:hover p {
  color: #a5aaaf
}

.chooseus-block-one .inner-box .link a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0
}

.chooseus-block-one .inner-box:hover .link a {
  opacity: 1
}

.chooseus-block-one .inner-box .link a:hover {
  color: var(--theme-color)
}

.chooseus-block-one .inner-box .link a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  top: 2px;
  color: var(--theme-color)
}

.chooseus-block-one .inner-box .light-icon {
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 200px;
  color: #e8edf3;
  transition: all 500ms ease
}

.chooseus-block-one .inner-box:hover .light-icon {
  color: rgb(255 255 255 / .05)
}

.testimonial-section {
  position: relative;
  background-color: var(--secondary-color)
}

.testimonial-section .right-content {
  position: relative;
  display: block;
  padding: 120px 0
}

.testimonial-section .left-content {
  position: relative;
  display: block
}

.testimonial-section .left-content .rating-box {
  position: absolute;
  left: 0;
  bottom: 280px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  width: 230px;
  padding: 15px 15px 15px 20px
}

.testimonial-section .left-content .rating-box h5 {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #f0f4f8;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--theme-color)
}

.testimonial-section .left-content .rating-box .rating {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #ffa534
}

.testimonial-section .left-content .rating-box h6 {
  display: block;
  font-size: 16px;
  line-height: 20px
}

.testimonial-section .left-content .shape {
  position: absolute;
  left: -100px;
  bottom: 115px;
  width: 312px;
  height: 512px;
  background-repeat: no-repeat
}

.testimonial-section .right-content .testimonial-content {
  position: relative;
  display: block
}

.testimonial-section .right-content .testimonial-content .icon-box {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 32px
}

.testimonial-section .right-content .testimonial-content h2 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 330px
}

.testimonial-section .right-content .testimonial-content p {
  color: #a5aaaf;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 22px
}

.testimonial-section .right-content .testimonial-content h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 2px
}

.testimonial-section .right-content .testimonial-content .designation {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme-color)
}

.testimonial-section .right-content .tab-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px
}

.testimonial-section .right-content .tab-btns li {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgb(255 255 255 / .3);
  background-color: var(--secondary-color);
  transition: all 500ms ease
}

.testimonial-section .right-content .tab-btns li img {
  width: 100%;
  border-radius: 50%;
  opacity: .15
}

.testimonial-section .right-content .tab-btns li.active-btn {
  border-color: var(--theme-color);
  border-width: 2px
}

.testimonial-section .right-content .tab-btns li.active-btn img {
  opacity: 1
}

.testimonial-section .left-content {
  margin-top: 60px
}

.testimonial-section .right-content::before {
  position: absolute;
  content: '';
  background-color: rgb(255 255 255 / .2);
  width: 1px;
  height: calc(100% - 240px);
  left: -100px;
  top: 120px;
  z-index: 1
}

.testimonial-section .pattern-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 1066px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat
}

.news-section {
  position: relative;
  padding: 112px 0 105px 0
}

.news-section .sec-title a {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase
}

.news-section .sec-title a:hover {
  color: var(--theme-color)
}

.news-section .sec-title a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.news-block-one .inner-box {
  position: relative;
  display: block;
  transition: all 500ms ease;
  margin-bottom: 30px
}

.news-block-one .inner-box .upper-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f4f8;
  padding: 40px
}

.news-block-one .inner-box .upper-content .info-box {
  position: relative;
  display: block;
  min-width: 160px
}

.news-block-one .inner-box .upper-content .info-box .post-date {
  position: relative;
  display: block;
  padding-bottom: 24px;
  margin-bottom: 44px
}

.news-block-one .inner-box .upper-content .info-box .post-date::before {
  position: absolute;
  content: '';
  background-color: #dbdfe3;
  width: 70px;
  height: 1px;
  left: 0;
  bottom: 0
}

.news-block-one .inner-box .upper-content .info-box .post-date h3 {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #e2e7ed;
  text-align: center;
  font-size: 24px;
  color: var(--title-color);
  margin-bottom: 7px
}

.news-block-one .inner-box .upper-content .info-box .author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px
}

.news-block-one .inner-box .upper-content .info-box .author-box .author-image {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 50%
}

.news-block-one .inner-box .upper-content .info-box .author-box .author-image img {
  width: 100%;
  border-radius: 50%
}

.news-block-one .inner-box .upper-content .image-box {
  position: relative;
  display: block
}

.news-block-one .inner-box .upper-content .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--secondary-color)
}

.news-block-one .inner-box .upper-content .image-box .image img {
  width: 100%;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.news-block-one .inner-box:hover .upper-content .image-box .image img {
  transform: scale(1.05);
  opacity: .1
}

.news-block-one .inner-box .upper-content .image-box .category {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  background-color: #e2e7ed;
  padding: 4px 10px;
  transition: all 500ms ease
}

.news-block-one .inner-box:hover .upper-content .image-box .category {
  color: #fff;
  background-color: var(--theme-color)
}

.news-block-one .inner-box .upper-content .image-box .zoom-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1
}

.news-block-one .inner-box .upper-content .image-box .zoom-btn a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: #f0f4f8;
  text-align: center;
  font-size: 20px;
  color: var(--title-color);
  opacity: 0
}

.news-block-one .inner-box:hover .upper-content .image-box .zoom-btn a {
  opacity: 1
}

.news-block-one .inner-box .upper-content .image-box .zoom-btn a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.news-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  background-color: #f0f4f8;
  padding: 22px 40px;
  border-top: 1px solid #dbdfe3;
  transition: all 500ms ease
}

.news-block-one .inner-box:hover .lower-content {
  background-color: #fff;
  border-color: #fff;
  padding-bottom: 65px;
  margin-bottom: -43px;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1)
}

.news-block-one .inner-box .lower-content h3 {
  display: block;
  font-size: 24px;
  line-height: 32px
}

.news-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: var(--title-color)
}

.news-block-one .inner-box .lower-content h3 a:hover {
  color: var(--theme-color)
}

.news-section .owl-carousel .owl-stage-outer {
  overflow: visible
}

.news-section .owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden
}

.news-section .owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible
}

.news-block-one .inner-box .lower-content .link-box {
  position: absolute;
  left: 40px;
  bottom: 22px
}

.news-block-one .inner-box .lower-content .link-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  opacity: 0
}

.news-block-one .inner-box:hover .lower-content .link-box a {
  opacity: 1
}

.news-block-one .inner-box .lower-content .link-box a:hover {
  color: var(--theme-color)
}

.news-block-one .inner-box .lower-content .link-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.news-section .owl-nav {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 33px
}

.nav-style-one button::before {
  transition: all 500ms ease
}

.nav-style-one button:hover::before {
  color: var(--theme-color) !important
}

.download-section {
  position: relative;
  background-color: var(--theme-color);
  padding: 27px 0
}

.download-section .bg-layer {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #fc682d
}

.download-section .single-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.download-section .single-item .text-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px
}

.download-section .single-item .text-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: rgb(255 255 255 / .8)
}

.download-section .single-item .text-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: rgb(255 255 255 / .3);
  width: 1px;
  height: 50px;
  top: -5px;
  right: -20px
}

.download-section .single-item .text-box h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 6px
}

.download-section .single-item .text-box h6 {
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase
}

.download-section .single-item button {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 54px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  color: var(--title-color);
  transition: all 500ms ease
}

.download-section .single-item button:hover {
  color: var(--theme-color)
}

.main-footer {
  position: relative;
  background-color: var(--secondary-color)
}

.main-footer .widget-section {
  position: relative;
  padding: 92px 0 100px 0;
  border-bottom: 1px solid #2c4458
}

.main-footer .widget-title {
  position: relative;
  display: block;
  margin-bottom: 21px
}

.main-footer .widget-title h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fff
}

.main-footer .contact-widget p {
  color: #a5aaaf;
  margin-bottom: 15px;
  max-width: 210px
}

.main-footer .contact-widget .phone a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 3px
}

.main-footer .contact-widget .phone a:hover {
  color: var(--theme-color)
}

.main-footer .contact-widget .email a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 28px;
  font-family: var(--text-font);
  color: #a5aaaf;
  margin-bottom: 12px
}

.main-footer .contact-widget .email a:hover {
  color: var(--theme-color)
}

.main-footer .contact-widget .map-link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  gap: 10px
}

.main-footer .contact-widget .map-link a:hover {
  color: var(--theme-color)
}

.main-footer .contact-widget .map-link a i {
  position: relative;
  display: inline-block;
  top: 2px;
  color: var(--theme-color)
}

.main-footer .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 9px
}

.main-footer .links-widget .links-list li:last-child {
  margin-bottom: 0
}

.main-footer .links-widget .links-list li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  line-height: 28px;
  font-family: var(--text-font);
  color: #a5aaaf;
  gap: 10px
}

.main-footer .links-widget .links-list li a:hover {
  color: var(--theme-color)
}

.main-footer .support-widget .list-item li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  line-height: 28px;
  color: #a5aaaf;
  margin-bottom: 9px
}

.main-footer .support-widget .list-item li:last-child {
  margin-bottom: 0
}

.main-footer .support-widget .list-item li i {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  top: 2px
}

.main-footer .support-widget .link-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px
}

.main-footer .support-widget .link-box .icon-box {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: #fff;
  text-align: center;
  font-size: 24px;
  color: var(--theme-color);
  border-radius: 50%
}

.main-footer .support-widget .link-box a {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  gap: 10px
}

.main-footer .support-widget .link-box a:hover {
  color: var(--theme-color)
}

.main-footer .support-widget .link-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 3px
}

.footer-bottom {
  position: relative;
  display: block
}

.footer-bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom .bottom-inner .left-column .social-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px
}

.footer-bottom .bottom-inner .left-column .social-links li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: #243d53;
  text-align: center;
  font-size: 18px;
  color: #fcfdfd
}

.footer-bottom .bottom-inner .left-column .social-links li a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.footer-bottom .bottom-inner .left-column p {
  color: #a5aaaf
}

.footer-bottom .bottom-inner .left-column p a {
  position: relative;
  font-size: 17px;
  line-height: 28px;
  font-family: var(--text-font);
  color: #a5aaaf;
  font-weight: 400
}

.footer-bottom .bottom-inner .left-column p a:hover {
  color: var(--theme-color)
}

.footer-bottom .bottom-inner .left-column {
  position: relative;
  padding-top: 59px;
  padding-bottom: 47px
}

.footer-bottom .bottom-inner .middle-column {
  position: relative;
  display: block;
  padding: 48px 49px 50px 49px;
  border-left: 1px solid #324c62;
  border-right: 1px solid #324c62;
  min-width: 570px
}

.footer-bottom .bottom-inner .middle-column .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px
}

.footer-bottom .bottom-inner .middle-column .inner-box .icon-list {
  position: relative;
  display: flex;
  align-items: center
}

.footer-bottom .bottom-inner .middle-column .inner-box .icon-list li {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  border: 2px solid var(--secondary-color);
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: -10px
}

.footer-bottom .bottom-inner .middle-column .inner-box .icon-list li:last-child {
  margin: 0
}

.footer-bottom .bottom-inner .middle-column .inner-box h5 {
  font-size: 18px;
  line-height: 26px;
  color: #fff
}

.footer-bottom .bottom-inner .middle-column .form-inner .form-group {
  position: relative;
  margin-bottom: 0
}

.footer-bottom .bottom-inner .middle-column .form-inner .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #fff;
  font-size: 17px;
  color: #a5aaaf;
  padding: 10px 160px 10px 30px
}

.footer-bottom .bottom-inner .middle-column .form-inner .form-group button[type='submit'] {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 60px;
  line-height: 60px;
  background-color: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 600
}

.footer-bottom .bottom-inner .middle-column .form-inner .form-group button i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 4px
}

.footer-bottom .bottom-inner .copyright p {
  color: #a5aaaf
}

.footer-bottom .bottom-inner .copyright p a {
  display: inline-block;
  font-family: var(--text-font);
  color: var(--theme-color)
}

.footer-bottom .bottom-inner .copyright p a:hover {
  color: #fff
}

.footer-bottom .bottom-inner .right-column {
  padding: 30px 0
}

.header-style-two {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%
}

.header-top {
  position: relative;
  background-color: var(--secondary-color);
  padding: 17px 355px 55px 335px
}

.header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header-top .top-inner .text-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

.header-top .top-inner .text-box p {
  color: #a9a5b8
}

.header-top .top-inner .text-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase
}

.header-top .top-inner .text-box a:hover {
  color: var(--theme-color)
}

.header-top .top-inner .text-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.header-top .top-inner .right-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 65px
}

.header-top .top-inner .right-column .social-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px
}

.header-top .top-inner .right-column .social-links::before {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: 25px;
  height: 1px;
  top: 10px;
  right: -45px
}

.header-top .top-inner .right-column .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #a8a4b7
}

.header-top .top-inner .right-column .social-links li a:hover {
  color: var(--theme-color)
}

.header-style-two .language-box .icon-box {
  color: #a9a5b8
}

.header-style-two .language-box .nice-select {
  color: #fff
}

.header-style-two .language-box .nice-select::before {
  color: #a9a5b8
}

.header-style-two .logo-box {
  position: absolute;
  left: 50px;
  top: 30px
}

.header-style-two .support-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 40px;
  top: 24px;
  right: 50px
}

.header-style-two .support-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--theme-color)
}

.header-style-two .support-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: 1px;
  height: 45px;
  top: -3px;
  right: -20px
}

.header-style-two .support-box h5 {
  display: block;
  font-size: 18px;
  line-height: 22px
}

.header-style-two .support-box h5 a {
  display: inline-block;
  color: #fff
}

.header-style-two .support-box h5 a:hover {
  color: var(--theme-color)
}

.header-style-two .support-box h6 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  color: #a9a5b8;
  text-transform: uppercase;
  border-bottom: dashed;
  border-width: 1px;
  border-color: var(--theme-color)
}

.header-style-two .header-lower {
  position: relative
}

.header-style-two .header-lower .outer-box {
  position: absolute;
  left: 0;
  top: -35px;
  right: 0;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto
}

.header-style-two .header-lower .outer-box .shape {
  position: absolute;
  left: -75px;
  top: 0;
  width: calc(100% + 150px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: center
}

.header-style-two .main-menu .navigation>li>a {
  padding-top: 22.5px;
  padding-bottom: 22.5px;
  color: #fff
}

.header-style-two .main-menu .navigation>li.dropdown>a:before {
  top: 22px
}

.main-header .menu-right-content .appointment-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
  padding-left: 30px;
  text-transform: uppercase
}

.main-header .menu-right-content .appointment-box a:hover {
  color: var(--theme-color)
}

.main-header .menu-right-content .appointment-box a i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color);
  top: 2px
}

.main-header .menu-right-content .search-toggler {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding-left: 30px;
  transition: all 500ms ease
}

.main-header .menu-right-content .search-toggler:hover {
  color: var(--theme-color)
}

.header-style-two .menu-right-content .search-toggler::before,
.header-style-two .menu-right-content .appointment-box a::before {
  position: absolute;
  content: '';
  background-color: #544c74;
  width: 1px;
  height: 40px;
  left: 0;
  top: -5px
}

.header-style-two .menu-right-content .appointment-box a::before {
  top: -7px
}

.header-style-two .sticky-header {
  background-color: var(--secondary-color)
}

.header-style-two .sticky-header .menu-right-content .appointment-box a::before {
  display: none
}

.banner-style-two {
  position: relative
}

.banner-style-two .slide-item {
  position: relative;
  padding: 280px 0 150px 0
}

.banner-style-two .slide-item::before {
  position: absolute;
  content: '';
  background-color: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: .4;
  z-index: 1
}

.banner-style-two .content-box {
  position: relative;
  max-width: 570px;
  z-index: 5
}

.banner-style-two .content-box h2 {
  display: block;
  font-size: 72px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 14px
}

.banner-style-two .content-box h2 span {
  font-weight: 300
}

.banner-style-two .content-box p {
  color: #f5f4f9;
  font-size: 20px;
  line-height: 30px;
  max-width: 380px;
  margin-bottom: 37px
}

.banner-style-two .content-box .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px
}

.banner-style-two .content-box .btn-box .theme-btn {
  border: 1px solid #fff;
  background-color: #fff0;
  padding: 15px 28px
}

.banner-style-two .content-box .btn-box .theme-btn:hover {
  border-color: var(--theme-color)
}

.banner-style-two .content-box .btn-box .schedule-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px
}

.banner-style-two .content-box .btn-box .schedule-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: var(--theme-color)
}

.banner-style-two .content-box .btn-box .schedule-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: rgb(255 255 255 / .3);
  width: 1px;
  height: 46px;
  top: -5px;
  right: -15px
}

.banner-style-two .content-box .btn-box .schedule-box h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #fff
}

.banner-style-two .owl-nav {
  position: absolute;
  right: 375px;
  bottom: 0;
  width: 290px;
  background-color: var(--theme-color);
  height: 56px;
  line-height: 56px
}

.banner-style-two .owl-nav button {
  position: absolute;
  display: inline-block;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  z-index: 1
}

.banner-style-two .owl-nav button.owl-prev {
  left: 20px;
  top: -1px;
  transform: rotate(-90deg)
}

.banner-style-two .owl-nav button.owl-next {
  right: 15px;
  top: -1px;
  transform: rotate(-90deg)
}

.banner-style-two .owl-dots {
  position: absolute;
  right: 375px;
  bottom: 0;
  width: 290px;
  height: 56px;
  line-height: 58px;
  text-align: center
}

.banner-style-two .owl-dots button span {
  display: none !important
}

.banner-style-two .owl-dots button {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  opacity: .5;
  margin: 0 27px
}

.banner-style-two .owl-dots button.active {
  opacity: 1
}

.banner-style-two .owl-dots button::before {
  content: '01'
}

.banner-style-two .owl-dots button:nth-child(2):before {
  content: '02'
}

.banner-style-two .owl-dots button:nth-child(3):before {
  content: '03'
}

.banner-style-two .owl-dots button:nth-child(4):before {
  content: '04'
}

.banner-style-two .owl-dots button:nth-child(5):before {
  content: '05'
}

.banner-style-two .owl-dots button:nth-child(6):before {
  content: '06'
}

.banner-style-two .owl-dots button::after {
  position: absolute;
  content: '';
  background-color: #5bd6bd;
  width: 25px;
  height: 1px;
  top: 12px;
  right: -38px
}

.banner-style-two .owl-dots button:last-child:after {
  display: none
}

.service-style-two {
  position: relative;
  padding: 112px 0 105px 0
}

.service-style-two .outer-container {
  position: relative;
  padding-right: 320px;
  padding-left: 30px
}

.service-block-two .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f5f4f9;
  margin-bottom: 30px
}

.service-block-two .inner-box .image-box {
  position: relative;
  display: block;
  padding: 40px;
  border-right: 1px solid #dddbe4
}

.service-block-two .inner-box .image-box .image {
  position: relative;
  min-width: 270px
}

.service-block-two .inner-box .image-box .image .shape-1,
.service-block-two .inner-box .image-box .image .shape-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.service-block-two .inner-box .image-box .image .shape-1::before {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 100px;
  height: 50px;
  left: 50%;
  margin-left: -50px;
  top: 0;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: all 500ms ease
}

.service-block-two .inner-box .image-box .image .shape-1::after {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 100px;
  height: 50px;
  left: 50%;
  margin-left: -50px;
  bottom: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transition: all 500ms ease
}

.service-block-two .inner-box:hover .image-box .image .shape-1::before,
.service-block-two .inner-box:hover .image-box .image .shape-1::after {
  width: 0;
  margin-left: 0
}

.service-block-two .inner-box .image-box .image .shape-2::before {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 50px;
  height: 100px;
  left: 0;
  top: 50%;
  margin-top: -50px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: all 500ms ease
}

.service-block-two .inner-box .image-box .image .shape-2::after {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 50px;
  height: 100px;
  right: 0;
  top: 50%;
  margin-top: -50px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  transition: all 500ms ease
}

.service-block-two .inner-box:hover .image-box .image .shape-2::before,
.service-block-two .inner-box:hover .image-box .image .shape-2::after {
  height: 0;
  margin-top: 0
}

.service-block-two .inner-box .image-box .icon-box {
  position: absolute;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 80px;
  background-color: #fff;
  text-align: center;
  right: 50px;
  bottom: 50px;
  font-size: 40px;
  color: var(--title-color);
  z-index: 2;
  transition: all 500ms ease
}

.service-block-two .inner-box:hover .image-box .icon-box {
  color: #fff;
  background-color: var(--theme-color)
}

.service-style-two .owl-carousel .owl-stage-outer {
  overflow: visible
}

.service-block-two .inner-box .content-box {
  position: relative;
  display: block;
  padding: 38px 20px 45px 40px;
  width: 100%
}

.service-block-two .inner-box .content-box .count-box {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 24px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600
}

.service-block-two .inner-box .content-box .count-box span {
  font-size: 18px;
  color: #a9a5b8
}

.service-block-two .inner-box .content-box h6 {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #a9a5b8;
  text-transform: uppercase;
  margin-bottom: 14px
}

.service-block-two .inner-box .content-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 0
}

.service-block-two .inner-box .content-box h2 {
  display: block;
  font-size: 30px;
  line-height: 38px
}

.service-block-two .inner-box .content-box h2 a {
  display: inline-block;
  color: var(--title-color)
}

.service-block-two .inner-box .content-box h2 a:hover {
  color: var(--theme-color)
}

.service-block-two .inner-box .content-box .block-title {
  position: relative;
  display: block;
  padding-bottom: 24px;
  margin-bottom: 24px
}

.service-block-two .inner-box .content-box .block-title .line-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: var(--theme-color)
}

.service-block-two .inner-box .content-box .block-title .line-shape::before,
.service-block-two .inner-box .content-box .block-title .line-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  bottom: -2px
}

.service-block-two .inner-box .content-box .block-title .line-shape::before {
  left: 0
}

.service-block-two .inner-box .content-box .block-title .line-shape::after {
  right: 0
}

.service-block-two .inner-box .content-box p {
  margin-bottom: 33px
}

.service-block-two .inner-box .content-box .link a {
  position: relative;
  display: inline-block;
  width: 82px;
  height: 56px;
  line-height: 64px;
  background-color: #eae8f0;
  text-align: center;
  font-size: 22px;
  color: var(--title-color)
}

.service-block-two .inner-box .content-box .link a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.service-block-two .inner-box .content-box .overlay-content {
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: #f5f4f9;
  padding: 38px 20px 45px 40px;
  z-index: 2;
  opacity: 0;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.service-block-two .inner-box:hover .content-box .overlay-content {
  top: 0;
  opacity: 1
}

.service-style-two .owl-nav {
  position: absolute;
  left: -10px;
  right: 0;
  bottom: -52px;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  text-align: left
}

.service-style-two .lower-box {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding-left: 175px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px
}

.service-style-two .lower-box .line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #ebe9ef
}

.service-style-two .lower-box .link a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2
}

.service-style-two .lower-box .link a:hover {
  color: var(--theme-color)
}

.service-style-two .lower-box .link a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.company-section {
  position: relative;
  padding-bottom: 575px
}

.company-section .bg-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 127px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.company-section .outer-container {
  position: relative;
  padding: 0 60px
}

.company-section .outer-box {
  position: relative;
  display: block;
  box-shadow: 0 0 30px 0 rgb(51 45 79 / .1)
}

.company-section .title-column {
  position: relative;
  float: left;
  width: 40%
}

.company-section .single-column {
  position: relative;
  float: left;
  width: 20%
}

.company-section .title-column .sec-title {
  background-color: var(--secondary-color);
  padding: 47px 40px 46px 60px
}

.company-section .single-column .inner-box {
  position: relative;
  display: block;
  background-color: #fff
}

.company-section .single-column .inner-box .static-content {
  position: relative;
  padding: 36px 20px 32px 40px;
  border-right: 1px solid #ebe9ef
}

.company-section .single-column:last-child .inner-box .static-content,
.company-section .single-column:last-child .inner-box .overlay-content {
  border-right: none
}

.company-section .single-column .inner-box h6 {
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #a9a5b8;
  font-weight: 600;
  text-transform: uppercase
}

.company-section .single-column .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 18px
}

.company-section .single-column .inner-box p {
  margin-bottom: 27px
}

.company-section .single-column .inner-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--theme-color)
}

.company-section .single-column .inner-box .overlay-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  padding: 47px 40px 20px 40px;
  border-right: 1px solid #ebe9ef;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 500ms ease
}

.company-section .single-column .inner-box:hover .overlay-content {
  opacity: 1;
  transform: scaleY(1)
}

.company-section .single-column .inner-box .overlay-content p {
  margin-bottom: 22px
}

.company-section .single-column .inner-box h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px
}

.company-section .single-column .inner-box .list-item li {
  position: relative;
  display: block;
  font-size: 17px;
  margin-bottom: 11px;
  padding-left: 25px
}

.company-section .single-column .inner-box .list-item li:last-child {
  margin-bottom: 0
}

.company-section .single-column .inner-box .list-item li:before {
  position: absolute;
  content: "\f131";
  font-family: 'flaticon_metallic';
  left: 0;
  top: 0;
  color: #a9a5b8;
  font-size: 20px
}

.company-section .single-column .inner-box .list-item {
  margin-bottom: 20px
}

.company-section .single-column .inner-box .link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
  margin-bottom: 34px
}

.company-section .single-column .inner-box .link a:hover {
  color: var(--theme-color)
}

.company-section .single-column .inner-box .link a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  top: 2px;
  color: var(--theme-color)
}

.company-section .single-column .inner-box .download-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #f5f4f9;
  padding: 18px 0;
  z-index: 1
}

.company-section .single-column .inner-box .download-box::before {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: calc(100% + 40px);
  height: 100%;
  left: -20px;
  top: 0
}

.company-section .single-column .inner-box .download-box button[type='button'] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.company-section .single-column .inner-box .download-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 40px
}

.company-section .single-column .inner-box .download-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: #dddbe4;
  width: 1px;
  height: 50px;
  top: -5px;
  right: -20px
}

.company-section .single-column .inner-box .download-box h4 {
  margin-bottom: 4px
}

.company-section .single-column .inner-box .download-box span {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #a9a5b8
}

.chooseus-style-two {
  position: relative;
  padding: 112px 0 75px 0
}

.chooseus-block-two .inner-box {
  position: relative;
  display: block;
  margin-bottom: 38px
}

.chooseus-block-two .inner-box .icon-box {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 90px;
  line-height: 100px;
  background-color: #f5f4f9;
  text-align: center;
  font-size: 40px;
  color: var(--title-color);
  margin-bottom: 22px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 50% 100%, 0 80%, 0 20%);
  transition: all 500ms ease
}

.chooseus-block-two .inner-box:hover .icon-box {
  color: #fff;
  background-color: var(--theme-color)
}

.chooseus-block-two .inner-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 9px;
  padding-left: 22px
}

.chooseus-block-two .inner-box h3 i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
  color: var(--theme-color)
}

.right-content .chooseus-block-two .inner-box h3 {
  padding-left: 0;
  padding-right: 22px
}

.right-content .chooseus-block-two .inner-box h3 i {
  left: inherit;
  right: 0
}

.chooseus-style-two .image-box {
  position: relative;
  display: block
}

.chooseus-style-two .image-box .image {
  position: relative;
  display: block;
  border-radius: 50%
}

.chooseus-style-two .image-box .image img {
  width: 100%;
  border-radius: 50%
}

.chooseus-style-two .image-box .image-shape {
  position: absolute;
  left: -70px;
  top: -70px;
  width: 510px;
  height: 510px;
  background-repeat: no-repeat
}

.header-style-two .sticky-header {
  border-bottom: 1px solid rgb(255 255 255 / .1)
}

.industries-style-two {
  position: relative;
  padding-top: 112px;
  background-color: var(--secondary-color)
}

.industries-style-two .sec-title a {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase
}

.industries-style-two .sec-title a:hover {
  color: var(--theme-color)
}

.industries-style-two .sec-title a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.industries-style-two .industries-block-one {
  float: left;
  width: 25%
}

.industries-block-one .inner-box {
  position: relative;
  display: block;
  border-right: 1px solid #4a4467
}

.industries-block-one:last-child .inner-box {
  border-right: none
}

.industries-block-one .inner-box .upper-box {
  position: relative;
  display: block;
  padding: 42px 40px 43px 40px;
  border-top: 1px solid #4a4467;
  border-bottom: 1px solid #4a4467
}

.industries-block-one .inner-box .upper-box h2 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 3px
}

.industries-block-one .inner-box .upper-box h2 a {
  display: inline-block;
  color: #fff;
  border-bottom: 1px dashed #fff0
}

.industries-block-one .inner-box .upper-box h2 a:hover {
  border-color: var(--theme-color)
}

.industries-block-one .inner-box .upper-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 42px
}

.industries-block-one .inner-box .upper-box .image-box {
  position: relative;
  display: block;
  margin-bottom: 43px
}

.industries-block-one .inner-box .upper-box .image-box img {
  width: 100%
}

.industries-block-one .inner-box .upper-box p {
  color: #a9a5b8
}

.industries-block-one .inner-box .lower-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px
}

.industries-block-one .inner-box .lower-box .link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase
}

.industries-block-one .inner-box .lower-box .link a:hover {
  color: var(--theme-color)
}

.industries-block-one .inner-box .lower-box .link a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.industries-block-one .inner-box .lower-box .icon-box {
  position: relative;
  display: inline-block;
  width: 79px;
  height: 79px;
  line-height: 85px;
  text-align: center;
  border-left: 1px solid #4a4467;
  font-size: 40px;
  color: var(--theme-color)
}

.pricing-section {
  position: relative;
  background-color: #f5f4f9;
  padding: 112px 0 120px 0
}

.pricing-section .inner-container {
  position: relative;
  padding: 49px;
  border: 1px solid #dddbe4
}

.pricing-section .tabs-box {
  position: relative
}

.pricing-section .tabs-box .tab-btns {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 10px
}

.pricing-section .title-box {
  position: relative;
  display: block;
  padding: 111px 0 0 0
}

.pricing-section .tabs-box .tab-btns li {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  background-color: #eae8f0;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b6a6f;
  padding: 43px 27px 13px 27px;
  cursor: pointer;
  z-index: 2;
  transition: all 500ms ease
}

.pricing-section .tabs-box .tab-btns li.active-btn {
  color: var(--title-color)
}

.pricing-section .tabs-box .tab-btns li:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #ccc9d4;
  border-radius: 50%;
  left: 50%;
  margin-left: -10px;
  top: 20px
}

.pricing-section .tabs-box .tab-btns li.active-btn:before {
  border-color: var(--theme-color)
}

.pricing-section .tabs-box .tab-btns li:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--theme-color);
  border-radius: 50%;
  left: 50%;
  margin-left: -5px;
  top: 25px;
  opacity: 0
}

.pricing-section .tabs-box .tab-btns li.active-btn:after {
  opacity: 1
}

.pricing-section .title-box .title-text {
  position: relative;
  display: block;
  padding-bottom: 22px;
  margin-bottom: 35px
}

.pricing-section .title-box .title-text .title-shape {
  position: absolute;
  background-color: var(--theme-color);
  width: 70px;
  height: 1px;
  left: 0;
  bottom: 0
}

.pricing-section .title-box .title-text .title-shape::before,
.pricing-section .title-box .title-text .title-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  top: -10px
}

.pricing-section .title-box .title-text .title-shape::before {
  left: 0
}

.pricing-section .title-box .title-text .title-shape::after {
  right: 0
}

.pricing-section .title-box .title-text h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px
}

.pricing-section .title-box p {
  margin-bottom: 33px
}

.pricing-section .title-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  border: 1px solid var(--theme-color);
  padding: 18px 30px;
  text-align: center;
  margin-bottom: 10px
}

.pricing-section .title-box .theme-btn {
  width: 100%;
  margin-bottom: 22px
}

.pricing-section .title-box .link-text a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 24px;
  font-family: var(--text-font);
  color: var(--title-color);
  border-bottom: 1px dashed var(--theme-color)
}

.pricing-section .title-box .link-text a:hover {
  color: var(--theme-color)
}

.pricing-section .title-box {
  padding-right: 35px
}

.pricing-section .feature-box {
  position: relative;
  display: block;
  padding-left: 35px;
  margin-top: -7px
}

.pricing-section .feature-box::before {
  position: absolute;
  content: '';
  background-color: #dddbe4;
  width: 1px;
  height: calc(100% - 8px);
  left: -15px;
  top: 7px
}

.pricing-section .feature-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px
}

.pricing-section .feature-box .dimensions-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #dddbe4
}

.pricing-section .feature-box .dimensions-list li:last-child {
  border-bottom: none
}

.pricing-section .feature-box .dimensions-list li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

.pricing-section .feature-box .dimensions-list li p i {
  position: relative;
  display: inline-block;
  top: 2px;
  color: var(--theme-color)
}

.pricing-section .feature-box .dimensions-list {
  margin-bottom: 7px
}

.pricing-section .feature-box .feature-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #dddbe4
}

.pricing-section .feature-box .feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.pricing-section .feature-box .feature-list li i {
  color: var(--theme-color)
}

.pricing-section .inner-box {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  margin-left: 20px;
  padding: 32px 40px 40px 40px
}

.pricing-section .inner-box h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 32px
}

.pricing-section .inner-box h2 span {
  font-weight: 300
}

.pricing-section .inner-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 24px
}

.pricing-section .inner-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: calc(50% - 45px);
  height: 1px;
  left: 0;
  top: 25px
}

.pricing-section .inner-box .icon-box::after {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: calc(50% - 45px);
  height: 1px;
  right: 0;
  top: 25px
}

.pricing-section .inner-box .icon-box .icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: #fff
}

.pricing-section .inner-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 7px
}

.pricing-section .inner-box h4 a {
  display: inline-block;
  color: #fff
}

.pricing-section .inner-box h4 a:hover,
.pricing-section .inner-box p a:hover {
  color: var(--theme-color)
}

.pricing-section .inner-box p a {
  display: inline-block;
  font-family: var(--text-font);
  color: #a9a5b8;
  margin-bottom: 32px
}

.pricing-section .inner-box .theme-btn {
  border: 1px solid #fff;
  background-color: #fff0;
  padding: 15px 28px;
  width: 100%
}

.pricing-section .inner-box .theme-btn:hover {
  border-color: var(--theme-color)
}

.process-section {
  position: relative;
  padding: 112px 0 90px 0
}

.process-section .content-box {
  position: relative;
  display: block
}

.process-section .content-box .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px
}

.process-section .content-box .inner-box .image-box {
  position: relative;
  display: block
}

.process-section .content-box .inner-box .image-box img {
  width: 100%
}

.process-section .content-box .inner-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 11px
}

.process-section .content-box .inner-box h6 {
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #6b6a6f;
  text-transform: uppercase;
  margin-bottom: 34px
}

.process-section .content-box .inner-box h6::before {
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-16.png);
  width: 33px;
  height: 62px;
  top: 34px;
  right: 30px;
  background-repeat: no-repeat
}

.process-section .content-box .inner-box a {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 64px;
  background-color: #f5f4f9;
  text-align: center;
  font-size: 26px;
  color: var(--title-color)
}

.process-section .content-box .inner-box a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.process-block-one .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px
}

.process-block-one .inner-box .image-box {
  position: relative;
  display: block;
  min-width: 270px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 120px
}

.process-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden
}

.process-block-one .inner-box .image-box .image img {
  width: 100%;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.process-block-one .inner-box:hover .image-box .image img {
  transform: scale(1.05)
}

.process-block-one .inner-box .image-box h2 {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 30px;
  color: #dddbe4
}

.process-block-one .inner-box .image-box .icon-box {
  position: absolute;
  display: inline-block;
  font-size: 60px;
  color: var(--title-color);
  left: 30px;
  bottom: 20px;
  transition: all 500ms ease
}

.process-block-one .inner-box:hover .image-box .icon-box {
  color: var(--theme-color)
}

.process-block-one .inner-box .image-box::before {
  position: absolute;
  content: '';
  width: calc(100% - 40px);
  height: 100%;
  left: 0;
  top: 0;
  border: 2px solid #ebe9ef;
  transition: all 500ms ease
}

.process-block-one .inner-box:hover .image-box::before {
  background-color: #f5f4f9;
  border-color: #f5f4f9
}

.process-block-one .inner-box .text-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px
}

.process-block-one .inner-box .text-box h3 a {
  display: inline-block;
  color: var(--title-color)
}

.process-block-one .inner-box .text-box h3 a:hover {
  color: var(--theme-color)
}

.funfact-section {
  position: relative;
  background-color: var(--secondary-color)
}

.funfact-block-one .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 65px 20px 72px 40px
}

.funfact-block-one .inner-box::before {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: 1px;
  height: 100%;
  top: 0;
  right: -15px
}

.funfact-block:last-child .funfact-block-one .inner-box::before {
  display: none
}

.funfact-block-one .inner-box .count-outer {
  position: relative;
  display: flex;
  font-size: 60px;
  line-height: 60px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600
}

.funfact-block-one .inner-box .count-outer .symble {
  font-weight: 300
}

.funfact-block-one .inner-box .count-outer .odometer-inside {
  display: flex
}

.funfact-block-one .inner-box .bar-shape {
  position: relative;
  width: 1px;
  height: 70px;
  background-color: var(--theme-color)
}

.funfact-block-one .inner-box .bar-shape::before,
.funfact-block-one .inner-box .bar-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 20px;
  height: 1px;
  right: -10px
}

.funfact-block-one .inner-box .bar-shape::before {
  top: 0
}

.funfact-block-one .inner-box .bar-shape::after {
  bottom: 0
}

.funfact-block-one .inner-box .inner {
  position: relative
}

.funfact-block-one .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff
}

.funfact-block-one .inner-box .icon-box {
  position: absolute;
  left: 0;
  bottom: -118px;
  width: 80px;
  height: 90px;
  line-height: 96px;
  font-size: 40px;
  color: var(--title-color);
  text-align: center;
  z-index: 1;
  transition: all 500ms ease
}

.funfact-block-one .inner-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 80px;
  height: 90px;
  left: 0;
  top: 0;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 50% 100%, 0 80%, 0 20%);
  z-index: -1;
  transition: all 500ms ease
}

.funfact-block-one .inner-box:hover .icon-box {
  color: #fff
}

.funfact-block-one .inner-box:hover .icon-box::before {
  background-color: var(--theme-color);
  transform: rotate(90deg)
}

.testimonial-style-two {
  position: relative;
  padding: 112px 0 110px 0
}

.testimonial-style-two .sec-title a {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase
}

.testimonial-style-two .sec-title a:hover {
  color: var(--theme-color)
}

.testimonial-style-two .sec-title a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.testimonial-style-two .owl-carousel .owl-stage-outer {
  overflow: visible
}

.testimonial-style-two .inner-container {
  position: relative
}

.testimonial-style-two .inner-container::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 5000px;
  height: 100%;
  top: 0;
  right: 100%;
  z-index: 2
}

.testimonial-block-one .inner-box {
  position: relative;
  display: block;
  background-color: #f5f4f9;
  padding: 50px 40px
}

.testimonial-block-one .inner-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--theme-color);
  margin-bottom: 34px
}

.testimonial-block-one .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 14px
}

.testimonial-block-one .inner-box p {
  margin-bottom: 32px
}

.testimonial-block-one .inner-box .author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px
}

.testimonial-block-one .inner-box .author-box .author-thumb {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px
}

.testimonial-block-one .inner-box .author-box .author-thumb img {
  width: 100%
}

.testimonial-block-one .inner-box .author-box .author-thumb::before {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 40px;
  height: 40px;
  left: 0;
  top: -1px;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%)
}

.testimonial-block-one .inner-box .author-box .author-thumb::after {
  position: absolute;
  content: '';
  background-color: #f5f4f9;
  width: 40px;
  height: 40px;
  right: 0;
  bottom: -1px;
  z-index: 1;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%)
}

.testimonial-block-one .inner-box .author-box h4 {
  display: block;
  font-size: 20px;
  line-height: 28px
}

.testimonial-block-one .inner-box .author-box .designation {
  position: relative;
  display: block;
  margin-bottom: 22px
}

.testimonial-block-one .inner-box .author-box .author-info {
  position: relative;
  margin-top: -8px
}

.testimonial-block-one .inner-box .author-box .rating-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #eae8f0;
  padding: 4px 15px;
  border-left: 2px solid var(--theme-color);
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  gap: 5px
}

.testimonial-block-one .inner-box .author-box .rating-box i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--theme-color)
}

.testimonial-block-one .inner-box .author-box .rating-box::before {
  position: absolute;
  content: '';
  background-color: #eae8f0;
  width: 15px;
  height: 100%;
  top: 0;
  right: -15px;
  clip-path: polygon(100% 0%, 0 50%, 100% 100%, 0 100%, 0 0)
}

.testimonial-style-two .owl-nav {
  position: relative;
  margin-top: 60px
}

.testimonial-style-two .owl-nav::before {
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: calc(100% - 255px);
  height: 1px;
  left: 176px;
  top: 13px
}

.testimonial-style-two .owl-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  counter-reset: slides-num;
  min-height: 30px;
  min-width: 51px
}

.testimonial-style-two .owl-dots::after {
  position: absolute;
  right: 0;
  top: 17px;
  content: "/0" counter(slides-num);
  display: inline-block;
  font-size: 18px;
  color: #a6a5ad;
  font-weight: 600;
  font-family: var(--title-font)
}

.testimonial-style-two .owl-dots button span {
  display: none !important
}

.testimonial-style-two .owl-dots button {
  position: absolute;
  top: 14px;
  left: 7px;
  counter-increment: slides-num;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600
}

.testimonial-style-two .owl-dots button.active:before {
  position: absolute;
  content: counter(slides-num)
}

.testimonial-style-two .owl-dots button.active:after {
  position: absolute;
  content: '0';
  top: 0;
  right: 0
}

.faq-section {
  position: relative;
  padding: 112px 0 90px 0;
  background-color: var(--secondary-color)
}

.faq-section .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .2
}

.accordion_style_one .accordion {
  position: relative;
  border: 1px solid #4a4467;
  margin-bottom: 30px
}

.accordion_style_one .accordion .acc-btn {
  position: relative;
  cursor: pointer;
  padding: 21px 70px 21px 30px
}

.accordion_style_one .accordion .acc-btn h4 {
  font-size: 20px;
  line-height: 28px;
  color: #fff
}

.accordion_style_one .accordion .acc-btn .icon-box {
  position: absolute;
  top: 26px;
  right: 29px;
  font-size: 20px;
  color: #a5a3ac;
  transition: all 500ms ease
}

.accordion_style_one .accordion .acc-btn.active .icon-box {
  transform: rotate(45deg);
  color: var(--theme-color)
}

.accordion_style_one .accordion .acc-content {
  position: relative;
  padding: 20px 30px;
  border-top: 1px solid #4a4467
}

.accordion_style_one .accordion .acc-btn.active {
  background-color: #3b3459
}

.accordion_style_one .accordion .acc-content p {
  color: #a5a3ac
}

.faq-section .form-inner {
  position: relative;
  background-color: #fff;
  padding: 40px
}

.faq-section .form-inner form {
  position: relative;
  margin: 0 5px
}

.faq-section .form-inner .single-column {
  padding: 0 10px
}

.faq-section .form-inner .form-group {
  position: relative;
  margin-bottom: 20px
}

.faq-section .form-inner .form-group .icon-box {
  position: absolute;
  left: 19px;
  top: 12px;
  z-index: 1
}

.faq-section .form-inner .form-group .select-box {
  min-height: 60px
}

.faq-section .form-inner .form-group input[type='text'],
.faq-section .form-inner .form-group input[type='email'],
.faq-section .form-inner .form-group textarea,
.faq-section .form-inner .form-group .nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #ebe9ef;
  font-size: 17px;
  color: var(--text-color);
  padding: 10px 20px 10px 50px;
  transition: all 500ms ease
}

.faq-section .form-inner .form-group input:focus,
.faq-section .form-inner .form-group textarea:focus {
  border-color: var(--theme-color)
}

.faq-section .form-inner .form-group textarea {
  height: 107px;
  resize: none
}

.faq-section .form-inner .form-group .nice-select::before {
  top: 15px;
  right: 20px
}

.news-style-two {
  position: relative;
  padding: 112px 0 90px 0
}

.news-style-two .sec-title a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  margin-top: 27px
}

.news-style-two .sec-title a:hover {
  color: var(--theme-color)
}

.news-style-two .sec-title a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.news-style-two .sec-title {
  border-bottom: 1px solid #ebe9ef
}

.news-style-two .content-box {
  position: relative;
  display: block
}

.news-style-two .content-box .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px
}

.news-style-two .content-box .inner-box .icon-list {
  position: relative;
  display: flex;
  align-items: center
}

.news-style-two .content-box .inner-box .icon-list li {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 42px;
  background-color: #f5f4f9;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  color: var(--title-color);
  margin-right: -10px
}

.news-style-two .content-box .inner-box .icon-list li:last-child {
  margin: 0
}

.news-style-two .content-box .inner-box h5 {
  display: block;
  font-size: 18px;
  line-height: 26px
}

.news-style-two .content-box .form-inner .form-group {
  position: relative;
  margin-bottom: 0
}

.news-style-two .content-box .form-inner .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #ebe9ef;
  font-size: 17px;
  color: #6b6a6f;
  padding: 10px 30px;
  margin-bottom: 10px;
  transition: all 500ms ease
}

.news-style-two .content-box .form-inner .form-group input:focus {
  border-color: var(--theme-color)
}

.news-block-two .inner-box {
  position: relative;
  display: block;
  margin-bottom: 30px
}

.news-block-two .inner-box .image-box {
  position: relative;
  display: block
}

.news-block-two .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--secondary-color)
}

.news-block-two .inner-box .image-box .image img {
  width: 100%;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.news-block-two .inner-box:hover .image-box .image img {
  transform: scale(1.1);
  opacity: .1
}

.news-block-two .inner-box .image-box .post-date {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  background-color: #fff;
  text-align: center;
  z-index: 1
}

.news-block-two .inner-box .image-box .post-date h2 {
  display: block;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  padding: 10px 0
}

.news-block-two .inner-box .image-box .post-date span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  background-color: var(--theme-color);
  padding: 4.5px 0
}

.news-block-two .inner-box .image-box .view-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.news-block-two .inner-box .image-box .view-btn a {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: #fff;
  transform: scale(0, 0)
}

.news-block-two .inner-box .image-box .view-btn a:hover {
  color: var(--theme-color)
}

.news-block-two .inner-box:hover .image-box .view-btn a {
  transform: scale(1, 1)
}

.news-block-two .inner-box .lower-content {
  position: relative;
  display: block;
  padding-top: 32px
}

.news-block-two .inner-box .lower-content .post-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 11px
}

.news-block-two .inner-box .lower-content .post-info li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--title-font);
  color: #6b6a6f
}

.news-block-two .inner-box .lower-content .post-info li a {
  display: inline-block;
  color: #6b6a6f
}

.news-block-two .inner-box .lower-content .post-info li a:hover {
  color: var(--theme-color)
}

.news-block-two .inner-box .lower-content .post-info li:before {
  position: absolute;
  content: "\f142";
  font-family: "flaticon_metallic";
  font-size: 8px;
  top: 0;
  right: -18px;
  color: var(--theme-color);
  transform: rotate(90deg)
}

.news-block-two .inner-box .lower-content .post-info li:last-child:before {
  display: none
}

.news-block-two .inner-box .lower-content h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 24px
}

.news-block-two .inner-box .lower-content h3 a {
  display: inline-block;
  color: var(--title-color)
}

.news-block-two .inner-box .lower-content h3 a:hover {
  color: var(--theme-color)
}

.news-block-two .inner-box .lower-content .link a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  background-color: #f5f4f9;
  border: 1px solid #f5f4f9;
  padding: 3px 10px
}

.news-block-two .inner-box .lower-content .link a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  background-color: #fff0
}

.clients-section {
  position: relative;
  padding: 112px 0 120px 0;
  background-color: #f5f4f9
}

.clients-section .inner-container {
  position: relative;
  display: block;
  border: 1px solid #dddbe4
}

.clients-section .clients-box .clients-logo {
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
  padding: 10px
}

.clients-section .clients-box .clients-logo .border-bottom {
  position: absolute;
  background-color: #dddbe4;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0
}

.clients-section .clients-box .clients-logo .border-right {
  position: absolute;
  background-color: #dddbe4;
  width: 1px;
  height: 100%;
  right: 0;
  top: 0
}

.clients-section .clients-box .clients-logo .border-left {
  position: absolute;
  background-color: #dddbe4;
  width: 1px;
  height: 100%;
  left: 0;
  top: 0
}

.clients-section .clients-box .clients-logo img {
  filter: grayscale(100%);
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.clients-section .clients-box .clients-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.1)
}

.clients-section .content-box {
  position: relative;
  display: block;
  margin: 0 -5px
}

.clients-section .content-box h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 22px
}

.clients-section .content-box h3 span {
  font-weight: 300
}

.clients-section .content-box .theme-btn {
  width: 100%
}

.footer-style-two {
  position: relative;
  background-color: var(--secondary-color)
}

.footer-style-two::before {
  position: absolute;
  content: '';
  background-color: #3b3459;
  width: calc(50% + 215px);
  height: 100%;
  top: 0;
  right: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 0%)
}

.footer-style-two .widget-section {
  padding: 110px 0 110px 0;
  border-bottom: 1px solid #544c74
}

.footer-style-two .logo-widget .phone a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #fff;
  font-family: var(--text-font);
  border-bottom: 1px dashed var(--theme-color);
  margin-bottom: 18px
}

.footer-style-two .logo-widget .phone a:hover {
  color: var(--theme-color)
}

.footer-style-two .logo-widget p {
  color: #a9a5b8;
  max-width: 290px;
  margin-bottom: 24px
}

.footer-style-two .logo-widget h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  max-width: 180px;
  margin-bottom: 12px
}

.footer-style-two .logo-widget .link a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-top: 27px
}

.footer-style-two .logo-widget .link a:hover {
  color: var(--theme-color)
}

.footer-style-two .logo-widget .link a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.footer-style-two .widget-title {
  margin-bottom: 22px
}

.footer-style-two .widget-title h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fff
}

.footer-style-two .links-widget .social-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px
}

.footer-style-two .links-widget .social-box .social-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-style-two .links-widget .social-box .social-links li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  border: 1px solid #544c74;
  text-align: center;
  font-size: 18px;
  color: #fdfdfd
}

.footer-style-two .links-widget .social-box .social-links li a:hover {
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color)
}

.footer-style-two .links-widget .social-box .download-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px
}

.footer-style-two .links-widget .social-box .download-box .icon-box {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 58px;
  background-color: #4a4269;
  text-align: center;
  font-size: 28px;
  color: #fefefe
}

.footer-style-two .links-widget .social-box .download-box h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff
}

.footer-style-two .links-widget .social-box .download-box button {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase
}

.footer-style-two .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 11px
}

.footer-style-two .links-widget .links-list li:last-child {
  margin-bottom: 0
}

.footer-style-two .links-widget .links-list li a {
  position: relative;
  display: inline-block;
  color: #a9a5b8;
  padding-right: 17px
}

.footer-style-two .links-widget .links-list li a:hover {
  color: var(--theme-color)
}

.footer-style-two .links-widget .links-list li a:before {
  position: absolute;
  content: "\f126";
  font-family: 'flaticon_metallic';
  font-size: 16px;
  top: 0;
  right: 0;
  color: var(--theme-color);
  opacity: 0;
  transition: all 500ms ease
}

.footer-style-two .links-widget .links-list li a:hover::before {
  opacity: 1
}

.footer-style-two .links-widget .links-list {
  position: relative;
  padding-left: 16px
}

.footer-style-two .links-widget .links-list::before {
  position: absolute;
  content: '';
  background-color: #544c74;
  width: 1px;
  height: calc(100% - 14px);
  left: 0;
  top: 7px
}

.footer-bottom .footer-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px
}

.footer-bottom .footer-nav li {
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #a9a5b8
}

.footer-bottom .footer-nav li a {
  position: relative;
  display: inline-block;
  color: #a9a5b8;
  font-family: var(--text-font)
}

.footer-bottom .footer-nav li a:hover {
  color: var(--theme-color)
}

.footer-style-two .footer-bottom {
  position: relative;
  padding: 21px 0
}

.footer-style-two .footer-bottom::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: calc(50% - 195px);
  height: 100%;
  left: 0;
  top: 0;
  clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 0% 100%, 0% 0%)
}

.footer-style-two .footer-bottom .copyright p {
  color: var(--text-color)
}

.footer-style-two .big-text {
  position: absolute;
  left: 50%;
  transform: translateY(-50%) rotate(196deg);
  top: 270px;
  writing-mode: vertical-lr;
  font-size: 100px;
  line-height: 80px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #443e61;
  height: 100%;
  text-align: center;
  margin-left: -250px
}

.footer-style-two .outer-container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto
}

.header-style-three {
  position: relative
}

.header-top-two {
  position: relative;
  width: 100%;
  background-color: #f3f5f9;
  padding: 20px 0
}

.header-top-two .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header-top-two .top-inner .right-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px
}

.header-top-two .top-inner .schedule-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 30px;
  border-right: 1px solid #dee1e7
}

.header-top-two .top-inner .schedule-box .icon-box {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 50px;
  background-color: var(--theme-color);
  text-align: center;
  font-size: 20px;
  color: #fff
}

.header-top-two .top-inner .schedule-box span {
  position: relative;
  display: block
}

.header-top-two .top-inner .schedule-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase
}

.header-top-two .top-inner .schedule-box a:hover {
  color: var(--theme-color)
}

.header-top-two .top-inner .schedule-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.header-top-two .top-inner .social-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px
}

.header-top-two .top-inner .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #a9adb4
}

.header-top-two .top-inner .social-links li a:hover {
  color: var(--theme-color)
}

.header-style-three .menu-right-content .search-toggler,
.header-style-three .menu-right-content .user-link a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #a8acb3;
  cursor: pointer;
  transition: all 500ms ease
}

.header-style-three .menu-right-content .user-link a:hover {
  color: var(--theme-color)
}

.header-style-three .menu-right-content .phone a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color);
  font-weight: 600
}

.header-style-three .menu-right-content .phone a:hover {
  color: var(--theme-color)
}

.header-style-three .menu-right-content .user-link {
  position: relative;
  padding-left: 35px
}

.header-style-three .menu-right-content .user-link::before {
  position: absolute;
  content: '';
  background-color: #e8eaef;
  width: 25px;
  height: 1px;
  left: -10px;
  top: 11px
}

.header-style-three .menu-right-content .phone {
  position: relative;
  padding: 20px 0 20px 30px;
  border-left: 1px solid #e8eaef
}

.header-style-three .main-menu .navigation>li>a {
  padding-top: 21.5px;
  padding-bottom: 21.5px
}

.header-style-three .main-menu .navigation>li.dropdown>a:before {
  top: 22px
}

.banner-style-three {
  position: relative
}

.banner-style-three .owl-nav,
.banner-style-three .owl-dots {
  right: 50%;
  margin-right: -145px;
  background-color: #fff0;
  bottom: 15px
}

.banner-style-three .owl-nav button:hover {
  color: var(--theme-color)
}

.banner-style-three .slide-item {
  padding: 212px 0
}

.banner-carousel .content-box h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
  max-width: 300px;
  margin-bottom: 12px;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease
}

.banner-carousel .active .content-box h4 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms
}

.banner-style-three .content-box h2 {
  font-size: 150px;
  line-height: 130px
}

.banner-style-three .content-box h2 span {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff
}

.banner-style-three .content-box {
  max-width: 100%
}

.banner-style-three .content-box p {
  max-width: 100%
}

.banner-style-three .content-box .theme-btn {
  background-color: #fff !important;
  color: var(--title-color)
}

.banner-style-three .content-box .theme-btn:hover {
  color: #fff
}

.banner-style-three .slide-item::before {
  opacity: .2
}

.products-section {
  position: relative;
  padding: 112px 0
}

.product-block-one .inner-box {
  position: relative;
  display: block;
  background-color: #f3f5f9;
  padding: 42px 40px 50px 40px;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1
}

.product-block-one .inner-box::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(.9) translateY(20px);
  -ms-transform: scale(.9) translateY(20px);
  transform: scale(.9) translateY(20px);
  transition: all .5s cubic-bezier(.25, .8, .25, 1)
}

.product-block-one .inner-box:hover:before {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0)
}

.product-block-one .inner-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  transition: all 500ms ease
}

.product-block-one .inner-box:hover h3 {
  color: #fff
}

.product-block-one .inner-box h3::before {
  position: absolute;
  content: '';
  background-color: #ced2da;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 6px;
  transition: all 500ms ease
}

.product-block-one .inner-box:hover h3::before {
  background-color: #fff
}

.product-block-one .inner-box h3::after {
  position: absolute;
  content: '';
  background-color: #ced2da;
  width: 70px;
  height: 1px;
  left: 0;
  bottom: 0;
  transition: all 500ms ease
}

.product-block-one .inner-box:hover h3::after {
  width: 100%;
  background-color: #fff
}

.product-block-one .inner-box p {
  margin-bottom: 35px;
  transition: all 500ms ease
}

.product-block-one .inner-box:hover p {
  color: #e2ebfd
}

.product-block-one .inner-box h6 {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: all 500ms ease
}

.product-block-one .inner-box h6 button {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px dashed var(--theme-color);
  transition: all 500ms ease
}

.product-block-one .inner-box:hover h6 button {
  border-color: #fff;
  color: #fff
}

.product-block-one .inner-box:hover h6 {
  color: #fff
}

.product-block-one .inner-box .icon-box {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 88px;
  background-color: var(--theme-color);
  border-radius: 50%;
  font-size: 40px;
  color: #fff;
  text-align: center;
  border: 1px solid var(--theme-color);
  transition: all 500ms ease
}

.product-block-one .inner-box:hover .icon-box {
  border-color: #fff
}

.product-block-one .inner-box .btn-box {
  position: absolute;
  right: 0;
  bottom: 0
}

.product-block-one .inner-box .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase;
  background-color: #fff;
  padding: 14px 30px
}

.product-block-one .inner-box .btn-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--title-color);
  top: 3px;
  transition: all 500ms ease
}

.product-block-one .inner-box:hover .btn-box a i {
  color: var(--theme-color)
}

.product-block-one .inner-box .btn-box a span {
  position: relative;
  transform: scaleX(0);
  transform-origin: left center;
  display: none;
  transition: all 500ms ease
}

.product-block-one .inner-box:hover .btn-box a span {
  transform: scaleX(1);
  display: block
}

.product-block-one .inner-box .light-icon {
  position: absolute;
  right: -2px;
  bottom: -2px;
  transition: all 500ms ease
}

.product-block-one .inner-box:hover .light-icon {
  opacity: 0
}

.products-section .link-box {
  padding-top: 22px
}

.products-section .link-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase
}

.products-section .link-box a:hover {
  color: var(--theme-color)
}

.products-section .link-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.scroll-text-section {
  position: relative;
  display: block;
  background-color: var(--theme-color);
  padding: 30px 0
}

.scroll-text-section .text-list {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 50px;
  -moz-animation: scroll-left 190s linear infinite;
  -webkit-animation: scroll-left 190s linear infinite;
  animation: scroll-left 190s linear infinite
}

.scroll-text-section .text-list li {
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 70px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  text-replace: all 500ms ease
}

.scroll-text-section .text-list li:hover {
  color: #fff
}

.scroll-text-section .text-list li:nth-child(even) {
  font-size: 15px;
  color: #fff;
  transform: rotate(90deg)
}

@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(0%)
  }

  100% {
    -moz-transform: translateX(-100%)
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%)
  }

  100% {
    -webkit-transform: translateX(-100%)
  }
}

.about-style-two {
  position: relative;
  padding: 112px 0 110px 0;
  background-color: #f3f5f9
}

.about-style-two .pattern-layer {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 370px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.about-style-two::before {
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 50%;
  height: 100%;
  left: 0;
  top: 0
}

.about-style-two .content-box {
  position: relative;
  display: block
}

.about-style-two .content-box .left-content {
  position: relative;
  display: block
}

.about-style-two .content-box .left-content h3 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  padding-right: 110px;
  margin-bottom: 18px
}

.about-style-two .content-box .left-content h3:before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100px;
  height: 1px;
  right: 0;
  bottom: 8px
}

.about-style-two .content-box .left-content p {
  color: #a8acb3;
  margin-bottom: 14px
}

.about-style-two .content-box .left-content p:last-child {
  margin-bottom: 0
}

.about-style-two .content-box .left-content .lower-box {
  position: relative;
  display: block;
  padding: 23px 0 30px 50px;
  border-left: 1px solid var(--theme-color)
}

.about-style-two .content-box .left-content .lower-box::before,
.about-style-two .content-box .left-content .lower-box::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 50px;
  height: 1px;
  left: 0
}

.about-style-two .content-box .left-content .lower-box::before {
  top: 0
}

.about-style-two .content-box .left-content .lower-box::after {
  bottom: 0
}

.about-style-two .content-box .left-content .lower-box h4 {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 23px
}

.about-style-two .content-box .left-content .lower-box .author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px
}

.about-style-two .content-box .left-content .lower-box .author-box .signature {
  position: relative
}

.about-style-two .content-box .left-content .lower-box .author-box .signature::before {
  position: absolute;
  content: '';
  background: #2f3138;
  width: 1px;
  height: 100%;
  top: 0;
  right: -20px
}

.about-style-two .content-box .left-content .lower-box .author-box .author-info h4 {
  margin-bottom: 0
}

.about-style-two .content-box .left-content .lower-box .author-box .author-info .designation {
  position: relative;
  display: block;
  color: var(--theme-color)
}

.about-style-two .content-box .image-box {
  position: relative;
  display: block
}

.about-style-two .content-box .image-box img {
  width: 100%
}

.about-style-two .inner-content {
  position: relative;
  display: block
}

.about-style-two .inner-content .fact-box {
  position: relative;
  display: block;
  margin-bottom: 192px
}

.about-style-two .inner-content .fact-box h2 {
  position: relative;
  display: inline-block;
  font-size: 200px;
  line-height: 130px;
  color: var(--theme-color);
  font-weight: 400
}

.about-style-two .inner-content .fact-box h6 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg)
}

.about-style-two .inner-content .inner-box .single-item {
  position: relative;
  display: flex;
  gap: 30px
}

.about-style-two .inner-content .inner-box .single-item .icon-box {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--theme-color)
}

.about-style-two .inner-content .inner-box .single-item .title-box {
  position: relative;
  display: block;
  padding-bottom: 21px;
  margin-bottom: 27px
}

.about-style-two .inner-content .inner-box .single-item .title-box .title-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  background-color: var(--theme-color)
}

.about-style-two .inner-content .inner-box .single-item .title-box .title-shape::before,
.about-style-two .inner-content .inner-box .single-item .title-box .title-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  bottom: -10px
}

.about-style-two .inner-content .inner-box .single-item .title-box .title-shape::before {
  left: 0
}

.about-style-two .inner-content .inner-box .single-item .title-box .title-shape::after {
  right: 0
}

.about-style-two .inner-content .inner-box .single-item h3 {
  font-size: 24px;
  line-height: 32px
}

.about-style-two .inner-content .inner-box .single-item p {
  margin-bottom: 18px
}

.about-style-two .inner-content .inner-box .single-item .inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color)
}

.about-style-two .inner-content .inner-box .single-item .inner a:hover {
  color: var(--theme-color)
}

.about-style-two .inner-content .inner-box .single-item .inner a i {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  top: 2px;
  font-size: 22px
}

.about-style-two .inner-content .inner-box .single-item {
  margin-bottom: 30px
}

.about-style-two .inner-content .inner-box .single-item:last-child {
  margin-bottom: 0
}

.header-style-three .sticky-header {
  border-bottom: 1px solid rgb(0 0 0 / .1)
}

.team-section {
  position: relative;
  padding: 112px 0
}

.team-block-one .inner-box {
  position: relative;
  display: block;
  background-color: #f3f5f9;
  padding: 40px 30px 32px 30px;
  margin-bottom: 30px
}

.team-block-one .inner-box .image-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px
}

.team-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 170px
}

.team-block-one .inner-box .image-box .image img {
  width: 100%;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.team-block-one .inner-box:hover .image-box .image img {
  transform: scale(1.1)
}

.team-block-one .inner-box .image-box .image::before {
  position: absolute;
  content: '';
  background-color: #f3f5f9;
  width: 75px;
  height: 75px;
  left: 0;
  top: -1px;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%)
}

.team-block-one .inner-box .image-box .image::after {
  position: absolute;
  content: '';
  background-color: #f3f5f9;
  width: 75px;
  height: 75px;
  right: 0;
  bottom: 0;
  z-index: 1;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%)
}

.team-block-one .inner-box .image-box .experience-box h2 {
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 50px;
  color: #a8acb3;
  margin-bottom: 6px
}

.team-block-one .inner-box .image-box .experience-box h2 span {
  font-weight: 400
}

.team-block-one .inner-box .image-box .experience-box h6 {
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: #a8acb3;
  margin-bottom: 9px
}

.team-block-one .inner-box .image-box .experience-box a {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 22px;
  color: #a8acb3
}

.team-block-one .inner-box .image-box .experience-box a:hover {
  color: var(--theme-color)
}

.team-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding-top: 32px
}

.team-block-one .inner-box .lower-content h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 4px
}

.team-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: var(--title-color)
}

.team-block-one .inner-box .lower-content h3 a:hover {
  color: var(--theme-color)
}

.team-block-one .inner-box .lower-content .designation {
  position: relative;
  display: block;
  color: var(--theme-color)
}

.team-block-one .inner-box .lower-content .social-box {
  position: absolute;
  right: -30px;
  bottom: -32px
}

.team-block-one .inner-box .lower-content .social-box .share-icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 54px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease
}

.team-block-one .inner-box .lower-content .social-box .share-icon:hover {
  color: var(--theme-color)
}

.team-block-one .inner-box .lower-content .social-box .social-links {
  position: absolute;
  right: 10px;
  bottom: 50px;
  transform: scaleY(0);
  opacity: 0;
  transform-origin: bottom center;
  transition: all 500ms ease
}

.team-block-one .inner-box .lower-content .social-box:hover .social-links {
  transform: scaleY(1);
  opacity: 1
}

.team-block-one .inner-box .lower-content .social-box .social-links li {
  position: relative;
  display: block;
  margin-bottom: 10px
}

.team-block-one .inner-box .lower-content .social-box .social-links li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  background-color: #fff;
  text-align: center;
  font-size: 18px;
  color: #a9adb4
}

.team-block-one .inner-box .lower-content .social-box .social-links li a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.link-text-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1
}

.link-text-box.light a {
  color: #fff
}

.link-text-box a:hover {
  color: var(--theme-color) !important
}

.link-text-box a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--theme-color);
  top: 2px
}

.industries-style-three {
  position: relative;
  padding-top: 112px;
  background-color: var(--secondary-color)
}

.industries-style-three .left-content {
  position: relative;
  display: block
}

.industries-style-three .left-content .lower-box {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 80px 50px 40px 0;
  max-width: 280px;
  z-index: 1
}

.industries-style-three .left-content .lower-box::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 5000px;
  height: 100%;
  top: 0;
  right: 0
}

.industries-style-three .left-content .lower-box .icon-box {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: var(--theme-color);
  font-size: 22px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 18px
}

.industries-style-three .left-content .lower-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 22px
}

.industries-style-three .left-content .lower-box h3 span {
  font-weight: 300;
  color: var(--theme-color)
}

.industries-style-three .left-content .lower-box .theme-btn {
  background-color: #f3f5f9;
  color: var(--title-color)
}

.industries-style-three .left-content .lower-box .theme-btn:hover {
  color: #fff
}

.industries-block-two .inner-box {
  position: relative;
  display: block;
  margin-bottom: 42px
}

.industries-block-two .inner-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 3px
}

.industries-block-two .inner-box h3 span {
  color: #a8acb3
}

.industries-block-two .inner-box p {
  color: #a8acb3;
  margin-bottom: 23px
}

.industries-block-two .inner-box .image-box {
  position: relative;
  max-width: 160px
}

.industries-block-two .inner-box .image-box .image {
  position: relative;
  display: block
}

.industries-block-two .inner-box .image-box .image img {
  width: 100%
}

.industries-block-two .inner-box .image-box .link {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%
}

.industries-block-two .inner-box .image-box .link a {
  position: relative;
  display: flex;
  align-items: center;
  width: 80px;
  height: 100%;
  text-align: center;
  justify-content: center;
  font-size: 30px;
  color: #a8acb3;
  z-index: 1
}

.industries-block-two .inner-box .image-box .link a i {
  position: relative;
  display: inline-block;
  transform: rotate(-45deg);
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.industries-block-two .inner-box:hover .image-box .link a i {
  transform: rotate(0deg)
}

.industries-block-two .inner-box:hover .image-box .link a {
  color: #fff
}

.industries-block-two .inner-box .image-box .link a:before {
  position: absolute;
  content: '';
  background-color: #26272c;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 500ms ease
}

.industries-block-two .inner-box:hover .image-box .link a:before {
  background-color: var(--theme-color);
  opacity: .85
}

.industries-style-three .image-layer {
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: 2
}

.project-style-two {
  position: relative;
  padding: 112px 0 105px 0
}

.project-block-two .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px
}

.project-block-two .inner-box .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.project-block-two .inner-box:hover .bg-layer {
  transform: scale(1.1)
}

.project-block-two .inner-box .bg-layer::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(90deg, rgb(24 25 29) 0%, rgb(24 25 29 / .1) 50%)
}

.project-block-two .inner-box .upper-box {
  position: relative;
  display: block;
  padding: 322px 30px 23px 30px;
  border-bottom: 4px solid #fff
}

.project-block-two .inner-box .upper-box::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px
}

.project-block-two .inner-box .upper-box h3 {
  font-size: 24px;
  line-height: 32px;
  max-width: 260px
}

.project-block-two .inner-box .upper-box h3 a {
  display: inline-block;
  color: #fff
}

.project-block-two .inner-box .upper-box h3 a:hover {
  text-decoration: underline
}

.project-block-two .inner-box .lower-box {
  position: relative;
  padding: 16px 30px 9px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.project-block-two .inner-box .lower-box h6 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  color: #a8acb3
}

.project-block-two .inner-box .lower-box h6 i {
  position: relative;
  display: inline-block;
  top: 3px;
  color: var(--theme-color)
}

.project-block-two .inner-box .lower-box .link a {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: #fff
}

.project-block-two .inner-box .lower-box .link a:hover {
  color: var(--theme-color)
}

.project-block-two .inner-box .lower-box .link a i {
  position: relative;
  display: inline-block;
  top: 4px
}

.project-style-two .lower-box {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding-left: 175px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px
}

.project-style-two .lower-box .line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #ebe9ef
}

.project-style-two .owl-nav {
  position: absolute;
  left: -10px;
  right: 0;
  bottom: -52px;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  text-align: left
}

.features-section {
  position: relative;
  background-color: #f2f4f8;
  padding-top: 112px
}

.features-section .title-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.features-section .title-box .rotate-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgb(0 0 0 / .5)
}

.features-section .title-box .rotate-text .video-btn a {
  position: relative;
  display: inline-block;
  font-size: 30px;
  top: 3px;
  color: #fff;
  z-index: 1
}

.features-section .title-box .rotate-text .video-btn a:hover {
  color: var(--theme-color)
}

.features-section .title-box .rotate-text .curved-circle {
  position: absolute;
  left: 60px;
  top: 5px;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px
}

.features-section::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100%;
  height: 205px;
  left: 0;
  bottom: 0
}

.features-section .bg-layer {
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 205px);
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.features-section .inner-container {
  position: relative;
  display: block;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1)
}

.features-section .inner-container .left-content {
  position: relative;
  padding: 52px 0 54px 50px
}

.features-section .inner-container .left-content .title-box {
  position: relative;
  display: block;
  padding-bottom: 21px;
  margin-bottom: 27px
}

.features-section .inner-container .left-content .title-box .title-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  background-color: var(--theme-color)
}

.features-section .inner-container .left-content .title-box .title-shape::before,
.features-section .inner-container .left-content .title-box .title-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  bottom: -10px
}

.features-section .inner-container .left-content .title-box .title-shape::before {
  left: 0
}

.features-section .inner-container .left-content .title-box .title-shape::after {
  right: 0
}

.features-section .inner-container .left-content .title-box h3 {
  font-size: 30px;
  line-height: 38px
}

.features-section .inner-container .left-content p {
  margin-bottom: 27px
}

.features-section .tabs-box .tab {
  transform: scale(.9, .9) translateY(0)
}

.features-section .tabs-box .tab.active-tab {
  transform: scale(1) translateY(0)
}

.features-section .tabs-box {
  position: relative
}

.features-section .tabs-box .tabs-content {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%)
}

.features-section .tabs-box .tabs-content .image-box {
  position: relative;
  display: block;
  border-radius: 50%
}

.features-section .tabs-box .tabs-content .image-box img {
  width: 100%;
  border-radius: 50%
}

.features-section .content-box {
  position: relative;
  display: block;
  border-left: 1px solid #e7eaef
}

.features-section .tab-btns li {
  position: relative;
  display: block;
  border-bottom: 1px solid #e7eaef;
  padding: 36px 0 30px 25px;
  cursor: pointer;
  transition: all 500ms ease
}

.features-section .tab-btns li.active-btn {
  padding-left: 140px
}

.features-section .tab-btns li .icon-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 98px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  font-size: 50px;
  color: #fff;
  opacity: 0;
  transition: all 500ms ease
}

.features-section .tab-btns li.active-btn .icon-box {
  opacity: 1
}

.features-section .tab-btns li h4 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 32px;
  border-bottom: 1px dashed #fff0;
  transition: all 500ms ease
}

.features-section .tab-btns li.active-btn h4 {
  border-color: var(--theme-color)
}

.chooseus-section .owl-nav {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 35px
}

.news-style-three {
  position: relative;
  padding: 112px 0
}

.news-block-three .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px;
  background-color: #f3f5f9;
  gap: 50px;
  margin-bottom: 30px;
  transition: all 500ms ease
}

.news-block-three .inner-box:hover {
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1)
}

.news-block-three .inner-box .content-box {
  position: relative;
  max-width: 510px
}

.news-block-three .inner-box .post-info {
  position: relative;
  display: block
}

.news-block-three .inner-box .post-info .post-date {
  position: relative;
  display: block;
  padding-bottom: 23px;
  margin-bottom: 36px
}

.news-block-three .inner-box .post-info .post-date::before {
  position: absolute;
  content: '';
  background-color: #dee1e7;
  width: 70px;
  height: 1px;
  left: 0;
  bottom: 0
}

.news-block-three .inner-box .post-info .post-date h3 {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #e1e5ee;
  text-align: center;
  font-size: 24px;
  margin-bottom: 9px
}

.news-block-three .inner-box .post-info .post-date .text {
  position: relative;
  display: block
}

.news-block-three .inner-box .post-info .author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px
}

.news-block-three .inner-box .post-info .author-box .thumb-box {
  position: relative;
  display: block;
  min-width: 46px;
  border-radius: 50%
}

.news-block-three .inner-box .post-info .author-box .thumb-box img {
  width: 100%;
  border-radius: 50%
}

.news-block-three .inner-box .post-info .author-box h5 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px
}

.news-block-three .inner-box .post-info .author-box button {
  position: relative;
  display: inline-block;
  color: var(--text-color);
  transition: all 500ms ease
}

.news-block-three .inner-box .post-info .author-box button:focus {
  color: var(--theme-color)
}

.news-block-three .inner-box .image-box {
  position: relative;
  min-width: 280px
}

.news-block-three .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden
}

.news-block-three .inner-box .image-box .image img {
  width: 100%;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.news-block-three .inner-box:hover .image-box .image img {
  transform: scale(1.1)
}

.news-block-three .inner-box .image-box .view-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease
}

.news-block-three .inner-box:hover .image-box .view-btn {
  opacity: 1
}

.news-block-three .inner-box .image-box .view-btn a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  color: var(--title-color)
}

.news-block-three .inner-box .image-box .view-btn a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.news-block-three .inner-box .image-box h6 {
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: 0;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  background-color: #e1e5ee;
  padding: 4px 10px;
  transition: all 500ms ease
}

.news-block-three .inner-box:hover .image-box h6 {
  color: #fff;
  background-color: var(--theme-color)
}

.news-block-three .inner-box .content-box h3 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 12px
}

.news-block-three .inner-box .content-box h3 a {
  position: relative;
  display: inline-block;
  color: var(--title-color)
}

.news-block-three .inner-box .content-box h3 a:hover {
  color: var(--theme-color)
}

.news-block-three .inner-box .content-box p {
  margin-bottom: 22px
}

.contact-section {
  position: relative;
  padding: 110px 0 120px 0;
  background-color: var(--secondary-color)
}

.contact-section .content-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 75px;
  margin-left: 45px
}

.contact-section .content-box .icon-box {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 90px;
  background-color: var(--theme-color);
  text-align: center;
  border-radius: 50%;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 0 0 10px #203153
}

.contact-section .content-box h3 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 12px
}

.contact-section .content-box h3 span {
  font-weight: 300;
  color: var(--theme-color)
}

.contact-section .content-box h3 a {
  display: inline-block;
  color: #fff
}

.contact-section .content-box h3 a:hover {
  color: var(--theme-color)
}

.contact-section .content-box p {
  color: #a8acb3;
  margin-bottom: 32px
}

.contact-section .content-box p span {
  color: #fff
}

.contact-section .content-box .theme-btn::before {
  background-color: var(--theme-color)
}

.contact-section::before {
  position: absolute;
  content: '';
  background-color: rgb(255 255 255 / .1);
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0
}

.footer-style-three {
  position: relative;
  background-color: #f3f5f9
}

.footer-style-three .widget-section {
  position: relative;
  padding: 120px 0;
  border-bottom: 4px solid var(--secondary-color)
}

.footer-style-three .certificate-widget {
  position: relative;
  display: block;
  background-color: #fff;
  margin-right: 20px;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .06)
}

.footer-style-three .certificate-widget .inner-box {
  position: relative;
  display: block;
  padding: 33px 40px 40px 40px;
  border-bottom: 5px solid #e7e9ed
}

.footer-style-three .certificate-widget .inner-box p {
  margin-bottom: 18px
}

.footer-style-three .certificate-widget .inner-box .inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px
}

.footer-style-three .certificate-widget .inner-box .inner p {
  color: var(--title-color);
  margin-bottom: 0
}

.footer-style-three .certificate-widget .inner-box .inner p span {
  text-transform: uppercase
}

.footer-style-three .certificate-widget .inner-box .inner .image-box {
  min-width: 90px
}

.footer-style-three .certificate-widget .lower-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 12.5px 0
}

.footer-style-three .certificate-widget .lower-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color)
}

.footer-style-three .certificate-widget .lower-box a:hover {
  color: var(--theme-color)
}

.footer-style-three .certificate-widget .lower-box i {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--theme-color);
  top: 2px
}

.footer-style-three .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 8px
}

.footer-style-three .links-widget .links-list li:last-child {
  margin-bottom: 0
}

.footer-style-three .links-widget .links-list li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  line-height: 28px;
  font-family: var(--text-font);
  color: #6f7175;
  gap: 10px
}

.footer-style-three .links-widget .links-list li a:hover {
  color: var(--theme-color)
}

.footer-style-three .widget-title {
  position: relative;
  display: block;
  margin-bottom: 23px
}

.footer-style-three .widget-title h3 {
  font-size: 24px;
  line-height: 32px
}

.footer-style-three .links-widget .links-column {
  position: relative
}

.footer-style-three .links-widget .links-column::before {
  position: absolute;
  content: '';
  background-color: #e0e3e9;
  width: 1px;
  height: calc(100% - 14px);
  top: 7px;
  right: 15px
}

.footer-style-three .links-widget .links-column:last-child:before {
  display: none
}

.footer-style-three .post-widget .post-inner .post {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px
}

.footer-style-three .post-widget .post-inner .post .post-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 70px;
  background-color: var(--secondary-color)
}

.footer-style-three .post-widget .post-inner .post .post-thumb img {
  width: 100%;
  transition: all 500ms ease
}

.footer-style-three .post-widget .post-inner .post:hover .post-thumb img {
  opacity: .1
}

.footer-style-three .post-widget .post-inner .post .post-thumb a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #fff;
  z-index: 1;
  left: 0;
  top: 3px;
  transform: scale(0, 0)
}

.footer-style-three .post-widget .post-inner .post:hover .post-thumb a {
  transform: scale(1, 1)
}

.footer-style-three .post-widget .post-inner .post {
  margin-bottom: 22px
}

.footer-style-three .post-widget .post-inner .post h6 {
  display: block;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--theme-color);
  margin-bottom: 3px
}

.footer-style-three .post-widget .post-inner .post h4 {
  display: block;
  font-size: 20px;
  line-height: 28px
}

.footer-style-three .post-widget .post-inner .post h4 a {
  display: inline-block;
  color: var(--title-color)
}

.footer-style-three .post-widget .post-inner .post h4 a:hover {
  color: var(--theme-color)
}

.footer-bottom-two {
  position: relative;
  display: block;
  padding: 35px 0 27px 0
}

.footer-bottom-two::before {
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 100%;
  height: 1px;
  left: 0;
  top: 5px
}

.footer-bottom-two .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom-two .scroll-to-target {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 25px;
  transition: all 500ms ease
}

.footer-bottom-two .scroll-to-target:hover {
  color: var(--theme-color)
}

.footer-bottom-two .scroll-to-target i {
  position: absolute;
  top: -3px;
  right: 0;
  font-size: 30px;
  font-weight: 400;
  color: #a8acb3
}

.footer-bottom-two .language-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-bottom-two .language-box .nice-select {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600
}

.footer-bottom-two .language-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #a5aaaf;
  top: 3px
}

.footer-bottom-two .language-box .nice-select .list {
  top: inherit;
  bottom: 100%
}

.footer-bottom-two .bottom-inner .middle-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 55px
}

.footer-bottom-two .bottom-inner .middle-column .copyright p a {
  font-family: var(--text-font);
  color: var(--theme-color)
}

.footer-bottom-two .bottom-inner .middle-column .copyright p a:hover {
  text-decoration: underline
}

.footer-bottom-two .bottom-inner .footer-logo {
  position: relative;
  padding-right: 30px;
  border-right: 1px solid #dee1e7
}

.header-style-four {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff0
}

.header-top-three {
  position: relative;
  padding: 10px 40px
}

.header-top-three .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.header-top-three .top-inner h6 {
  position: relative;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500
}

.header-top-three .top-inner h6 a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--title-color)
}

.header-top-three .top-inner h6 a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  top: 2px
}

.header-style-four .header-lower {
  padding: 0 40px
}

.header-style-four .header-lower .outer-container {
  position: relative;
  display: block;
  background-color: #fff;
  border-bottom: none
}

.header-style-four .outer-box .left-column {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 5px 0 5px 5px
}

.header-style-four .outer-box {
  gap: 40px
}

.header-style-four .outer-box .logo-box {
  position: relative;
  display: inline-block;
  background-color: var(--secondary-color);
  padding: 21px 29px 21px 30px
}

.header-style-four .outer-box .user-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

.header-style-four .outer-box .user-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color);
  top: 2px
}

.header-style-four .outer-box .user-box .nice-select {
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color)
}

.header-style-four .menu-right-content .search-toggler {
  color: var(--title-color);
  padding-left: 0
}

.header-style-four .menu-right-content .search-toggler::before {
  position: absolute;
  content: '';
  background-color: #d9d9d9;
  width: 1px;
  height: 40px;
  top: -7px;
  right: -25px
}

.header-style-four .menu-right-content .link a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  text-transform: uppercase;
  border-bottom: solid;
  border-width: 3px;
  border-color: var(--theme-color)
}

.header-style-four .menu-right-content .link a:hover {
  color: var(--theme-color)
}

.header-style-four .menu-right-content {
  gap: 50px
}

.header-style-four .menu-right-content .link a::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 50px;
  height: 1px;
  left: 0;
  bottom: -7px
}

.header-style-four .outer-container {
  padding: 0;
  padding-right: 40px
}

.header-style-four .header-lower .main-content {
  position: relative;
  border-left: 1px solid #e0dfdf;
  border-right: 1px solid #e0dfdf
}

.header-style-four .header-lower .main-content .info-list li {
  position: relative;
  float: left;
  width: 33.333%;
  text-align: center;
  padding: 15px 15px
}

.header-style-four .header-lower .main-content .info-list li::before {
  position: absolute;
  content: '';
  background-color: #e0dfdf;
  width: 1px;
  height: 100%;
  top: 0;
  right: 23px
}

.header-style-four .header-lower .main-content .info-list li:last-child:before {
  display: none
}

.header-style-four .header-lower .main-content .info-list li:nth-child(2):before {
  right: -16px
}

.header-style-four .header-lower .main-content .info-list li h5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.header-style-four .header-lower .main-content .info-list li h5 i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--theme-color);
  top: 2px
}

.header-style-four .header-lower .main-content .info-list li h5 a,
.header-style-four .header-lower .main-content .info-list li h5 span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 400
}

.header-style-four .header-lower .main-content .info-list li h5 a:hover {
  color: var(--theme-color)
}

.header-style-four .header-lower .main-content .info-list {
  border-bottom: 1px solid #e0dfdf
}

.header-style-four .header-lower .main-menu .navigation>li {
  padding: 0 53px;
  border-right: 1px solid #e0dfdf;
  margin: 0
}

.header-style-four .header-lower .main-menu .navigation>li:last-child {
  border-right: none
}

.banner-style-four .slide-item {
  position: relative;
  padding: 290px 0 160px 0
}

.banner-style-four .slide-item::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: .5;
  z-index: 1
}

.banner-style-four .slide-item::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right:0;
  top: 0;
  background: -webkit-linear-gradient(-90deg, rgb(254 178 81) 0%, rgb(254 178 81 / .1) 35%);
  z-index: 1
}

.banner-style-four .content-box {
  position: relative;
  display: block;
  z-index: 5
}

.banner-style-four .content-box h6 {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px dashed var(--theme-color);
  margin-bottom: 12px;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease
}

.banner-style-four .banner-carousel .active .content-box h6 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms
}

.banner-style-four .content-box h2 {
  font-size: 72px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 9px
}

.banner-style-four .content-box h2 span {
  font-weight: 300;
  color: var(--theme-color)
}

.banner-style-four .content-box p {
  font-size: 19px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 43px
}

.banner-style-four .content-box .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.banner-style-four .content-box .btn-box .theme-btn.btn-three::before {
  background-color: var(--secondary-color)
}

.banner-style-four .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -30px;
  width: 100%
}

.banner-style-four .owl-nav button {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 56px;
  border: 2px solid #fff;
  text-align: center;
  font-size: 30px;
  color: #fff;
  transition: all 500ms ease
}

.banner-style-four .owl-nav button.owl-prev {
  left: 40px
}

.banner-style-four .owl-nav button.owl-next {
  right: 40px
}

.banner-style-four .owl-nav button:hover {
  background-color: #fff;
  color: var(--theme-color)
}

.banner-style-four .owl-nav button.owl-prev span {
  position: relative;
  display: inline-block;
  transform: rotate(-90deg)
}

.banner-style-four .owl-nav button.owl-next span {
  position: relative;
  display: inline-block;
  transform: rotate(-90deg)
}

.about-style-three {
  position: relative;
  padding: 50px 0
}

.about-style-three .image-box {
  position: relative;
  display: block;
  margin-right: 20px;
  padding: 0 120px 240px 60px
}

.about-style-three .image-box img {
  width: 100%
}

.about-style-three .image-box .image-1 {
  position: absolute;
  right: 0;
  bottom: 0
}

.about-style-three .image-box .image-2 {
  position: relative;
  display: block
}

.about-style-three .image-box .image-3 {
  position: absolute;
  left: 0;
  bottom: 120px
}

.about-style-three .rotate-text {
  position: absolute;
  top: 217px;
  right: 8px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--theme-color);
  padding: 17px 30px;
  transform: rotate(-90deg)
}

.about-style-three .rotate-text::before {
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 20px;
  height: 1px;
  left: 0;
  top: 30px
}

.about-style-three .content-box {
  position: relative;
  display: block
}

.about-style-three .content-box .inner-box .left-content {
  position: relative;
  display: block
}

.about-style-three .content-box .inner-box .left-content .icon-box {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 90px;
  line-height: 100px;
  text-align: center;
  font-size: 40px;
  color: var(--secondary-color);
  background-color: var(--theme-color);
  margin-bottom: 25px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 50% 100%, 0 80%, 0 20%)
}

.about-style-three .content-box .inner-box .left-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px
}

.about-style-three .content-box .inner-box .left-content p {
  margin-bottom: 16px
}

.about-style-three .content-box .inner-box .left-content .list-item {
  position: relative;
  display: block;
  margin-bottom: 38px
}

.about-style-three .content-box .inner-box .left-content .list-item li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.about-style-three .content-box .inner-box .left-content .list-item li:last-child {
  margin-bottom: 0
}

.about-style-three .content-box {
  margin-top: -10px
}

.about-style-three .content-box .award-box {
  position: relative;
  display: block;
  background-color: #faf5ee;
  padding: 30px 30px 32px 30px
}

.about-style-three .content-box .award-box h4 {
  position: absolute;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #cdc7bf;
  text-transform: uppercase;
  left: -15px;
  top: 25px;
  transform: rotate(-45deg)
}

.about-style-three .content-box .award-box .award-image {
  position: relative;
  display: block;
  margin-bottom: 32px
}

.about-style-three .content-box .award-box h6 {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #6f6d69;
  margin-bottom: 5px
}

.about-style-three .content-box .award-box h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 11px
}

.about-style-three .content-box .award-box .text {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #6f6d69;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 40px
}

.about-style-three .content-box .award-box .text::before {
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 30px;
  height: 1px;
  left: 0;
  top: 10px
}

.about-style-three .content-box .award-box::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100px;
  height: 100px;
  left: 0;
  top: 0;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%)
}

.about-style-three .content-box .award-box::after {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100px;
  height: 100px;
  right: 0;
  bottom: 0;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%)
}

.features-section.alternat-2 {
  padding-top: 0;
  background-color: #fff0
}

.features-section.alternat-2 .bg-color {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #faf5ee
}

.service-style-three {
  position: relative;
  padding: 90px 0 80px 0;
  background-color: #faf5ee
}

.service-block-three .inner-box {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 32px 30px 40px 40px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 500ms ease
}

.service-block-three .inner-box .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  transition: all 500ms ease
}

.service-block-three .inner-box:hover .shape {
  opacity: 0
}

.service-block-three .inner-box .overlay-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 500ms ease
}

.service-block-three .inner-box .overlay-bg {
  opacity: .06
}

.service-block-three .inner-box .icon-box {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #faf5ee;
  text-align: center;
  font-size: 40px;
  color: var(--secondary-color)
}

.service-block-three .inner-box h6 {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #afa9a1;
  text-transform: uppercase;
  margin-bottom: 12px
}

.service-block-three .inner-box h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300
}

.service-block-three .inner-box .title-box {
  position: relative;
  display: block;
  padding-bottom: 23px;
  margin-bottom: 24px
}

.service-block-three .inner-box .title-box h2 {
  font-size: 30px;
  line-height: 38px
}

.service-block-three .inner-box .title-box h2 a {
  display: inline-block;
  color: var(--title-color)
}

.service-block-three .inner-box .title-box h2 a:hover {
  color: var(--theme-color)
}

.service-block-three .inner-box .title-box .title-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: var(--theme-color)
}

.service-block-three .inner-box .title-box .title-shape::before,
.service-block-three .inner-box .title-box .title-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  bottom: -2px
}

.service-block-three .inner-box .title-box .title-shape::before {
  left: 0
}

.service-block-three .inner-box .title-box .title-shape::after {
  right: 0
}

.service-block-three .inner-box p {
  margin-bottom: 32px
}

.service-block-three .inner-box .link-box a {
  position: relative;
  display: inline-block;
  width: 82px;
  height: 56px;
  line-height: 62px;
  background-color: #faf5ee;
  text-align: center;
  font-size: 22px;
  color: var(--secondary-color)
}

.service-block-three .inner-box .overlay-content {
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  padding: 32px 30px 40px 40px;
  z-index: 1;
  opacity: 0;
  transition: all .4s cubic-bezier(.25, .8, .25, 1)
}

.service-block-three .inner-box:hover .overlay-content {
  top: 0;
  opacity: 1
}

.service-block-three .inner-box .overlay-content h3,
.service-block-three .inner-box .overlay-content h2 a {
  color: #fff
}

.banner-style-four .theme-btn.btn-three,
.banner-style-four .theme-btn.btn-three i {
  color: var(--title-color)
}

.banner-style-four .theme-btn.btn-three:hover,
.banner-style-four .theme-btn.btn-three:hover i {
  color: #fff
}

.service-block-three .inner-box .overlay-content p {
  color: #afa9a1
}

.service-block-three .inner-box .overlay-content .theme-btn,
.service-block-three .inner-box .overlay-content .theme-btn i {
  color: var(--title-color)
}

.features-section .tab-btns li:last-child {
  border-bottom: none
}

.industries-section.alternat-2 .tabs-box .content-box p,
.industries-section.alternat-2 .tabs-box .content-box .list-item li {
  color: #afa9a1
}

.industries-section.alternat-2 .tabs-box .content-box .link-box a i {
  background-color: #3d3b37
}

.industries-section.alternat-2 .tabs-box .content-box .link-box a:hover i {
  background-color: var(--theme-color)
}

.industries-section.alternat-2 .lower-box,
.industries-section.alternat-2 .lower-box::before,
.industries-section.alternat-2::before {
  background-color: #faf5ee
}

.industries-section.alternat-2 .lower-box .right-column .theme-btn,
.industries-section.alternat-2 .lower-box .right-column .theme-btn i {
  color: var(--title-color)
}

.chooseus-style-two.light-section {
  background-color: var(--secondary-color)
}

.chooseus-style-two.light-section .chooseus-block-two .inner-box .icon-box {
  background-color: #3d3b37;
  color: #fff
}

.chooseus-style-two.light-section .chooseus-block-two .inner-box:hover .icon-box {
  background-color: var(--theme-color);
  color: var(--secondary-color)
}

.chooseus-style-two.light-section .chooseus-block-two .inner-box h3 {
  color: #fff
}

.chooseus-style-two.light-section .chooseus-block-two .inner-box p {
  color: #afa9a1
}

.project-style-two.alternat-2 .owl-nav {
  position: relative;
  left: 0;
  text-align: center;
  bottom: 0;
  padding-top: 20px
}

.pricing-section.alternat-2 {
  background-color: #faf5ee
}

.pricing-section.alternat-2 .tabs-box .tab-btns li {
  background-color: #f0eae1
}

.working-section.alternat-2 .left-content .inner-box .single-box {
  background-color: #3d3b37
}

.working-section.alternat-2 .left-content .inner-box h2 {
  background-image: url(../images/icons/text-bg-2.png)
}

.working-section.alternat-2 .line-shape .line-1,
.working-section.alternat-2 .line-shape .line-2 {
  background-color: #42403c
}

.working-section.alternat-2 .right-content .content-box .rotate-text {
  -webkit-text-stroke-color: #46443f
}

.working-section.alternat-2 .right-content .tab-btns li {
  background-color: #42403c;
  color: #afa9a1
}

.working-section.alternat-2 .right-content .tab-btns li.active-btn {
  color: var(--title-color);
  background-color: var(--theme-color)
}

.working-section.alternat-2 .right-content .content-box h6,
.working-section.alternat-2 .right-content .content-box p {
  color: #afa9a1
}

.testimonial-style-two.alternat-2 .testimonial-block-one .inner-box {
  background-color: #faf5ee
}

.testimonial-style-two.alternat-2 .testimonial-block-one .inner-box .author-box .rating-box,
.testimonial-style-two.alternat-2 .testimonial-block-one .inner-box .author-box .rating-box::before {
  background-color: #f0eae1
}

.faq-section.alternat-2 {
  background-color: var(--secondary-color);
  padding-bottom: 170px
}

.faq-section.alternat-2 .accordion_style_one .accordion .acc-btn.active {
  background-color: #3d3b37
}

.faq-section.alternat-2 .accordion_style_one .accordion,
.faq-section.alternat-2 .accordion_style_one .accordion .acc-content {
  border-color: #42403c
}

.footer-style-four {
  position: relative;
  background-color: var(--secondary-color);
  border-top: 4px solid #42403c
}

.footer-style-four::before {
  position: absolute;
  content: '';
  background-color: #42403c;
  width: 100%;
  height: 1px;
  left: 0;
  top: 5px
}

.footer-style-four .footer-top {
  position: relative;
  padding: 190px 0 30px 0
}

.footer-style-four .footer-top .footer-logo {
  position: absolute;
  left: 50%;
  margin-left: -140px;
  top: -83px;
  width: 280px;
  height: 166px;
  line-height: 166px;
  text-align: center;
  z-index: 1
}

.footer-style-four .footer-top .footer-logo .shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 280px;
  height: 166px;
  background-repeat: no-repeat;
  background-position: center
}

.footer-style-four .footer-top .text-box {
  position: relative;
  display: block
}

.footer-style-four .footer-top .text-box .big-text {
  position: absolute;
  left: 0;
  top: -70px;
  width: 100%;
  text-align: center;
  font-size: 450px;
  line-height: 270px;
  font-family: var(--title-font);
  font-weight: 600;
  color: #fff0;
  background: -webkit-linear-gradient(-90deg, #3d3b37 0%, #2c2a26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  -webkit-text-stroke: 1px #42403c
}

.footer-style-four .footer-top .text-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 24px
}

.footer-style-four .footer-top .text-box h3 span {
  font-size: 48px;
  font-weight: 300
}

.footer-style-four .footer-top .text-box .theme-btn,
.footer-style-four .footer-top .text-box .theme-btn i {
  color: var(--title-color)
}

.footer-style-four .footer-top .text-box .theme-btn::before {
  background-color: #fff
}

.footer-style-four .footer-top .info-box .single-item {
  max-width: 370px;
  margin: 0 auto
}

.footer-style-four .footer-top .info-box .single-item .inner-box {
  position: relative;
  display: block;
  padding: 32px 30px;
  margin-bottom: 30px
}

.footer-style-four .footer-top .info-box .single-item .inner-box p,
.footer-style-four .footer-top .info-box .single-item .inner-box p a {
  color: #afa9a1
}

.footer-style-four .footer-top .info-box .single-item .inner-box p a:hover {
  color: var(--theme-color)
}

.footer-style-four .footer-top .info-box .single-item .inner-box .shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center
}

.footer-style-four .footer-bottom .copyright p {
  color: #afa9a1
}

.footer-style-four .footer-bottom .social-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-style-four .footer-bottom .social-links li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 54px;
  background-color: #3d3b37;
  border: 1px solid #3d3b37;
  text-align: center;
  font-size: 18px;
  color: #aea8a0
}

.footer-style-four .footer-bottom .social-links li a:hover {
  color: var(--theme-color);
  background-color: #fff0;
  border-color: var(--theme-color)
}

.footer-style-four .footer-bottom {
  padding-bottom: 55px
}

.footer-style-four .footer-bottom .footer-nav p a {
  font-family: var(--text-font);
  color: #afa9a1;
  font-weight: 400
}

.footer-style-four .footer-bottom .footer-nav p {
  font-family: var(--text-font);
  color: #afa9a1;
  font-weight: 400;
  text-align: right
}

.footer-style-four .footer-bottom .footer-nav p a:hover {
  color: var(--theme-color)
}

.page-title {
  position: relative;
  padding: 157px 0 160px 0;
  border-bottom: 1px solid #e4e9ec
}

.page-title .bg-layer {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 00px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.page-title .content-box {
  position: relative;
  display: block
}

.page-title .content-box h1 {
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 11px
}

.page-title .content-box .bread-crumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  color: var(--text-color)
}

.page-title .content-box .bread-crumb li i,
.page-title .content-box .bread-crumb li span {
  color: var(--theme-color)
}

.page-title .content-box .bread-crumb li:last-child span {
  text-decoration: underline
}

.page-title .content-box .bread-crumb li a {
  font-family: var(--text-font);
  color: var(--text-color)
}

.page-title .content-box .bread-crumb li a:hover {
  color: var(--theme-color)
}

.page-title .content-box .bread-crumb li i {
  position: relative;
  display: inline-block;
  top: 3px
}

.page-title .based-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 375px;
  padding-right: 40px;
  border-right: 1px solid #ebe9ef
}

.page-title .based-content .inner {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  padding: 50px 45px 46px 50px
}

.page-title .based-content .inner .logo-box {
  position: relative;
  display: block;
  margin-bottom: 65px
}

.page-title .based-content .inner .logo-box .logo {
  position: relative;
  display: block;
  margin-bottom: 45px
}

.page-title .based-content .inner .logo-box h5 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  color: #a5aaaf;
  padding-right: 110px
}

.page-title .based-content .inner .logo-box h5::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100px;
  height: 3px;
  right: 0;
  bottom: 11px
}

.page-title .based-content .inner .logo-box h5::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 50px;
  height: 1px;
  right: 50px;
  bottom: 7px
}

.page-title .based-content .inner .single-item {
  position: relative;
  display: block;
  padding-left: 100px
}

.page-title .based-content .inner .single-item .shape {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 90px;
  height: 162px;
  background-repeat: no-repeat
}

.page-title .based-content .inner .single-item h2 {
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  margin-bottom: 3px
}

.page-title .based-content .inner .single-item h5 {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #a5aaaf
}

.page-title .based-content .rotate-text {
  position: absolute;
  top: 0;
  right: 7px;
  writing-mode: vertical-lr;
  height: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-family: var(--title-font);
  color: #a5aaaf;
  font-weight: 600;
  transform: rotate(180deg)
}

.page-title .outer-container {
  position: relative;
  padding-left: 475px
}

.page-title .based-content .inner .single-item h2 span {
  font-weight: 300
}

.about-style-three.alternat-2 .rotate-text {
  color: #fff
}

.about-style-three.alternat-2 .rotate-text::before {
  background-color: #fff
}

.about-style-three.alternat-2 .content-box .inner-box .left-content .icon-box {
  color: #fff
}

.about-style-three .content-box .award-box {
  background-color: #f0f4f8
}

.bg-color-1 {
  background-color: #f0f4f8
}

.history-section {
  position: relative;
  padding: 112px 0
}

.history-section .tabs-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px
}

.history-section .tabs-inner {
  position: relative;
  display: block;
  background-color: #e2e7ed
}

.history-section .tabs-inner .image-box {
  position: relative;
  display: block;
  margin-right: -15px
}

.history-section .tabs-inner .image-box img {
  width: 100%
}

.history-section .tabs-inner .content-box {
  position: relative;
  display: block;
  padding: 45px 30px 44px 35px
}

.history-section .tabs-inner .content-box .title-text h2 {
  font-size: 30px;
  line-height: 38px
}

.history-section .tabs-inner .content-box .title-text {
  position: relative;
  display: block;
  padding-bottom: 22px;
  margin-bottom: 35px
}

.history-section .tabs-inner .content-box .title-text .title-shape {
  position: absolute;
  background-color: var(--theme-color);
  width: 70px;
  height: 1px;
  left: 0;
  bottom: 0
}

.history-section .tabs-inner .content-box .title-text .title-shape::before,
.history-section .tabs-inner .content-box .title-text .title-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  top: -10px
}

.history-section .tabs-inner .content-box .title-text .title-shape::before {
  left: 0
}

.history-section .tabs-inner .content-box .title-text .title-shape::after {
  right: 0
}

.history-section .tabs-inner .content-box p {
  margin-bottom: 17px
}

.history-section .tabs-inner .content-box h5 {
  font-size: 18px;
  line-height: 26px
}

.history-section .tab-btn-box {
  position: relative;
  display: block;
  padding-top: 24px;
  margin-top: 80px;
  border-top: 4px solid #cdd5dd
}

.history-section .tab-btn-box::before,
.history-section .tab-btn-box::after {
  position: absolute;
  content: '';
  background-color: #cdd5dd;
  width: 100%;
  height: 1px;
  left: 0
}

.history-section .tab-btn-box::before {
  top: -10px
}

.history-section .tab-btn-box::after {
  top: 5px
}

.history-section .tab-btn-box .tab-btns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px
}

.history-section .tab-btn-box .tab-btns li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #66696b;
  cursor: pointer;
  transition: all 500ms ease
}

.history-section .tab-btn-box .tab-btns li.active-btn {
  color: #0d202f
}

.history-section .tab-btn-box .tab-btns li:before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 30px;
  left: 50%;
  transform: translateY(-50%);
  top: -33px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease
}

.history-section .tab-btn-box .tab-btns li:after {
  position: absolute;
  content: '';
  border: 2px solid var(--theme-color);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  left: 50%;
  top: -59px;
  margin-left: -5px;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease
}

.history-section .tab-btn-box .tab-btns li.active-btn::before,
.history-section .tab-btn-box .tab-btns li.active-btn::after {
  opacity: 1
}

.contact-style-two {
  position: relative;
  padding: 120px 0 90px 0
}

.contact-style-two .tab-btn-box {
  position: relative;
  display: block;
  padding-right: 150px;
  margin-bottom: 42px
}

.contact-style-two .tab-btn-box .text {
  position: absolute;
  top: 16px;
  right: 0;
  display: block;
  font-size: 17px;
  color: #a5aaaf
}

.contact-style-two .tab-btn-box .owl-nav {
  position: absolute;
  top: 15px;
  right: -35px
}

.contact-style-two .tab-btn-box .tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer
}

.contact-style-two .tab-btn-box .tab-btn::before {
  position: absolute;
  content: '';
  background-color: #e4e9ec;
  width: 1px;
  height: 50px;
  top: 5px;
  left: -30px
}

.contact-style-two .tab-btn-box .tab-btn .image-box {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  min-width: 50px
}

.contact-style-two .tab-btn-box .tab-btn .image-box img {
  width: 100%;
  border-radius: 50%
}

.contact-style-two .tab-btn-box .tab-btn.active-btn .image-box,
.contact-style-two .tab-btn-box .tab-btn.active-btn .image-box img {
  border-radius: 0%
}

.contact-style-two .tab-btn-box .tab-btn h3 {
  font-size: 24px;
  line-height: 32px
}

.contact-style-two .tab-btn-box .tab-btn.active-btn h3 {
  color: var(--theme-color)
}

.contact-style-two .tab-btn-box .tab-btn span {
  position: relative;
  display: block
}

.contact-style-two .tab-btn-box .owl-nav button {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: #a5aaaf;
  cursor: pointer;
  margin: 0 5px;
  transition: all 500ms ease
}

.contact-style-two .tab-btn-box .owl-nav button.owl-prev span {
  position: relative;
  display: inline-block;
  transform: rotate(180deg)
}

.contact-style-two .tab-btn-box .owl-nav button:hover {
  color: var(--theme-color)
}

.contact-style-two .tab-btn-box .owl-nav button.owl-next::before {
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: 1px;
  height: 25px;
  left: -5px;
  top: 2px
}

.info-block-one .inner-box {
  position: relative;
  display: block;
  padding: 23px 20px 30px 20px;
  margin-bottom: 30px
}

.info-block-one .inner-box .shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.info-block-one .inner-box .title-box {
  position: relative;
  display: block;
  margin-bottom: 22px;
  padding-left: 25px
}

.info-block-one .inner-box .title-box::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 3px;
  height: calc(100% - 14px);
  left: 0;
  top: 7px
}

.info-block-one .inner-box .title-box::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 25px;
  left: 6px;
  top: 7px
}

.info-block-one .inner-box .title-box h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 6px
}

.info-block-one .inner-box .title-box h6 {
  font-size: 15px;
  line-height: 22px;
  color: #66696b;
  text-transform: uppercase
}

.info-block-one .inner-box .text-box {
  position: relative;
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 12px 20px
}

.info-block-one .inner-box .text-box p a {
  font-family: var(--text-font);
  color: var(--text-color)
}

.info-block-one .inner-box .text-box p a:hover {
  color: var(--theme-color)
}

.info-block-one .inner-box .text-box p span {
  color: #a5aaaf
}

.contact-style-three {
  position: relative;
  padding: 20px;
}

.contact-style-three .map-inner {
  position: relative;
  height: 712px
}

.contact-style-three .map-inner iframe {
  position: relative;
  width: 100%;
  height: 712px
}

.contact-style-three .map-inner .map-content {
  position: absolute;
  left: 50px;
  top: 50px;
  width: 270px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .12);
  padding: 22px 20px
}

.contact-style-three .map-inner .map-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 6px
}

.contact-style-three .map-inner .map-content::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 25px;
  height: 15px;
  left: 50%;
  margin-left: -12px;
  bottom: -15px;
  clip-path: polygon(50% 100%, 0 0, 100% 0)
}

.contact-style-three .content-box {
  position: relative;
  display: block;
  border: 1px solid #e4e9ec;
  padding: 42px 40px 49px 40px
}

.contact-style-three .content-box .form-inner form {
  position: relative;
  margin: 0 5px
}

.contact-style-three .content-box .form-inner .single-column {
  padding: 0 10px
}

.contact-style-three .content-box .form-inner .form-group {
  position: relative;
  margin-bottom: 20px
}

.contact-style-three .content-box .form-inner .form-group .icon-box {
  position: absolute;
  left: 19px;
  top: 12px;
  z-index: 1
}

.contact-style-three .content-box .form-inner .form-group .select-box {
  min-height: 60px
}

.contact-style-three .content-box .form-inner .form-group input[type='text'],
.contact-style-three .content-box .form-inner .form-group input[type='email'],
.contact-style-three .content-box .form-inner .form-group textarea,
.contact-style-three .content-box .form-inner .form-group .nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid #ebe9ef;
  font-size: 17px;
  color: var(--text-color);
  padding: 10px 20px 10px 50px;
  transition: all 500ms ease
}

.contact-style-three .content-box .form-inner .form-group input:focus,
.contact-style-three .content-box .form-inner .form-group textarea:focus {
  border-color: var(--theme-color)
}

.contact-style-three .content-box .form-inner .form-group textarea {
  height: 107px;
  resize: none
}

.contact-style-three .content-box .form-inner .form-group .nice-select::before {
  top: 15px;
  right: 20px
}

.pricing-section.alternat-3 {
  background-color: #fff
}

.pricing-section.alternat-3 .tabs-box .tab-btns li {
  background-color: #f0f4f8
}

.faq-page-section {
  position: relative;
  padding: 120px 0 90px 0
}

.faq-page-section .accordion_style_one .accordion {
  border-color: #e4e9ec
}

.faq-page-section .accordion_style_one .accordion .acc-btn h4 {
  color: var(--title-color)
}

.faq-page-section .accordion_style_one .accordion .acc-btn.active h4 {
  color: #fff
}

.faq-page-section .accordion_style_one .accordion.active-block {
  background-color: #f0f4f8;
  border-color: #f0f4f8
}

.faq-page-section .accordion_style_one .accordion .acc-content p {
  color: var(--text-color)
}

.testimonial-page-section {
  position: relative;
  padding: 120px 0 90px 0
}

.testimonial-page-section .testimonial-block-one .inner-box {
  background-color: #f0f4f8;
  margin-bottom: 30px
}

.testimonial-block-one .inner-box .author-box .rating-box i {
  color: #ffa534
}

.service-page-section {
  position: relative;
  background-color: #f0f4f8;
  padding: 120px 0
}

.service-page-section .inner-container {
  position: relative;
  border: 1px solid #dbdfe3
}

.service-page-section .inner-container .border-line {
  position: absolute;
  content: '';
  background-color: #dbdfe3;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%
}

.service-page-two-section {
  position: relative;
  padding: 120px 0 90px 0;
  background-color: #f0f4f8
}

.service-page-two-section .service-block-three .inner-box h6 {
  color: #a5aaaf
}

.service-page-two-section .service-block-three .inner-box .icon-box {
  background-color: #f0f4f8
}

.service-page-two-section .service-block-three .inner-box:hover .icon-box {
  color: var(--theme-color)
}

.service-page-two-section .service-block-three .inner-box .link-box a {
  background-color: #f0f4f8
}

.service-page-two-section .service-block-three .inner-box .overlay-content .theme-btn,
.service-page-two-section .service-block-three .inner-box .overlay-content .theme-btn i {
  color: #fff
}

.service-page-two-section .service-block-three .inner-box .overlay-content p {
  color: #a5aaaf
}

.service-page-three-section {
  position: relative;
  padding: 120px 0 90px 0
}

.service-page-three-section .service-block-two .inner-box,
.service-page-three-section .service-block-two .inner-box .content-box .overlay-content {
  background-color: #f0f4f8
}

.service-page-three-section .service-block-two .inner-box .content-box .link a {
  background-color: #e2e7ed
}

.service-page-three-section .sidebar-content .inner-box {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  padding: 32px 40px 40px 40px
}

.service-page-three-section .sidebar-content .inner-box h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 32px
}

.service-page-three-section .sidebar-content .inner-box h2 span {
  font-weight: 300
}

.service-page-three-section .sidebar-content .inner-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 24px
}

.service-page-three-section .sidebar-content .inner-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: calc(50% - 45px);
  height: 1px;
  left: 0;
  top: 25px
}

.service-page-three-section .sidebar-content .inner-box .icon-box::after {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: calc(50% - 45px);
  height: 1px;
  right: 0;
  top: 25px
}

.service-page-three-section .sidebar-content .inner-box .icon-box .icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: #fff
}

.service-page-three-section .sidebar-content .inner-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 7px
}

.service-page-three-section .sidebar-content .inner-box h4 a {
  display: inline-block;
  color: #fff
}

.service-page-three-section .sidebar-content .inner-box h4 a:hover,
.service-page-three-section .sidebar-content .inner-box p a:hover {
  color: var(--theme-color)
}

.service-page-three-section .sidebar-content .inner-box p a {
  display: inline-block;
  font-family: var(--text-font);
  color: #a5aaaf;
  margin-bottom: 32px
}

.service-page-three-section .sidebar-content .inner-box .theme-btn {
  border: 1px solid var(--theme-color);
  background-color: #fff0;
  padding: 15px 28px;
  width: 100%
}

.service-page-three-section .sidebar-content .inner-box .theme-btn:hover {
  border-color: var(--theme-color)
}

.faq-page-section .accordion_style_one .accordion .acc-btn.active {
  background-color: var(--secondary-color)
}

.service-details {
  position: relative;
  padding: 120px 0
}

.service-details-content {
  position: relative;
  display: block
}

.service-details-content h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px
}

.service-details-content .image-box {
  position: relative;
  display: block;
  margin-bottom: 43px
}

.service-details-content .image-box img {
  width: 100%
}

.service-details-content .text-box {
  position: relative;
  display: block;
  margin-bottom: 32px
}

.service-details-content .text-box h3 {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 18px
}

.service-details-content .content-two .owl-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  counter-reset: slides-num;
  min-height: 30px;
  min-width: 51px
}

.service-details-content .content-two .owl-dots::after {
  position: absolute;
  right: 0;
  top: 17px;
  content: "/0" counter(slides-num);
  display: inline-block;
  font-size: 18px;
  color: #a6a5ad;
  font-weight: 600;
  font-family: var(--title-font)
}

.service-details-content .content-two .owl-dots button span {
  display: none !important
}

.service-details-content .content-two .owl-dots button {
  position: absolute;
  top: 14px;
  left: 7px;
  counter-increment: slides-num;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600
}

.service-details-content .content-two .owl-dots button.active:before {
  position: absolute;
  content: counter(slides-num)
}

.service-details-content .content-two .owl-dots button.active:after {
  position: absolute;
  content: '0';
  top: 0;
  right: 0
}

.service-details-content .content-two .owl-nav {
  position: relative;
  margin-top: 10px
}

.service-details-content .content-two .owl-nav::before {
  position: absolute;
  content: '';
  background-color: #ebe9ef;
  width: calc(100% - 255px);
  height: 1px;
  left: 176px;
  top: 13px
}

.service-details-content .content-three .single-item {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 22px
}

.service-details-content .content-three .single-item .icon-box {
  position: relative;
  display: inline-block;
  width: 60px;
  min-width: 60px;
  height: 70px;
  line-height: 80px;
  text-align: center;
  font-size: 30px;
  color: var(--theme-color);
  z-index: 1;
  transition: all 500ms ease
}

.service-details-content .content-three .single-item:hover .icon-box {
  color: #fff
}

.service-details-content .content-three .single-item .icon-box .icon-shape .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transition: all 500ms ease
}

.service-details-content .content-three .single-item:hover .icon-box .icon-shape .shape-1 {
  opacity: 0
}

.service-details-content .content-three .single-item .icon-box .icon-shape .shape-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0;
  transition: all 500ms ease
}

.service-details-content .content-three .single-item:hover .icon-box .icon-shape .shape-2 {
  opacity: 1
}

.service-details-content .content-three .single-item .title-text {
  position: relative;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 24px
}

.service-details-content .content-three .single-item .title-text h3 {
  font-size: 24px;
  line-height: 32px
}

.service-details-content .content-three .single-item .title-text .title-shape {
  position: absolute;
  background-color: var(--theme-color);
  width: 70px;
  height: 1px;
  left: 0;
  bottom: 0
}

.service-details-content .content-three .single-item .title-text .title-shape::before,
.service-details-content .content-three .single-item .title-text .title-shape::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 1px;
  height: 20px;
  top: -10px
}

.service-details-content .content-three .single-item .title-text .title-shape::before {
  left: 0
}

.service-details-content .content-three .single-item .title-text .title-shape::after {
  right: 0
}

.service-details-content .content-four .industries-block-two .inner-box h3 {
  color: var(--title-color)
}

.service-details-content .content-four .industries-block-two .inner-box p {
  color: var(--text-color)
}

.service-details-content .content-four .industries-block-two .inner-box .image-box .link a:before {
  background-color: #f0f4f8
}

.service-details-content .content-four .industries-block-two .inner-box:hover .image-box .link a:before {
  background-color: var(--theme-color)
}

.service-details-content .accordion_style_one .accordion .acc-btn.active {
  background-color: var(--secondary-color)
}

.service-details-content .accordion_style_one .accordion {
  border-color: #e4e9ec
}

.service-details-content .accordion_style_one .accordion .acc-btn h4 {
  color: var(--title-color)
}

.service-details-content .accordion_style_one .accordion .acc-btn.active h4 {
  color: #fff
}

.service-details-content .accordion_style_one .accordion.active-block {
  background-color: #f0f4f8;
  border-color: #f0f4f8
}

.service-details-content .accordion_style_one .accordion .acc-content p {
  color: var(--text-color)
}

.service-sidebar {
  position: relative;
  display: block
}

.service-sidebar .widget-title {
  position: relative;
  display: block;
  padding-bottom: 13px;
  margin-bottom: 35px
}

.service-sidebar .widget-title h3 {
  font-size: 24px;
  line-height: 32px
}

.service-sidebar .widget-title::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100px;
  height: 3px;
  left: 0;
  bottom: 4px
}

.service-sidebar .widget-title::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 50px;
  height: 1px;
  left: 0;
  bottom: 0
}

.service-sidebar .category-widget .category-list li {
  position: relative;
  display: block;
  margin-bottom: 10px
}

.service-sidebar .category-widget .category-list li:last-child {
  margin-bottom: 0
}

.service-sidebar .category-widget .category-list li a {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--title-color);
  border: 1px solid var(--secondary-color);
  padding: 15px 20px 15px 80px
}

.service-sidebar .category-widget .category-list li a:hover,
.service-sidebar .category-widget .category-list li a.current {
  color: var(--theme-color);
  border-color: var(--theme-color)
}

.service-sidebar .category-widget .category-list li a .static-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  line-height: 66px;
  background-color: #f0f4f8;
  text-align: center;
  font-size: 24px;
  color: var(--title-color);
  transition: all 500ms ease
}

.service-sidebar .category-widget .category-list li a:hover .static-icon,
.service-sidebar .category-widget .category-list li a.current .static-icon {
  opacity: 0
}

.service-sidebar .category-widget .category-list li a .overlay-icon {
  position: absolute;
  left: 9px;
  top: 9px;
  display: inline-block;
  width: 50px;
  height: 40px;
  line-height: 46px;
  background-color: var(--theme-color);
  font-size: 20px;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: all 500ms ease
}

.service-sidebar .category-widget .category-list li a:hover .overlay-icon,
.service-sidebar .category-widget .category-list li a.current .overlay-icon {
  opacity: 1
}

.service-sidebar .contact-widget .inner-box {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  padding: 32px 40px 40px 40px
}

.service-sidebar .contact-widget .inner-box h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 32px
}

.service-sidebar .contact-widget .inner-box h2 span {
  font-weight: 300
}

.service-sidebar .contact-widget .inner-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 24px
}

.service-sidebar .contact-widget .inner-box .icon-box::before {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: calc(50% - 45px);
  height: 1px;
  left: 0;
  top: 25px
}

.service-sidebar .contact-widget .inner-box .icon-box::after {
  position: absolute;
  content: '';
  background-color: #4a4467;
  width: calc(50% - 45px);
  height: 1px;
  right: 0;
  top: 25px
}

.service-sidebar .contact-widget .inner-box .icon-box .icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: #fff
}

.service-sidebar .contact-widget .inner-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 7px
}

.service-sidebar .contact-widget .inner-box h4 a {
  display: inline-block;
  color: #fff
}

.service-sidebar .contact-widget .inner-box h4 a:hover,
.service-sidebar .contact-widget .inner-box p a:hover {
  color: var(--theme-color)
}

.service-sidebar .contact-widget .inner-box p a {
  display: inline-block;
  font-family: var(--text-font);
  color: #a5aaaf;
  margin-bottom: 32px
}

.service-sidebar .contact-widget .inner-box .theme-btn {
  border: 1px solid var(--theme-color);
  background-color: #fff0;
  padding: 15px 28px;
  width: 100%
}

.service-sidebar .contact-widget .inner-box .theme-btn:hover {
  border-color: var(--theme-color)
}

.industries-section.industries-page-section::before {
  display: none
}

.industries-section.industries-page-section .inner-container {
  padding: 0;
  margin: 0
}

.industries-section.industries-page-section .inner-container::before,
.industries-section.industries-page-section .inner-container::after {
  width: 100%
}

.industries-section .tab-btns .tab-btn .image {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0, 0);
  transition: all 500ms ease
}

.industries-section .tab-btns .tab-btn.active-btn .image {
  transform: scale(1, 1)
}

.industries-details {
  position: relative;
  padding: 112px 0 90px 0
}

.project-style-three {
  position: relative;
  padding: 112px 0
}

.project-style-three .project-block-two .inner-box .bg-layer::before {
  background: -webkit-linear-gradient(90deg, rgb(25 47 66) 0%, rgb(25 47 66 / .1) 50%)
}

.sortable-masonry .filter-tabs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px
}

.sortable-masonry .filter-tabs li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--title-font);
  color: #a5aaaf;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 500ms ease
}

.sortable-masonry .filter-tabs li.active {
  color: var(--theme-color)
}

.sortable-masonry .filter-tabs li i {
  position: relative;
  display: inline-block;
  top: 2px
}

.project-style-four {
  position: relative;
  padding: 112px 0 90px 0
}

.project-style-four .project-block-one .inner-box {
  width: 100%
}

.project-style-four .project-tab .p-tab .project-block-one {
  margin-left: 70px
}

.project-style-four .project-block-one .inner-box .content-box {
  left: -80px
}

.project-style-four .project-block-one .inner-box:hover .content-box {
  opacity: 1;
  left: -70px
}

.project-style-four .project-block-one .inner-box:hover .category {
  color: var(--theme-color)
}

.project-style-four .project-block-one .inner-box {
  margin-bottom: 30px
}

.project-style-five {
  position: relative;
  padding: 112px 0
}

.project-block-three .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px
}

.project-block-three .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--secondary-color)
}

.project-block-three .inner-box .image-box img {
  width: 100%;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.project-block-three .inner-box:hover .image-box img {
  opacity: .1;
  transform: scale(1.1)
}

.project-block-three .inner-box .text-box {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  text-align: center
}

.project-block-three .inner-box .text-box h3 {
  font-size: 24px;
  line-height: 32px;
  top: 15px;
  opacity: 0;
  z-index: 1;
  max-width: 250px;
  margin: 0 auto;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.project-block-three .inner-box:hover .text-box h3 {
  top: 0;
  opacity: 1
}

.project-block-three .inner-box .text-box h3 a {
  display: inline-block;
  color: #fff
}

.project-block-three .inner-box .text-box h3 a:hover {
  text-decoration: underline
}

.project-block-three .inner-box .view-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2
}

.project-block-three .inner-box .view-btn a {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 64px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  left: -56px;
  bottom: -56px;
  color: var(--title-color)
}

.project-block-three .inner-box .view-btn a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.project-block-three .inner-box:hover .view-btn a {
  left: 0;
  bottom: 0
}

.project-details {
  position: relative;
  padding: 120px 0 90px 0
}

.project-details .upper-box .image-box {
  position: relative;
  display: block;
  margin-right: 25px
}

.project-details .upper-box .image-box img {
  width: 100%
}

.project-details .upper-box .content-box {
  position: relative;
  display: block
}

.project-details .upper-box .content-box h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 32px;
  max-width: 450px
}

.project-details .upper-box .content-box h3 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-top: 42px;
  margin-bottom: 22px
}

.list-style-one li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px
}

.list-style-one li:last-child {
  margin-bottom: 0
}

.list-style-one li i {
  color: var(--theme-color)
}

.project-details .info-box {
  position: relative;
  display: block;
  border-bottom: 1px solid #e4e9ec
}

.project-details .info-box .single-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid #e4e9ec;
  padding-bottom: 24px
}

.project-details .info-box .single-column:last-child .single-item {
  border-right: none
}

.project-details .info-box .single-item .icon-box {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 56px;
  min-width: 50px;
  border: 1px solid #dcdfe8;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  color: var(--theme-color)
}

.project-details .info-box .single-item span {
  position: relative;
  display: block
}

.project-details .info-box .single-item h5 {
  display: block;
  font-size: 18px;
  line-height: 26px
}

.project-details .lower-box .text-box {
  position: relative;
  display: block;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 32px
}

.project-details .lower-box .text-box h3 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 23px
}

.project-details .lower-box .single-item {
  position: relative;
  display: block;
  background-color: #f0f4f8;
  padding: 32px 40px;
  margin-bottom: 30px
}

.project-details .lower-box .single-item h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px
}

.project-details .lower-box .single-item h3 i {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--theme-color);
  top: 2px
}

.project-details .related-project h2 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 28px
}

.sidebar-page-container {
  position: relative
}

.news-block-four .inner-box {
  position: relative;
  display: block;
  margin-bottom: 40px
}

.news-block-four .inner-box .image-box {
  position: relative;
  display: block;
  max-width: 570px
}

.news-block-four .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--secondary-color)
}

.news-block-four .inner-box .image-box .image img {
  width: 100%;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.news-block-four .inner-box:hover .image-box .image img {
  transform: scale(1.1)
}

.news-block-four .inner-box .image-box .post-date {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  background-color: #fff;
  text-align: center;
  z-index: 1
}

.news-block-four .inner-box .image-box .post-date h2 {
  display: block;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  padding: 10px 0
}

.news-block-four .inner-box .image-box .post-date span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  background-color: var(--theme-color);
  padding: 4.5px 0
}

.news-block-four .inner-box .content-box {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 40px;
  z-index: 1;
  max-width: 440px;
  width: 100%
}

.news-block-four .inner-box .content-box .author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px
}

.news-block-four .inner-box .content-box .author-box .author-image {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  min-width: 46px
}

.news-block-four .inner-box .content-box .author-box .author-image img {
  width: 100%;
  border-radius: 50%
}

.news-block-four .inner-box .content-box .author-box h5 {
  display: block;
  font-size: 18px;
  line-height: 26px
}

.news-block-four .inner-box .content-box .author-box button,
.news-block-one .inner-box .upper-content .info-box .author-box button {
  position: relative;
  display: block;
  color: var(--text-color);
  transition: all 500ms ease
}

.news-block-four .inner-box .content-box .author-box button:hover,
.news-block-four .inner-box .content-box .author-box button:focus,
.news-block-one .inner-box .upper-content .info-box .author-box button:hover,
.news-block-one .inner-box .upper-content .info-box .author-box button:focus {
  color: var(--theme-color)
}

.news-block-four .inner-box .content-box h2 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 18px
}

.news-block-four .inner-box .content-box h2 a {
  display: inline-block;
  color: var(--title-color)
}

.news-block-four .inner-box .content-box h2 a:hover {
  color: var(--theme-color)
}

.news-block-four .inner-box .content-box .link a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
  background-color: #f0f4f8;
  border: 1px solid #f0f4f8;
  padding: 3px 10px
}

.news-block-four .inner-box .content-box .link a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  background-color: #fff0
}

.blog-sidebar {
  position: relative;
  display: block;
  padding: 50px 30px;
  border: 1px solid #e4e9ec
}

.blog-sidebar .search-widget .form-group {
  position: relative;
  display: block;
  margin-bottom: 0
}

.blog-sidebar .search-widget .form-group input[type='search'] {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #e4e9ec;
  font-size: 17px;
  color: #a5aaaf;
  padding: 10px 65px 10px 20px;
  transition: all 500ms ease
}

.blog-sidebar .search-widget .form-group button[type='submit'] {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 55px;
  height: 54px;
  line-height: 58px;
  background-color: #f0f4f8;
  text-align: center;
  font-size: 24px;
  color: var(--title-color);
  transition: all 500ms ease
}

.blog-sidebar .search-widget .form-group input:focus+button,
.blog-sidebar .search-widget .form-group button:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.blog-sidebar .search-widget .form-group input:focus {
  border-color: var(--theme-color)
}

.blog-sidebar .widget-title {
  position: relative;
  display: block;
  padding-bottom: 13px;
  margin-bottom: 35px
}

.blog-sidebar .widget-title h3 {
  font-size: 24px;
  line-height: 32px
}

.blog-sidebar .widget-title::before {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 100px;
  height: 3px;
  left: 0;
  bottom: 4px
}

.blog-sidebar .widget-title::after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  width: 50px;
  height: 1px;
  left: 0;
  bottom: 0
}

.blog-sidebar .category-widget .category-list li {
  position: relative;
  display: block;
  padding: 13.5px 0;
  border-bottom: 1px dashed #a5aaaf
}

.blog-sidebar .category-widget .category-list li:last-child {
  border-bottom: none
}

.blog-sidebar .category-widget .category-list li a {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: var(--title-color);
  text-transform: uppercase
}

.blog-sidebar .category-widget .category-list li a:hover {
  color: var(--theme-color)
}

.blog-sidebar .category-widget .category-list li a .text {
  position: relative;
  padding-right: 31px
}

.blog-sidebar .category-widget .category-list li a .text::before {
  position: absolute;
  content: "\f10e";
  font-family: 'flaticon_metallic';
  font-size: 21px;
  top: -2px;
  right: 10px;
  color: var(--theme-color);
  font-weight: 400;
  opacity: 0;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.blog-sidebar .category-widget .category-list li a:hover .text::before {
  right: 0;
  opacity: 1
}

.blog-sidebar .category-widget .category-list li a .count {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: var(--theme-color);
  opacity: 0;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.blog-sidebar .category-widget .category-list li a:hover .count {
  opacity: 1
}

.blog-sidebar .category-widget .category-list li a i {
  position: absolute;
  top: 1px;
  right: 0;
  font-size: 20px;
  color: #a5aaaf;
  transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.blog-sidebar .category-widget .category-list li a:hover i {
  opacity: 0
}

.blog-sidebar .category-widget .widget-title {
  margin-bottom: 22px
}

.blog-sidebar .post-widget .post {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px
}

.blog-sidebar .post-widget .post:last-child {
  margin-bottom: 0
}

.blog-sidebar .post-widget .post .post-image {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  overflow: hidden;
  min-width: 70px
}

.blog-sidebar .post-widget .post .post-image img {
  width: 100%
}

.blog-sidebar .post-widget .post h6 {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #a5aaaf;
  text-transform: uppercase
}

.blog-sidebar .post-widget .post h5 {
  display: block;
  font-size: 18px;
  line-height: 26px
}

.blog-sidebar .post-widget .post h5 a {
  display: inline-block;
  color: var(--title-color)
}

.blog-sidebar .post-widget .post h5 a:hover {
  color: var(--theme-color)
}

.blog-sidebar .tags-widget .tags-list {
  position: relative;
  margin: 0 -2.5px
}

.blog-sidebar .tags-widget .tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin: 0 2.5px 5px 2.5px
}

.blog-sidebar .tags-widget .tags-list li a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: var(--text-font);
  color: #66696b;
  background-color: #f0f4f8;
  padding: 6px 15px
}

.blog-sidebar .tags-widget .tags-list li a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.blog-sidebar .subscribe-widget .inner-box {
  position: relative;
  display: block;
  background-color: var(--secondary-color);
  padding: 40px
}

.blog-sidebar .subscribe-widget .inner-box h4 {
  position: absolute;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #a5aaaf;
  text-transform: uppercase;
  left: -15px;
  top: 25px;
  transform: rotate(-45deg)
}

.blog-sidebar .subscribe-widget .inner-box::before {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100px;
  height: 100px;
  left: 0;
  top: -1px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%)
}

.blog-sidebar .subscribe-widget .inner-box::after {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100px;
  height: 100px;
  right: 0;
  bottom: -1px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%)
}

.blog-sidebar .subscribe-widget .inner-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 22px
}

.blog-sidebar .subscribe-widget .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 22px
}

.blog-sidebar .subscribe-widget .inner-box h3 span {
  font-weight: 300
}

.blog-sidebar .subscribe-widget .inner-box .form-inner .form-group {
  position: relative;
  margin-bottom: 0
}

.blog-sidebar .subscribe-widget .inner-box .form-inner .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #324c62;
  font-size: 17px;
  color: #a5aaaf;
  margin-bottom: 15px;
  padding: 10px 18px;
  transition: all 500ms ease
}

.blog-sidebar .subscribe-widget .inner-box .form-inner .form-group input:focus {
  border-color: var(--theme-color)
}

.blog-sidebar .subscribe-widget .inner-box .form-inner .form-group button[type='submit'] {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 42px;
  line-height: 48px;
  background-color: #243d53;
  text-align: center;
  font-size: 22px;
  color: #fff;
  transition: all 500ms ease
}

.blog-sidebar .subscribe-widget .inner-box .form-inner .form-group button:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.blog-sidebar .subscribe-widget .inner-box .light-icon {
  position: absolute;
  top: 0;
  right: 0
}

.blog-details-content {
  position: relative;
  display: block
}

.blog-details-content .content-one .image-box {
  position: relative;
  display: block;
  margin-bottom: 32px
}

.blog-details-content .content-one .image-box img {
  width: 100%
}

.blog-details-content .content-one .image-box .post-date {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  background-color: #fff;
  text-align: center;
  z-index: 1
}

.blog-details-content .content-one .image-box .post-date h2 {
  display: block;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  padding: 10px 0
}

.blog-details-content .content-one .image-box .post-date span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 500;
  background-color: var(--theme-color);
  padding: 4.5px 0
}

.blog-details-content .content-one h2 {
  display: block;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 20px
}

.blog-details-content .content-one .info-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 32px
}

.blog-details-content .content-one .info-list li {
  position: relative;
  display: inline-block
}

.blog-details-content .content-one .info-list li::before {
  position: absolute;
  content: '';
  background-color: #e4e9ec;
  width: 1px;
  height: 46px;
  top: 4px;
  right: -30px
}

.blog-details-content .content-one .info-list li:last-child:before {
  display: none
}

.blog-details-content .content-one .info-list li h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #a5aaaf;
  margin-bottom: 3px
}

.blog-details-content .content-one .info-list li h6 {
  display: block;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase
}

.blog-details-content .content-one .info-list .author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px
}

.blog-details-content .content-one .info-list .author-box .author-image {
  position: relative;
  display: inline-block;
  width: 46px;
  min-width: 46px;
  border-radius: 50%
}

.blog-details-content .content-one .info-list .author-box .author-image img {
  width: 100%;
  border-radius: 50%
}

.blog-details-content .content-one .info-list .author-box h5 {
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color)
}

.blog-details-content .content-one .info-list .author-box span {
  position: relative;
  display: block
}

.blog-details-content .content-one .text-box p:first-child {
  padding-left: 60px
}

.blog-details-content .content-one .text-box p:first-child span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--theme-color);
  font-size: 30px;
  color: #fff;
  font-family: var(--title-font);
  font-weight: 600;
  text-align: center
}

.blog-details-content blockquote {
  position: relative;
  display: block;
  padding: 34px 40px 36px 70px;
  margin-bottom: 0;
  border-top: 4px solid #000
}

.blog-details-content blockquote::before {
  position: absolute;
  content: '';
  background-color: #000;
  width: 100%;
  height: 1px;
  left: 0;
  top: 5px
}

.blog-details-content blockquote .icon-box {
  position: absolute;
  left: 0;
  top: 37px;
  font-size: 50px;
  color: var(--theme-color)
}

.blog-details-content blockquote h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 16px
}

.blog-details-content blockquote h6 {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  color: #66696b;
  text-transform: uppercase;
  padding-left: 40px
}

.blog-details-content blockquote h6:before {
  position: absolute;
  content: '';
  background-color: var(--secondary-color);
  width: 30px;
  height: 1px;
  left: 0;
  top: 11px
}

.blog-details-content blockquote h6 a {
  position: relative;
  display: inline-block;
  font-family: var(--text-font);
  color: #a5aaaf
}

.blog-details-content blockquote h6 a:hover {
  color: var(--theme-color)
}

.blog-details-content .text-box h3 {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px
}

.blog-details-content .content-two .list-item li {
  position: relative;
  display: block;
  padding-left: 32px;
  margin-bottom: 17px
}

.blog-details-content .content-two .list-item li:last-child {
  margin-bottom: 0
}

.blog-details-content .content-two .list-item li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 18px;
  color: var(--theme-color)
}

.blog-details-content .content-two .list-item li span {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600
}

.blog-details-content .content-three .inner-box {
  position: relative;
  padding-left: 40px
}

.blog-details-content .content-three .inner-box::before {
  position: absolute;
  content: '';
  background-color: #e4e9ec;
  width: 4px;
  height: calc(100% - 12px);
  left: 0;
  top: 6px
}

.blog-details-content .content-three .inner-box::after {
  position: absolute;
  content: '';
  background-color: #e4e9ec;
  width: 1px;
  height: calc(100% - 12px);
  left: 9px;
  top: 6px
}

.blog-details-content .content-three .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 14px
}

.blog-details-content .content-three .inner-box .list-item li {
  position: relative;
  display: block;
  padding-left: 26px;
  margin-bottom: 12px
}

.blog-details-content .content-three .inner-box .list-item li:last-child {
  margin-bottom: 0
}

.blog-details-content .content-three .inner-box .list-item li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 18px;
  color: var(--theme-color)
}

.blog-details-content .post-tags h5 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 17px
}

.blog-details-content .post-tags h5 i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--theme-color);
  top: 4px
}

.blog-details-content .post-tags .tags-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px
}

.blog-details-content .post-tags .tags-list li {
  position: relative;
  display: inline-block;
  margin-bottom: 5px
}

.blog-details-content .post-tags .tags-list li a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: var(--text-font);
  color: #66696b;
  background-color: #f0f4f8;
  padding: 6px 15px
}

.blog-details-content .post-tags .tags-list li a:hover {
  color: #fff;
  background-color: var(--theme-color)
}

.blog-details-content .post-nav .post-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.blog-details-content .post-nav .post-nav-btn::before {
  position: absolute;
  content: '';
  background-color: #e4e9ec;
  width: 1px;
  height: 70px;
  top: 3px;
  left: 50%
}

.blog-details-content .post-nav .single-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px
}

.blog-details-content .post-nav .single-btn h6 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 6px;
  text-transform: uppercase
}

.blog-details-content .post-nav .single-btn h6 a {
  display: inline-block;
  color: var(--title-color)
}

.blog-details-content .post-nav .single-btn h6 a:hover {
  color: var(--theme-color)
}

.blog-details-content .post-nav .single-btn h6 i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  height: 20px;
  color: var(--theme-color);
  top: 0
}

.blog-details-content .post-nav .single-btn:first-child h6 i {
  display: inline-block;
  transform: rotate(180deg)
}

.blog-details-content .post-nav .single-btn:last-child h6 {
  justify-content: right
}

.blog-details-content .post-nav .single-btn h4 {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px
}

.blog-details-content .post-nav .single-btn h5 a {
  display: inline-block;
  color: var(--title-color)
}

.blog-details-content .post-nav .single-btn h5 a:hover {
  color: var(--theme-color)
}

.blog-details-content .post-nav .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 15px;
  line-height: 22px;
  color: var(--title-color);
  font-weight: 600;
  background: #f0f4f8;
  padding: 17px 30px;
  text-transform: uppercase
}

.blog-details-content .post-nav .btn-box a i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color);
  top: 2px
}

.blog-details-content .post-nav .btn-box a:hover {
  color: var(--theme-color);
  background: #fff;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1)
}

.blog-details-content .comment-box .single-comment-box {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 26px
}

.blog-details-content .comment-box .single-comment-box:last-child {
  margin-bottom: 0
}

.blog-details-content .comment-box .single-comment-box .image-box {
  position: relative;
  display: block;
  min-width: 70px;
  width: 70px
}

.blog-details-content .comment-box .single-comment-box .image-box img {
  width: 100%
}

.blog-details-content .comment-box .single-comment-box h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px
}

.blog-details-content .comment-box .single-comment-box h4 span {
  font-size: 15px;
  color: #a5aaaf;
  text-transform: uppercase
}

.blog-details-content .comment-box .single-comment-box p {
  margin-bottom: 12px
}

.blog-details-content .comment-box .single-comment-box h6 a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color)
}

.blog-details-content .comment-box .single-comment-box h6 a:hover {
  color: var(--theme-color)
}

.blog-details-content .comment-box .single-comment-box h6 a i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  top: 2px
}

.blog-details-content .comment-form-area .text-box h3 {
  margin-bottom: 12px
}

.blog-details-content .comment-form-area .form-inner .form-group {
  position: relative;
  padding: 0 10px;
  margin-bottom: 20px
}

.blog-details-content .comment-form-area .form-inner .form-group:last-child {
  margin-bottom: 0
}

.blog-details-content .comment-form-area .form-inner .form-group input[type='text'],
.blog-details-content .comment-form-area .form-inner .form-group input[type='email'],
.blog-details-content .comment-form-area .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #e4e9ec;
  font-size: 17px;
  color: #a5aaaf;
  padding: 10px 20px;
  transition: all 500ms ease
}

.blog-details-content .comment-form-area .form-inner .form-group textarea {
  height: 120px;
  resize: none;
  padding-top: 15px
}

.blog-details-content .comment-form-area .form-inner .form-group input:focus,
.blog-details-content .comment-form-area .form-inner .form-group textarea:focus {
  border-color: var(--theme-color)
}

.blog-details-content .comment-form-area .form-inner form {
  position: relative;
  margin: 0 5px
}

.check-box-two input {
  display: none
}

.check-box-two label {
  position: relative;
  font-size: 17px;
  line-height: 26px;
  color: var(--text-color);
  padding-left: 28px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0
}

.check-box-two label:before {
  position: absolute;
  content: '';
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e0e0
}

.check-box-two label:after {
  position: absolute;
  content: "";
  background: var(--theme-color);
  width: 6px;
  height: 6px;
  left: 5px;
  top: 10px;
  opacity: 0;
  transition: all 500ms ease
}

.check-box-two input:checked+label:after {
  opacity: 1
}

.menu-area .mobile-nav-toggler {
  background-color: var(--theme-color)
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999
}

.icon-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgb(0 0 0 / .3);
  transition: all 0.3s ease-in-out;
  animation: floating 2s infinite ease-in-out
}

.whatsapp-btn {
  background-color: #feb251
}

.phone-btn {
  background-color: #feb251
}

.icon-btn:hover {
  background-color: var(--cleniq-primary);
  color: #fff
}

@keyframes floating {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

@media (max-width:768px) {
  .floating-icons {
    left: 10px;
    bottom: 60px
  }

  .icon-btn {
    width: 50px;
    height: 50px;
    font-size: 18px
  }
}

@media (max-width:480px) {
  .floating-icons {
    left: 5px;
    bottom: 50px
  }

  .icon-btn {
    width: 45px;
    height: 45px;
    font-size: 22px
  }
}