/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --austry-font: "Manrope", sans-serif;
  --austry-white: #ffffff;
  --austry-white-rgb: 255, 255, 255;
  --austry-base: #D6B10D;
  --austry-base-rgb: 252, 129, 27;
  --austry-black: #2F2483;
  --austry-black-rgb: 19, 34, 60;
  --austry-extra: #eff1f5;
  --austry-extra-rgb: 239, 241, 245;
  --austry-gray: #76787c;
  --austry-gray-rgb: 118, 120, 124;
  --austry-bdr-color: #dfe3ea;
  --austry-bdr-color-rgb: 233, 227, 234;
  --austry-letter-spacing: -0.04em;
  --austry-letter-spacing-two: 0.1em;
}

.row {
  --bs-gutter-x: 30px;
}


/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  padding-bottom: 90px;
  z-index: 1;
  overflow: hidden;
}

.counter-one .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.counter-one__single {
  position: relative;
  display: block;
  background-color: var(--austry-base);
  margin-left: 70px;
  padding: 34px 25px 38px;
  padding-left: 100px;
  margin-bottom: 30px;
}

.counter-one__icon-box {
  position: absolute;
  left: -81px;
  top: -11px;
}

.counter-one__shape {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}

.counter-one__shape img {
  width: auto;
}

.counter-one__single:hover .counter-one__shape {
  opacity: 0;
}

.counter-one__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__shape-2 img {
  width: auto;
}

.counter-one__single:hover .counter-one__shape-2 {
  opacity: 1;
}

.counter-one__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--austry-black);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon span {
  transform: scale(0.9);
  color: var(--austry-base);
}

.counter-one__content-box {
  position: relative;
  display: block;
}

.counter-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__count-box h3 {
  font-size: 50px;
  font-weight: 800;
  line-height: 50px !important;
  letter-spacing: -0.04em;
  color: var(--austry-white);
  font-family: var(--austry-font) !important;
}

.counter-one__plus {
  font-size: 50px;
  font-weight: 800;
  line-height: 50px !important;
  letter-spacing: -0.04em;
  color: var(--austry-white);
  font-family: var(--austry-font) !important;
  position: relative;
}

.counter-one__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: var(--austry-white);
  margin-top: 6px;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color:#FFF;
  overflow: hidden;
  padding: 1px 1 1px;
  z-index: 1;
}

.services-one__bg-shape-1 {
  position: absolute;
  left: 0;
  bottom: -30px;
  opacity: 0.04;
  z-index: -1;
}

.services-one__bg-shape-1 img {
  width: auto;
}

.services-one__bg-shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  z-index: -1;
}

.services-one__bg-shape-2 img {
  width: auto;
}

.services-one__bottom {
  position: relative;
  display: block;
}

.services-one__carousel {
  position: relative;
  display: block;
}

.services-one__single {
  position: relative;
  display: block;
}

.services-one__img-box {
  position: relative;
  display: block;
}

.services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.services-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(19, 34, 60, 0.3);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}

.services-one__single:hover .services-one__img:before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.services-one__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05);
}

.services-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: var(--austry-base);
  z-index: 1;
}

.services-one__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--austry-black);
  z-index: 1;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--austry-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.services-one__single:hover .services-one__icon span {
  transform: scale(0.9);
  color: var(--austry-base);
}

.services-one__arrow {
  position: absolute;
  right: 20px;
  bottom: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--austry-base);
  font-size: 21px;
  color: var(--austry-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__arrow:hover {
  background-color: var(--austry-black);
  color: var(--austry-white);
}

.services-one__arrow:before {
  position: absolute;
  top: 0;
  left: -20px;
  content: "";
  border-left: 20px solid transparent;
  border-bottom: 26px solid #eb7615;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__arrow:hover:before {
  border-bottom: 26px solid var(--austry-black);
}

.services-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 22px 30px 26px;
}

.services-one__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
}

.services-one__title a {
  color: #000000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__title a:hover {
  color: var(--austry-base);
}

.services-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.services-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.services-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.services-one__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -167px;
  right: 0;
}

.services-one__carousel.owl-theme .owl-nav .owl-next {
  height: 63px;
  width: 63px;
  line-height: 63px;
  border-radius: 50%;
  color: #c9cdd5;
  border: 2px solid #c3c8d0;
  background-color: transparent;
  font-size: 20px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__carousel.owl-theme .owl-nav .owl-prev {
  height: 63px;
  width: 63px;
  line-height: 63px;
  border-radius: 50%;
  color: #c9cdd5;
  border: 2px solid #c3c8d0;
  background-color: transparent;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.services-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.services-one__carousel.owl-theme .owl-nav .owl-next span,
.services-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-one__carousel.owl-theme .owl-nav .owl-next:hover,
.services-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  border: 2px solid var(--austry-base);
  color: var(--austry-base);
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  padding: 120px 0 150px;
  z-index: 1;
}

.project-one .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.project-one__main-tab-box {
  position: relative;
  display: block;
}

.project-one__left {
  position: relative;
  display: block;
  z-index: 5;
}

.project-one__main-tab-box .tab-buttons {
  position: relative;
  display: block;
}

.project-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--austry-extra);
  padding: 21px 30px 21px;
  padding-right: 35px;
  cursor: pointer;
  z-index: 1;
}

.project-one__main-tab-box .tab-buttons .tab-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  left: 0;
  background-color: var(--austry-base);
  transition: all 0.3s ease;
  transform: scaleY(0);
}

.project-one__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  transform: scaleY(1);
}

.project-one__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-top: 10px;
}

.project-one__main-tab-box .tab-buttons .tab-btn p {
  font-size: 18px;
  color: var(--austry-black);
  font-weight: 700;
  line-height: 18px;
  letter-spacing: var(--austry-letter-spacing);
}

.project-one__main-tab-box .tab-buttons .tab-btn span {
  font-size: 12px;
  color: var(--austry-black);
  font-weight: 700;
  line-height: 12px;
  letter-spacing: var(--austry-letter-spacing);
}

.project-one__right {
  position: relative;
  display: block;
  margin-right: -300px;
  z-index: 1;
}

.project-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.project-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.project-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.project-one__main-tab-content {
  position: relative;
  display: block;
}

.project-one__carousel {
  position: relative;
  display: block;
}

.project-one__single {
  position: relative;
  display: block;
}

.project-one__img-box {
  position: relative;
  display: block;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--austry-black-rgb), 0.3);
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  z-index: 1;
}

.project-one__single:hover .project-one__img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
}

.project-one__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 500ms ease;
}

.project-one__single:hover .project-one__img img {
  transform: scale(1.05);
}

.project-one__content-box {
  position: absolute;
  bottom: -30px;
  right: 40px;
  background-color: var(--austry-black);
  padding-left: 40px;
  padding-right: 100px;
  padding-top: 39px;
  padding-bottom: 34px;
  z-index: 2;
}

.project-one__sub-title {
  font-size: 12px;
  color: var(--austry-base);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--austry-letter-spacing-two);
  line-height: 12px;
}

.project-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--austry-letter-spacing);
  margin-top: 7px;
}

.project-one__title a {
  color: var(--austry-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__title a:hover {
  color: var(--austry-base);
}

.project-one__arrow {
  position: absolute;
  top: -50px;
  right: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: scale(0);
  z-index: 1;
}

.project-one__single:hover .project-one__arrow {
  transform: scale(1);
}

.project-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: var(--austry-white);
  background-color: var(--austry-base);
  font-size: 17px;
}

.project-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.project-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.project-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.project-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -17px;
  left: -300px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(var(--austry-black-rgb), 0.5);
  margin: 0px 2.5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.project-one__carousel.owl-carousel .owl-dot.active {
  background-color: rgba(var(--austry-base-rgb), 1);
}

.project-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Trusted One
--------------------------------------------------------------*/
.trusted-one {
  position: relative;
  display: block;
  text-align: center;
  padding: 120px 0 180px;
  background-color: #101c30;
  z-index: 1;
}

.trusted-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.trusted-one__inner {
  position: relative;
  display: block;
}

.trusted-one__video-link {
  position: relative;
  display: inline-block;
  z-index: 3;
}

.trusted-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  line-height: 118px;
  text-align: center;
  font-size: 30px;
  color: var(--austry-white);
  background-color: var(--austry-base);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.trusted-one__video-icon:hover {
  background-color: var(--austry-white);
  color: var(--austry-base);
}

.trusted-one__video-icon:before {
  position: absolute;
  top: -17px;
  left: -17px;
  right: -17px;
  bottom: -17px;
  content: "";
  background-color: var(--austry-white);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
}

.trusted-one__video-link .ripple,
.trusted-one__video-icon .ripple:before,
.trusted-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--austry-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--austry-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--austry-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--austry-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.trusted-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.trusted-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.trusted-one__title {
  font-size: 50px;
  font-weight: 800;
  color: var(--austry-white);
  line-height: 60px !important;
  padding-top: 47px;
  letter-spacing: var(--austry-letter-spacing);
  padding-bottom: 50px;
}

.trusted-one__title > span {
  position: relative;
  display: inline-block;
  font-family: var(--austry-font) !important;
  z-index: 1;
}

.trusted-one__title > span:before {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: -35px;
  content: "";
  height: 92px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/shapes/trusted-one-shape-1.png);
  z-index: -1;
  animation-name: zoom-fade-2;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: zoom-fade-2;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: zoom-fade-2;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: zoom-fade-2;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: zoom-fade-2;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.trusted-one__btn {
  background-color: var(--austry-base);
}

.trusted-one__btn:hover {
  color: var(--austry-black);
}

.trusted-one__btn::after {
  background-color: var(--austry-white);
}



/*--------------------------------------------------------------
# CTA Three
--------------------------------------------------------------*/
.cta-three {
  position: relative;
  display: block;
}

.cta-three__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #EE0615;
  padding: 50px 80px 50px;
  overflow: hidden;
  z-index: 1;
}

.cta-three__inner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 20px;
  background-color: var(--austry-black);
  opacity: 0.1;
  z-index: -1;
}

.cta-three__shape-1 {
  position: absolute;
  bottom: -30px;
  right: 0;
  opacity: 0.1;
  z-index: -1;
}

.cta-three__shape-1 img {
  width: auto;
}

.cta-three__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--austry-white);
  line-height: 50px;
  letter-spacing: var(--austry-letter-spacing);
}

.cta-three__btn:hover {
  color: var(--austry-base);
}

.cta-three__btn:after {
  background-color: var(--austry-white);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  background-color: #101c30;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header__shape-1 {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 69px;
  background-color: var(--austry-white);
  max-width: 1376px;
  width: 100%;
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 148px 0 212px;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 50px;
  color: var(--austry-white);
  line-height: 50px;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.thm-breadcrumb__box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.thm-breadcrumb__box:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10000000px;
  left: 99%;
  background-color: var(--austry-base);
  z-index: -1;
}

.thm-breadcrumb {
  position: relative;
  display: block;
  background-color: var(--austry-base);
  padding-left: 80px;
  /* clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%); */
  z-index: 1;
}

.thm-breadcrumb::before {
  content: "";
  width: 100000px;
  height: 70px;
  position: absolute;
  right: 94%;
  bottom: -1px;
  background-color: #fff;
  transform: skewX(45deg);
  /* clip-path: polygon(0 0, 96% 0, 100% 100%, 0 100%); */
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--austry-white);
  letter-spacing: 0.1em;
}

.thm-breadcrumb li + li {
  margin-left: 4px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--austry-white);
  padding: 8px 0 7px;
}

.thm-breadcrumb li:hover a {
  color: var(--austry-black);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 12px;
}

/*--------------------------------------------------------------
# About Seven
--------------------------------------------------------------*/
.about-seven {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-seven__left {
  position: relative;
  display: block;
  margin-left: -60px;
  margin-right: 330px;
}

.about-seven__img-box {
  position: relative;
  display: block;
}

.about-seven__img {
  position: relative;
  display: block;
}

.about-seven__img:before {
  content: "";
  position: absolute;
  top: 0;
  right: -47px;
  width: 17px;
  height: 90px;
  background-color: var(--austry-base);
}

.about-seven__img:after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: 0px;
  width: 17px;
  height: 90px;
  background-color: var(--austry-base);
}

.about-seven__img img {
  width: 100%;
}

.about-seven__img-2 {
  position: absolute;
  top: 120px;
  right: -330px;
}

.about-seven__img-2 img {
  width: auto;
}

.about-seven__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-seven__right .section-title {
  margin-bottom: 32px;
}

.about-seven__text-1 {
  font-size: 20px;
  color: var(--austry-base);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 30px;
  padding-bottom: 33px;
}

.about-seven__points-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 43px;
  margin-bottom: 21px;
}

.about-seven__points {
  position: relative;
  display: block;
  max-width: 230px;
  width: 100%;
}

.about-seven__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-seven__points li + li {
  margin-top: 3px;
}

.about-seven__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  background-color: var(--austry-base);
  border-radius: 50%;
  font-size: 10px;
  color: var(--austry-white);
}

.about-seven__points li .text {
  margin-left: 10px;
}

.about-seven__points li .text p {
  font-size: 18px;
  font-weight: 800;
  color: var(--austry-black);
  letter-spacing: var(--austry-letter-spacing);
}

.about-seven__progress {
  position: relative;
  display: block;
  margin-left: 21px;
}

.about-seven__progress-single {
  position: relative;
  display: flex;
  align-items: center;
}

.about-seven__progress-box {
  position: relative;
  display: inline-block;
}

.about-seven__progress-box canvas {
  transform: rotate(90deg);
}

.about-seven__progress-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translateY(-50%) translateX(-50%);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--austry-black);
}

.about-seven__progress h3 {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  color: var(--austry-black);
  letter-spacing: var(--austry-letter-spacing);
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Brand Six
--------------------------------------------------------------*/
.brand-six {
  position: relative;
  display: block;
  padding: 100px 0 160px;
  border-top: 1px solid var(--austry-bdr-color);
  z-index: 1;
}

.brand-six .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-six .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.15;
  max-width: 100%;
}

.brand-six .swiper-slide img:hover {
  opacity: 0.5;
}

/*--------------------------------------------------------------
# About Page Team
--------------------------------------------------------------*/
.about-page-team {
  position: relative;
  display: block;
}

.about-page-team__bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  background-color: var(--austry-black);
  z-index: -1;
}

.about-page-team__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.1;
  z-index: -1;
}

.about-page-team .section-title__tagline {
  color: #949ca9;
}

.about-page-team .section-title__title {
  color: var(--austry-white);
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Services Page One
--------------------------------------------------------------*/
.services-page-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.services-page-one .services-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Services Page Two
--------------------------------------------------------------*/
.services-page-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.services-page-two .services-two__icon {
  background-color: #7eb441;
}

.services-page-two .services-two__single:hover .services-two__learn-more a {
  color: #7eb441;
}

/*--------------------------------------------------------------
# Services Page Three
--------------------------------------------------------------*/
.services-page-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.services-page-three .services-three__title-box {
  background-color: #e8a246;
}

/*--------------------------------------------------------------
# Services Page Four
--------------------------------------------------------------*/
.services-page-four {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.services-page-four .services-four__icon {
  background-color: #ff4040;
}

.services-page-four .services-four__title a:hover {
  color: #ff4040;
}

.services-page-four .services-four__btn:hover {
  color: var(--austry-white);
}

.services-page-four .services-four__btn:after {
  background-color: #ff4040;
}

/*--------------------------------------------------------------
# Services Page Five
--------------------------------------------------------------*/
.services-page-five {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.services-page-five .services-five__icon {
  background-color: #46a6bb;
}

.services-page-five .services-five__title a:hover {
  color: #46a6bb;
}

.services-page-five .services-five__btn:hover {
  color: #46a6bb;
}

/*--------------------------------------------------------------
# Services Page Six
--------------------------------------------------------------*/
.services-page-six {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.services-page-six .services-six__single:after {
  background-color: #ffaa17;
}

.services-page-six .services-six__icon span {
  color: #ffaa17;
}

.services-page-six .services-six__icon:before {
  background-color: rgba(255, 170, 23, 0.1);
}

.services-page-six .services-six__single:hover .services-six__btn a {
  background-color: #ffaa17;
  border: 1px solid #ffaa17;
}

/*--------------------------------------------------------------
# Project Page One
--------------------------------------------------------------*/
.project-page-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.project-page-one .project-six__single {
  margin-bottom: 30px;
}

.project-page-one .project-six__sub-title:before {
  background-color: #ffaa17;
}

.project-page-one .project-six__title a:hover {
  color: #ffaa17;
}

/*--------------------------------------------------------------
# Project Page Two
--------------------------------------------------------------*/
.project-page-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.project-page-two .project-two__single {
  margin-bottom: 30px;
}

.project-page-two .project-two__single:hover {
  transform: translateY(-60px);
}

.project-page-two .project-two__arrow a {
  background-color: #7bb33e;
}

.project-page-two .project-two__single:hover .project-two__sub-title {
  color: #7bb33e;
}

/*--------------------------------------------------------------
# Project Page Three
--------------------------------------------------------------*/
.project-page-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.project-page-three .project-four__single {
  margin-bottom: 30px;
}

.project-page-three .project-four__sub-title:before {
  background-color: #ff4040;
}

.project-page-three .project-four__arrow a {
  background-color: #ff4040;
}

.project-page-three .project-four__arrow a:hover {
  background-color: var(--austry-white);
}

.project-page-three .project-four__title a:hover {
  color: #ff4040;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--austry-base);
  padding: 10px 15px 11px;
  z-index: 1;
}

.news-details__date p {
  font-size: 11px;
  font-weight: 700;
  color: var(--austry-white);
  line-height: 12px;
  text-transform: uppercase;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__meta li {
  position: relative;
  display: block;
}

.news-details__meta li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -15px;
  height: 10px;
  width: 1px;
  background-color: var(--austry-gray);
  transform: rotate(15deg);
}

.news-details__meta li:first-child::before {
  display: none;
}

.news-details__meta li + li {
  margin-left: 30px;
}

.news-details__meta li a {
  font-size: 14px;
  color: var(--austry-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__meta li a:hover {
  color: var(--austry-base);
}

.news-details__meta li a i {
  color: var(--austry-base);
}

.news-details__title {
  font-size: 30px;
  line-height: 36px;
  margin-top: 5px;
  margin-bottom: 14px;
  font-weight: 800;
}

.news-details__text-2 {
  margin-top: 34px;
  margin-bottom: 34px;
}

.news-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid var(--austry-bdr-color);
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--austry-black);
  font-size: 20px;
  margin-right: 6px;
  font-weight: 800;
}

.news-details__tags a {
  position: relative;
  color: var(--austry-white);
  font-size: 12px;
  background-color: var(--austry-base);
  display: inline-block;
  padding: 8px 20px 7px;
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-details__tags a:hover {
  background-color: var(--austry-black);
  color: var(--austry-white);
}

.news-details__tags a + a {
  margin-left: 7px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__social-list a {
  position: relative;
  height: 43px;
  width: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--austry-black);
  background-color: var(--austry-extra);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--austry-white);
}

.news-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--austry-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scalex(0);
  transform: scalex(0);
  z-index: -1;
}

.news-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scalex(1);
  transform: scalex(1);
}

.news-details__social-list a + a {
  margin-left: 10px;
}

.news-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 51px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 24px;
  color: var(--austry-black);
  font-weight: 800;
  background-color: var(--austry-extra);
  line-height: 29px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 46px;
  padding-top: 54px;
  padding-bottom: 55px;
}

.news-details__pagenation li + li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--austry-base);
  color: var(--austry-white);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--austry-black);
  font-size: 36px;
  margin-bottom: 52px;
  font-weight: 800;
  letter-spacing: var(--austry-letter-spacing);
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--austry-bdr-color);
  padding-bottom: 60px;
  margin-bottom: 58px;
}

.comment-one__content {
  position: relative;
  margin-left: 45px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--austry-black);
  margin-bottom: 24px;
  font-weight: 800;
}

.comment-one__btn {
  padding: 8px 29px 7px;
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--austry-white);
  background-color: var(--austry-black);
}

.comment-one__btn:hover {
  color: var(--austry-white);
}

.comment-one__btn:before {
  background-color: var(--austry-black);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
  background-color: var(--austry-extra);
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 55px;
  width: 100%;
  border: none;
  background-color: var(--austry-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 15px;
  color: var(--austry-gray);
  display: block;
  font-weight: 500;
}

.comment-form__input-box textarea {
  font-size: 15px;
  color: var(--austry-gray);
  height: 170px;
  width: 100%;
  background-color: var(--austry-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.comment-form__btn {
  border: none;
  background-color: var(--austry-base);
}

.comment-form__btn:after {
  background-color: var(--austry-black);
}

.comment-form__input-box.text-message-box {
  height: 170px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 800;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--austry-base);
  color: var(--austry-white);
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  height: 84px;
  width: 100%;
  padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--austry-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--austry-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--austry-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--austry-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--austry-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--austry-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--austry-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  background-color: var(--austry-extra);
  overflow: hidden;
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 19px 20px 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.sidebar__post-list li + li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 16px;
}

.sidebar__post-image > img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 22px;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--austry-gray) !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--austry-base);
  font-size: 14px;
  padding-right: 4px;
}

.sidebar__post-content h3 a {
  color: var(--austry-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  margin-top: 6px;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--austry-extra);
  padding: 46px 30px 36px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li + li {
  margin-top: 4px;
}

.sidebar__category-list li a {
  color: var(--austry-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px 7px;
  font-weight: 600;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--austry-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--austry-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--austry-base);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}

.sidebar__category-list li a:hover span {
  color: var(--austry-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--austry-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--austry-extra);
  padding: 46px 45px 50px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 12px;
  color: var(--austry-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--austry-white);
  display: inline-block;
  padding: 8px 20px 7px;
  margin-left: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sidebar__tags-list a + a {
  margin-left: 7px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--austry-white);
  background: var(--austry-base);
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-details__img {
  position: relative;
  display: block;
}

.project-details__img img {
  width: 100%;
}

.project-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.project-details__content-left {
  position: relative;
  display: block;
}

.project-details__title-1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  letter-spacing: var(--austry-letter-spacing);
}

.project-details__text-1 {
  line-height: 32px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.project-details__text-2 {
  line-height: 32px;
}

.project-details__title-2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  letter-spacing: var(--austry-letter-spacing);
  margin-top: 41px;
  margin-bottom: 20px;
}

.project-details__text-3 {
  line-height: 32px;
}

.project-details__text-4 {
  font-size: 24px;
  font-weight: 800;
  line-height: 34px;
  color: var(--austry-base);
  letter-spacing: var(--austry-letter-spacing);
  margin-top: 28px;
  margin-bottom: 34px;
}

.project-details__text-5 {
  line-height: 32px;
}

.project-details__img-and-points {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 48px;
}

.project-details__img-2 {
  position: relative;
  display: block;
  width: 350px;
}

.project-details__img-2 img {
  width: 100%;
}

.project-details__points-list {
  position: relative;
  display: block;
  margin-left: 30px;
}

.project-details__points-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__points-list li + li {
  margin-top: 10px;
}

.project-details__points-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--austry-base);
  border-radius: 50%;
}

.project-details__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 9px;
  color: var(--austry-white);
}

.project-details__points-list li .text {
  margin-left: 14px;
}

.project-details__points-list li .text p {
  font-weight: 800;
  color: var(--austry-black);
}

.project-details__content-right {
  position: relative;
  display: block;
  margin-top: 10px;
}

.project-details__info {
  position: relative;
  display: block;
  background-color: var(--austry-black);
  padding: 43px 50px 50px;
}

.project-details__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--austry-base);
}

.project-details__info-list {
  position: relative;
  display: block;
}

.project-details__info-list li {
  position: relative;
  display: block;
}

.project-details__info-list li + li {
  margin-top: 24px;
}

.project-details__info-list li p {
  font-weight: 600;
  color: #959ca9;
  font-size: 16px;
  line-height: 24px;
}

.project-details__info-list li h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--austry-white);
}

.project-details__info-list li h4 a {
  color: var(--austry-base);
}

.project-details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}

.project-details__social a {
  position: relative;
  height: 43px;
  width: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--austry-white);
  background-color: #101c30;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.project-details__social a:hover {
  color: var(--austry-base);
  background-color: var(--austry-white);
}

.project-details__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--austry-white);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.project-details__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.project-details__social a + a {
  margin-left: 10px;
}

.project-details__pagination-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid var(--austry-bdr-color);
  border-bottom: 1px solid var(--austry-bdr-color);
  padding: 30px 0 30px;
  margin-top: 58px;
}

.project-details__pagination li {
  display: inline-block;
}

.project-details__pagination li.next {
  float: left;
  position: relative;
}

.project-details__pagination li a {
  font-size: 18px;
  color: var(--austry-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
}

.project-details__pagination li.next i {
  position: relative;
  height: 63px;
  width: 63px;
  border: 2px solid rgba(var(--austry-black-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(var(--austry-black-rgb), 0.2);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 20px;
  z-index: 1;
}

.project-details__pagination li.previous {
  position: relative;
  float: right;
}

.project-details__pagination li.previous i {
  position: relative;
  height: 63px;
  width: 63px;
  border: 2px solid rgba(var(--austry-black-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(var(--austry-black-rgb), 0.2);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-left: 20px;
  z-index: 1;
}

.project-details__pagination li a:hover i {
  color: var(--austry-base);
  border: 2px solid var(--austry-base);
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.services-details__left {
  position: relative;
  display: block;
}

.service-details__category {
  position: relative;
  display: block;
}

.service-details__category-list {
  position: relative;
  display: block;
}

.service-details__category-list li {
  position: relative;
  display: block;
}

.service-details__category-list li + li {
  margin-top: 10px;
}

.service-details__category-list li a {
  color: var(--austry-black);
  font-size: 16px;
  font-weight: 800;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 9px 30px 14px;
  border: 1px solid transparent;
  background-color: var(--austry-extra);
  letter-spacing: -0.02em;
  z-index: 1;
}

.service-details__category-list li:hover a {
  color: var(--austry-black);
}

.service-details__category-list li.active a {
  color: var(--austry-black);
}

.service-details__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--austry-base);
  transform: scaleY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
}

.service-details__category-list li:hover a::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-details__category-list li.active a::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-details__category-list li a:after {
  position: absolute;
  bottom: 0px;
  top: 0px;
  left: 0;
  right: 0px;
  content: "";
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05),
    inset 2.993px 0.209px 0px 0px rgba(252, 129, 27, 0.004);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.service-details__category-list li:hover a:after {
  transform: scaleX(1);
}

.service-details__category-list li.active a:after {
  transform: scaleX(1);
}

.service-details__category-list li a span {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--austry-black);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 17px;
}

.service-details__category-list li a:hover span {
  color: var(--austry-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.service-details__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--austry-base);
}

.service-details__need-help {
  position: relative;
  display: block;
  padding: 60px 50px 66px;
  margin-top: 30px;
  text-align: center;
  z-index: 1;
  background-color: var(--austry-base);
}

.service-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--austry-base);
  opacity: 0.1;
  background-blend-mode: luminosity;
  z-index: -1;
}

.service-details__need-help-icon {
  position: relative;
  height: 106px;
  width: 106px;
  border: 10px solid rgba(var(--austry-white-rgb), 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.service-details__need-help-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--austry-black);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.service-details__need-help-icon:hover:before {
  background-color: var(--austry-white);
}

.service-details__need-help-icon span {
  font-size: 30px;
  color: var(--austry-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover span {
  color: var(--austry-base);
}

.service-details__need-help-title {
  font-size: 28px;
  color: var(--austry-white);
  line-height: 34px;
  font-weight: 800;
  letter-spacing: var(--austry-letter-spacing);
}

.service-details__need-help-contact {
  position: relative;
  display: block;
  margin-top: 40px;
}

.service-details__need-help-contact p {
  font-size: 12px;
  color: var(--austry-white);
  margin: 0;
  line-height: 12px;
  font-weight: 800;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-details__need-help-contact a {
  font-size: 20px;
  color: var(--austry-white);
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
  color: var(--austry-black);
}

.services-details__right {
  position: relative;
  display: block;
}

.services-details__img {
  position: relative;
  display: block;
}

.services-details__img img {
  width: 100%;
}

.services-details__title-1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: var(--austry-letter-spacing);
  margin-top: 20px;
  margin-bottom: 21px;
}

.services-details__text-1 {
  line-height: 32px;
}

.services-details__text-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 17px 35px 23px;
  margin-top: 46px;
  margin-bottom: 47px;
}

.services-details__text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--austry-base);
}

.services-details__text-box-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--austry-letter-spacing);
  color: var(--austry-black);
}

.service-details__benefit {
  position: relative;
  display: block;
  margin-top: 51px;
  margin-bottom: 60px;
}

.service-details__benefit-img {
  position: relative;
  display: block;
}

.service-details__benefit-img img {
  width: 100%;
}

.service-details__benefit-content {
  position: relative;
  display: block;
  margin-top: -3px;
}

.service-details__benefit-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
}

.service-details__benefit-text {
  padding-top: 19px;
  padding-bottom: 29px;
  font-weight: 800;
  color: var(--austry-base);
}

.service-details__benefit-points {
  position: relative;
  display: block;
}

.service-details__benefit-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__benefit-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: var(--austry-base);
  font-size: 9px;
  color: var(--austry-white);
}

.service-details__benefit-points li .text {
  margin-left: 10px;
}

.service-details__benefit-points li .text p {
  font-size: 16px;
  font-weight: 800;
  color: var(--austry-black);
}

.service-details__faq {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# FaQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  background-color: var(--austry-extra);
  padding: 120px 0 90px;
  z-index: 1;
}

.faq-page__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 423px;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.faq-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.faq-page .faq-one-accrodion .accrodion-title {
  background-color: var(--austry-white);
}

.faq-page .faq-one-accrodion .accrodion-title h4::before {
  background-color: var(--austry-extra);
}

/*--------------------------------------------------------------
# Contact Two
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.contact-one__left {
  position: relative;
  display: block;
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__form .row {
  --bs-gutter-x: 20px;
}

.contact-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-form__input-box input[type="text"],
.contact-form__input-box input[type="email"] {
  height: 55px;
  width: 100%;
  border: none;
  background-color: var(--austry-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 15px;
  color: var(--austry-gray);
  display: block;
  font-weight: 500;
}

.contact-form__input-box textarea {
  font-size: 15px;
  color: var(--austry-gray);
  height: 168px;
  width: 100%;
  background-color: var(--austry-extra);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.contact-form__input-box.text-message-box {
  height: 168px;
}

.contact-form__btn {
  display: block;
  border: none;
  background-color: var(--austry-base);
}

.contact-form__btn::after {
  background-color: var(--austry-black);
}

.contact-one__right {
  position: relative;
  display: block;
}

.contact-one__right .service-details__need-help {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.our-clients {
  position: relative;
  display: block;
  padding: 108px 0 90px;
  z-index: 1;
}

.our-clients__top {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 60px;
}

.our-clients__title {
  font-size: 50px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: var(--austry-letter-spacing);
}

.our-clients__btn-box {
  position: relative;
  display: block;
  margin-top: 39px;
}

.our-clients__btn {
  background-color: var(--austry-base);
}

.our-clients__btn::after {
  background-color: var(--austry-black);
}

.our-clients__single {
  position: relative;
  display: block;
  background-color: var(--austry-extra);
  text-align: center;
  margin-bottom: 30px;
  padding: 64px 0 65px;
  z-index: 1;
}

.our-clients__single::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--austry-black);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scalex(0);
  transform: scalex(0);
  z-index: -1;
}

.our-clients__single:hover::before {
  opacity: 1;
  -webkit-transform: scalex(1);
  transform: scalex(1);
}

.our-clients__img {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}

.our-clients__img img {
  width: auto;
}

.our-clients__single:hover .our-clients__img {
  opacity: 0;
}

.our-clients__img-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.our-clients__img-2 img {
  width: auto;
}

.our-clients__single:hover .our-clients__img-2 {
  opacity: 1;
}
