/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: 'Saira Semi Condensed', sans-serif;
  --thm-font-2: 'Poppins', sans-serif;
  --thm-reey-font: 'reeyregular';
  --thm-gray: #6e7478;
  --thm-gray-rgb: 110, 116, 120;
  --thm-base: #ea1b29;
  --thm-base-rgb: 234, 27, 41;
  --thm-black: #17293e;
  --thm-black-rgb: 23, 41, 62;
  --thm-gray-bg: #f2f3f5;
  --thm-gray-bg-rgb: 242, 243, 245;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

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

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--thm-font);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--thm-black);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-black);
  font-family: var(--thm-font);
  margin: 0;
  word-wrap: break-word;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}


/***
=============================================
    Form Validation Styles
=============================================
***/
input:focus,
textarea:focus,
select:focus {
  border-color: var(--thm-base);
  outline: none;
}

#contact-form input[type="text"].error {
  border-color: red;
}

#contact-form input[type="email"].error {
  border-color: red;
}

#contact-form select.error {
  border-color: red;
}

#contact-form textarea.error {
  border-color: red;
}

#contact-form label.error {
  display: none !important;
}


.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}


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

ol,
li {
  margin: 0;
  padding: 0;
}


/***
=============================================
    Rating Box 
=============================================
***/
.rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.rating-box ul {
  overflow: hidden;
}

.rating-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  line-height: 0;
}

.rating-box ul li:last-child {
  margin-right: 0;
}

.rating-box ul li span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


/***
=============================================
   Sec Title 
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 48px;
}

.sec-title__tagline {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sec-title__tagline h6 {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--thm-font);
}

.sec-title__title {
  color: var(--thm-black);
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 600;
  text-transform: capitalize;
}

/***
=============================================
   Sec Title Style2
=============================================
***/
.sec-title.style2 {
  position: relative;
  display: block;
}

.sec-title.style2 .sec-title__tagline {
  margin-bottom: 13px;
}

.sec-title.style2 .sec-title__title {
  font-size: 55px;
  line-height: 1.1em;
}

/***
=============================================
   Thm Btn
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 0px;
  padding: 0px 55px 0px;
  line-height: 65px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  background: var(--thm-base);
  overflow: hidden;
  font-family: var(--thm-font);
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:before {
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--thm-black);
}

.thm-btn:hover:before {
  top: -40%;
}

.thm-btn .txt {
  position: relative;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.thm-btn:hover,
.thm-btn:focus {
  color: #ffffff;
}
.gallery-two-one .owl-nav {
  display: none;
}

/***
=============================================
   Owl Dot Style1
=============================================
***/
.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 50px !important;
  display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 5px;
  background-color: #e7e7e7;
  border: 0px solid #a5a5a5;
  margin: 0px 10px;
  padding: 0px;
  border-radius: 0%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0);
  transition: all 500ms ease;
}


.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

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


img {
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/***
=============================================
   Scroll To Top
=============================================
***/
.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--thm-base);
  border: 2px solid var(--thm-base);
  color: #ffffff;
  font-size: 20px;
  line-height: 56px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 999999999;
}

.scroll-to-top:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  z-index: -1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-to-top:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.scroll-to-top:hover {
  color: #ffffff;
  background-color: var(--thm-black);
  border-color: var(--thm-black);
}

.scroll-to-top i::before {
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}


/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 60px;
  font-weight: 600;
  border: 1px solid #dfe2e4;
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: #ffffff;
  background: var(--thm-base);
  border-color: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #ffffff;
}

.styled-pagination li a span:before {
  position: relative;
  top: 1px;
  color: var(--thm-black);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: #ffffff;
}


.checked-box1 {
  position: relative;
  display: block;
  min-height: 20px;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  min-height: 20px;
  font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
  display: none;
}

.checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  top: 0px;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #80868d;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 label span:before {
  font-family: 'icomoon' !important;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "\e922";
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  margin: 0px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
  border-color: #80868d;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
  opacity: 1.0;
}


/***
=============================================
   Search Popup
=============================================
***/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -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;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.9;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  padding-right: 75px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--thm-base);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.search-popup__content .thm-btn::before {
  background: var(--thm-black);
}

.search-popup__content .thm-btn i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  margin-left: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.search-popup__content .thm-btn:hover i::before {
  color: #ffffff;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--brote-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--brote-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--brote-white);
  color: var(--brote-base);
  cursor: pointer;
}


/* Preloader Css*/
.handle-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thm-black);
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 30px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 99999999;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 45px auto;

  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}


.handle-preloader .animation-preloader .txt-loading .letters-loading {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 70px;
  line-height: 70px;
  font-weight: 600;
  letter-spacing: 15px;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
  font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  position: absolute;
  top: 0;
  left: 0;
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  opacity: 0;
}

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

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


/**
animation: spinner 1s infinite linear;


.handle-preloader .loader-section {
  background-color: #ffffff;
  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 {}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  /**border-top-color: rgba(255, 255, 255, 0.5); **/
}


/* Animation preloader */
@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: 10px;
  }
}



/***
=============================================
    xs Sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: url(../images/icon/cross-out.html), pointer;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .6;
  visibility: visible;
  transition-delay: 0.0s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 365px;
  background-color: var(--thm-black);
  overflow: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  left: 0;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: -150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 600ms ease 800ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
  background-color: #000000;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-base);
  border-color: var(--thn-base);
}


.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--thm-base);
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
  padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn {
  position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn {
  position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn::before {
  background: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn:hover .txt {
  color: var(--thm-black);
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  transition: all 500ms ease;
  outline: none;
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: #b0b0bd;
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
}

.sidebar-contact-info ul li a {
  color: #b0b0bd;
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: #ffffff;
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--thm-base);
}



/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.7;
  cursor: pointer;
}

.mobile-nav__content {
  position: relative;
  width: 300px;
  background-color: #000000;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.mobile-nav__close:hover {
  background-color: var(--thm-black);
}

.mobile-nav__close i:before {
  position: relative;
  display: inline-block;
  transform: rotate(45deg);
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 20px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  line-height: 30px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 46px;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
  font-size: 14px;
  font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--thm-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-base);
  border: none;
  outline: none;
  color: #ffffff;
  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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-base);
}


.mobile-nav__content .home-showcase__title {
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 0px;
}

.mobile-nav__contact {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-bottom: 30px;
}

.mobile-nav__contact li {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-base);
}

.mobile-nav__contact li>i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 0%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  margin-right: 10px;
}


.mobile-nav__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--thm-black);
  background-color: #ffffff;
}



/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}



/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-box {
  display: block;
  float: right;
  margin-left: auto;
}


/****
  .main-menu__right {
    position: relative;
    display: block;
    float: right;
  }
  
  .main-menu__search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 23px 0;
  }
  
  .main-menu__search-box:before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: -30px;
    content: "";
    width: 1px;
    background-color: var(--brote-white);
    opacity: .10;
  }
  
  .main-menu__search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    color: var(--brote-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__search:hover {
    color: var(--brote-primary);
  }
  ***/


.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  position: relative;
  padding-top: 42px;
  padding-bottom: 42px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 40px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  position: relative;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.dropdown>a:before {
  position: absolute;
  top: 2px;
  right: 5px;
  font-family: 'icomoon' !important;
  content: "\e906";
  color: var(--thm-black);
  font-size: 11px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.main-menu .main-menu__list>li.current.dropdown>a:before,
.main-menu .main-menu__list>li:hover.dropdown>a:before {
  color: var(--thm-base);
}

.main-menu .main-menu__list>li.dropdown>a,
.stricky-header .main-menu__list>li.dropdown>a {
  padding-right: 20px;
}


.main-menu .main-menu__list>li.current-menu-item>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current-menu-item>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--thm-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  transform-origin: top;
  transform-style: preserve-3d;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  transition: all 700ms ease;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--thm-black-rgb, 53, 84, 209), 0.07);
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  font-size: 17px;
  line-height: 30px;
  color: var(--thm-black);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 10px 25px;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: var(--thm-font);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: #ffffff;
  background-color: var(--thm-base);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}


/*-------------------------------------
    Stricky Header Css
  ---------------------------------------*/
.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}


/***
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--brote-base);
  }
  **/

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 25px;
  cursor: pointer;
  line-height: 0;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--thm-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

.stricky-header.main-menu {
  background-color: #ffffff;
}

.stricky-header .main-menu-box {
  display: block;
  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;
}

.stricky-header .main-menu__wrapper {
  background-color: #ffffff;
}

.stricky-header .main-menu__wrapper-inner {
  justify-content: space-between;
}

.stricky-header .phone-number-box-style1 {
  display: none;
}

.stricky-header .main-menu__list>li {
  padding-top: 48px;
  padding-bottom: 49px;
}

.stricky-header .main-menu__list>li+li {
  margin-left: 45px;
}

.stricky-header .main-menu-style1-right {
  margin-left: 30px;
}


/***
=============================================
Main Header One
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
  z-index: 99;
}

.main-header-one__top {
  position: relative;
  display: block;
  background: #010101;
  padding: 0px 0px 0px;
}

.main-header-one__top .auto-container {
  max-width: 1530px;
  width: 100%;
}

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

.main-header-one__top-left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header-one__top-left p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.main-header-one__top-middle {
  position: relative;
  display: block;
}

.main-header-one__top-middle .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.main-header-one__top-middle .btn-box .thm-btn {
  line-height: 90px;
}

.main-header-one__top-right {
  position: relative;
  display: block;
}

.main-header-one__top-right-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.header-social-links {
  position: relative;
  display: block;
  margin-top: -8px;
}

.header-social-links ul {
  position: relative;
  display: block;
}

.header-social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 21px;
}

.header-social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.header-social-links ul li a::before {
  position: absolute;
  top: 7px;
  left: -7px;
  bottom: -7px;
  right: 7px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
  z-index: -1;
}

.header-social-links ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.header-social-links ul li a:hover:after {
  transform: scale(1.0);
  opacity: 1;
}

.header-social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-social-links ul li a:hover span::before {
  color: var(--thm-base);
}

.side-content-button-box {
  position: relative;
  display: block;
  padding-left: 120px;
}

.side-content-button-box .side-content-button {
  position: relative;
  display: block;
  line-height: 0;
}

.side-content-button-box .side-content-button a.navSidebar-button {
  position: relative;
  display: inline-block;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor {
  position: relative;
  display: block;
  width: 35px;
  height: 2px;
  background: #ffffff;
  margin: 8px 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor.style2 {
  width: 30px;
  margin-left: 5px;
}

.side-content-button-box .side-content-button a.navSidebar-button:hover .decor {
  background: var(--thm-base);
}


.main-header-one__bottom {
  position: relative;
  display: block;
}

.main-header-one__bottom .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-one__bottom-inner {
  position: relative;
  display: block;
}

.main-header-one__bottom .main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.main-header-one__bottom-left {
  position: relative;
  display: block;
}

.main-header-one__bottom-left .logo-box {
  position: relative;
  display: block;
}

.main-header-one__bottom-left .logo-box a {
  position: relative;
  display: inline-block;
}

.main-header-one__bottom-middle {
  position: relative;
  display: block;
}

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 45px;
}

.header-search-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-search-box a:hover {
  color: var(--thm-base);
}

.header-contact-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 45px;
}

.header-contact-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #dcdfe2;
  content: "";
}

.header-contact-box .icon-box {
  position: relative;
  display: block;
}

.header-contact-box .icon-box span:before {
  color: var(--thm-base);
  font-size: 35px;
}

.header-contact-box .text-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.header-contact-box .text-box p {
  color: #334d6b;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font-2);
}

.header-contact-box .text-box a {
  color: var(--thm-black);
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -0.011em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-contact-box .text-box a:hover {
  color: var(--thm-base);
}

/***
=============================================
Main Header Two
=============================================
***/
.main-header-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
}

.main-header-two__top {
  position: relative;
  display: block;
  background: #010101;
  padding: 8px 0px 7px;
  overflow: hidden;
  z-index: 1;
}

.main-header-two__top::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 720px;
  border-top: 65px solid var(--thm-base);
  border-right: 45px solid transparent;
  content: "";
  z-index: -1;
}

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

.main-header-two__top-left {
  position: relative;
  display: block;
}

.main-header-two__social-links {
  position: relative;
  display: block;
}

.main-header-two__social-links ul {
  position: relative;
  display: block;
  padding-right: 7px;
}

.main-header-two__social-links ul::before {
  position: absolute;
  top: -20px;
  right: 0;
  bottom: -20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.main-header-two__social-links ul li {
  position: relative;
  display: inline-block;
  padding-left: 17px;
  margin-right: 11px;
}

.main-header-two__social-links ul li::before {
  position: absolute;
  top: -30px;
  left: 0;
  bottom: -30px;
  width: 1px;
  background: rgba(255, 255, 255, .15);
  content: "";
}

.main-header-two__social-links ul li a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__social-links ul li a:hover {
  color: var(--thm-black);
}

.main-header-two__top-right {
  position: relative;
  display: block;
}

.main-header-two__top-contact {
  position: relative;
  display: block;
}

.main-header-two__top-contact-list {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main-header-two__top-contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 55px;
}

.main-header-two__top-contact-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 35px;
  z-index: 1;
}

.main-header-two__top-contact-list li .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  z-index: -1;
  content: "";
}

.main-header-two__top-contact-list li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 17px;
}

.main-header-two__top-contact-list li .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-two__top-contact-list li .text-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.main-header-two__top-contact-list li .text-box p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__top-contact-list li .text-box p a:hover {
  color: var(--thm-base);
}


.main-header-two__bottom {
  position: relative;
  display: block;
}

.main-header-two__bottom-inner {
  position: relative;
  display: block;
}

.main-header-two__bottom .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-two__bottom .main-menu__wrapper-inner {
  position: relative;
  display: block;
  border-top: 5px solid var(--thm-base);
  background: #ffffff;
}

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

.stricky-header--two.stricky-header .main-menu__wrapper-inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-two .main-menu .main-menu__list>li,
.stricky-header--two.stricky-header .main-menu__list>li {
  margin-left: 25px;
  padding-right: 25px;
  padding-top: 37px;
  padding-bottom: 37px;
}

.main-header-two .main-menu .main-menu__list>li:last-child,
.stricky-header--two.stricky-header .main-menu__list>li:last-child {
  padding-right: 0;
}

.main-header-two .main-menu .main-menu__list>li:first-child,
.stricky-header--two.stricky-header .main-menu__list>li:first-child {
  margin-left: 0;
}

.main-header-two .main-menu .main-menu__list>li::before,
.stricky-header--two.stricky-header .main-menu__list>li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #eeefef;
  content: "";
}

.main-header-two .main-menu .main-menu__list>li:last-child:before,
.stricky-header--two.stricky-header .main-menu__list>li:last-child:before {
  display: none;
}

.main-header-two__bottom-left .logo-box {
  position: relative;
  display: block;
}

.main-header-two__bottom-left .logo-box a {
  position: relative;
  display: inline-block;
}

.main-header-two__bottom-left .logo-box a img {
  width: 100%;
}

.main-header-two__bottom-middle {
  position: relative;
  display: block;
}

.main-header-two__bottom-right {
  position: relative;
  display: block;
}

.main-header-two__bottom-right .btn-box {
  position: relative;
  display: block;
}

.main-header-two__bottom-right .btn-box a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 100px;
  z-index: 1;
}

.main-header-two__bottom-right .btn-box a::before {
  position: absolute;
  top: -43px;
  left: 0px;
  bottom: -38px;
  right: -106px;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
  content: "";
  z-index: -1;
}


/***
=============================================
Main Header Three
=============================================
***/
.main-header-three {
  position: relative;
  display: block;
}

.main-header-three__top {
  position: relative;
  display: block;
}

.main-header-three__top .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 20px;
  border-bottom: 2px solid #f3f3f4;
}

.main-header-three__top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__social-links {
  position: relative;
  display: block;
}

.main-header-three__social-links ul {
  position: relative;
  display: block;
}

.main-header-three__social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 4px;
}

.main-header-three__social-links ul li:last-child {
  margin-right: 0;
}

.main-header-three__social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 60px;
  overflow: hidden;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
}

.main-header-three__social-links ul li a:hover {
  border-color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.4s;
}

.main-header-three__social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-header-three__social-links ul li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-header-three__social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__social-links ul li a:hover span::before {
  color: #ffffff;
}

.main-header-three__top-left-text {
  position: relative;
  display: block;
  margin-left: 25px;
}

.main-header-three__top-left-text p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.main-header-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__top-right .header-search-box {
  position: relative;
  display: block;
  margin-right: 0;
  padding-right: 35px;
}


.main-header-three__top-right .header-search-box a {
  color: var(--thm-base);
  font-size: 20px;
}

.main-header-three__top-right .header-search-box a:hover {
  color: var(--thm-primary);
}

.main-header-three__top-right-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--thm-primary);
  margin-left: 35px;
  margin-right: 30px;
}

.main-header-three__top-right-icon span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
}


.main-header-three__top-location {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 160px;
  z-index: 1;
}

.main-header-three__top-location::before {
  position: absolute;
  top: -26px;
  left: 0;
  bottom: 0;
  right: -9999999px;
  content: "";
  z-index: -1;
  border-top: 102px solid var(--thm-base);
  border-left: 45px solid transparent;
}

.main-header-three__top-location .icon-box {
  position: relative;
  display: block;
}

.main-header-three__top-location .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 45px;
}

.main-header-three__top-location .content-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.main-header-three__top-location .content-box p {
  color: rgba(255, 255, 255, .87);
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.main-header-three__top-location .content-box h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}




.main-header-three__bottom {
  position: relative;
  display: block;
}

.main-header-three__bottom-inner {
  position: relative;
  display: block;
}

.main-header-three__bottom .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-three__bottom .main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-three__bottom-left {
  position: relative;
  display: block;
}

.main-header-three__bottom-left .logo-box {
  position: relative;
  display: block;
}

.main-header-three__bottom-left .logo-box a {
  position: relative;
  display: block;
}

.main-header-three__bottom-middle {
  position: relative;
  display: block;
}

.main-header-three__bottom .main-menu .main-menu__list>li {
  padding-top: 43px;
  padding-bottom: 44px;
}

.main-header-three__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__bottom-right .icon-box {
  position: relative;
  display: block;
}

.main-header-three__bottom-right .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 35px;
}

.main-header-three__bottom-right .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-three__bottom-right .content-box p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

.main-header-three__bottom-right .content-box a {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-three__bottom-right .content-box a:hover {
  color: var(--thm-base);
}

/***
=============================================
Main Slider One
=============================================
***/
.main-slider-one {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-one .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-one .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-one .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.3;
  content: "";
  z-index: -1;
}

.main-slider-one__img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider-one__img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.main-slider-one .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-slider-one__content {
  position: relative;
  display: block;
  padding: 172px 0px 190px;
  z-index: 5;
}

.main-slider-one__content .title {
  position: relative;
  display: block;
  margin-bottom: 51px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-one__content .title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-one__content .title h2 {
  color: #ffffff;
  font-size: 90px;
  line-height: 1.1em;
  font-weight: 700;
}

.main-slider-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-one__content .btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-one__content .btn-box .thm-btn {
  padding-right: 90px;
  padding-left: 40px;
}

.main-slider-one__content .btn-box .thm-btn .icon-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.main-slider-one__content .btn-box .thm-btn .icon-box i:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
}

.main-slider-one__outer-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0px;
  left: 0px;
  bottom: 200px;
  background: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  text-align: center;
  line-height: 0;
  z-index: 5;
  padding-top: 80px;
  padding-left: 25px;
  padding-right: 25px;
}

.main-slider-one__outer-content .social-links {
  position: relative;
  display: block;
}

.main-slider-one__outer-content .social-links ul {
  position: relative;
  display: block;
}

.main-slider-one__outer-content .social-links ul li {
  position: relative;
  display: inline-block;
  margin-bottom: 21px;
  padding-top: 33px;
}

.main-slider-one__outer-content .social-links ul li::before {
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 10px;
  background: var(--thm-black);
  content: "";
}

.main-slider-one__outer-content .social-links ul li:last-child {
  margin-bottom: 0px;
}

.main-slider-one__outer-content .social-links ul li:first-child:before {
  display: none;
}

.main-slider-one__outer-content .social-links ul li:last-child {
  margin-right: 0;
}

.main-slider-one__outer-content .social-links ul li:first-child {
  padding-top: 0px;
}

.main-slider-one__outer-content .social-links ul li a {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__outer-content .social-links ul li a:hover {
  color: var(--thm-base);
}

.main-slider-one__video {
  position: absolute;
  left: 575px;
  bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
  opacity: 0;
  transform: translateY(10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider-one__video {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-one__video a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__video a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.main-slider-one__video a::before,
.main-slider-one__video a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.main-slider-one__video a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.main-slider__nav {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 0;
  z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  color: #ffffff;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider__nav .swiper-button-prev {
  float: left;
  left: 0;
  margin-bottom: 10px;
}

.main-slider__nav .swiper-button-next {
  float: right;
  right: 0;
}

.main-slider__nav .swiper-button-next::before,
.main-slider__nav .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0%;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-slider__nav .swiper-button-next:hover::before,
.main-slider__nav .swiper-button-prev:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev i::before {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 70px;
  font-weight: 400;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 70px;
  font-weight: 400;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__nav .swiper-button-prev:hover i::before,
.main-slider__nav .swiper-button-next:hover i::before {
  color: var(--thm-black);
}

/***
=============================================
Main Slider Two
=============================================
***/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-two .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-two .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.55;
  content: "";
  z-index: -1;
}

.main-slider-two .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .shape1 {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two .shape2 {
  position: absolute;
  top: -20px;
  right: -170px;
  opacity: 0;
  z-index: 1;
  transform: translateX(10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .shape2 {
  opacity: 0.04;
  transform: translateX(0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-two .shape3 {
  position: absolute;
  bottom: 25px;
  right: 140px;
  opacity: 0;
  z-index: 1;
  transform: translateY(100%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .shape3 {
  opacity: 0.5;
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.main-slider-two .container {
  padding: 352px 15px 200px;
}

.main-slider-two__content {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 2;
}

.main-slider-two__content .title {
  position: relative;
  display: block;
  margin-bottom: 12px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-two__content .title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-two__content .title h2 {
  color: #ffffff;
  font-size: 90px;
  line-height: 1.1em;
  font-weight: 700;
}

.main-slider-two__content .text-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-two__content .text-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-two__content .text-box p {
  color: #ffffff;
}

.main-slider-two__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 42px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-two__content .btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
}


#main-slider-pagination {
  position: absolute;
  top: 44%;
  right: 70px;
  left: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  line-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scaleX(1.0) translateX(0px);
  counter-reset: count;
  z-index: 105;
  width: auto;
}

#main-slider-pagination .swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
  background-color: transparent;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  margin-bottom: 10px;
}

#main-slider-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  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;
  height: 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  line-height: 50px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  counter-increment: count;
  content: ""counter(count);
  font-family: var(--alori-font);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  border: 1px solid transparent;
}

#main-slider-pagination .swiper-pagination-bullet::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  content: "";
  transform: scale(0.5);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  color: #ffffff;
  transform: scale(1.0);
  opacity: 1;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 0px;
}

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  color: #ffffff;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:focus,
#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
  outline: none;
  border: none;
}

/***
=============================================
Main Slider Three
=============================================
***/
.main-slider-two.style3 {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-two.style3 .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000001;
  opacity: 0.52;
  content: "";
  z-index: -1;
}

.main-slider-two.style3 .container {
  padding: 192px 15px 210px;
}

.main-slider-two__content.style3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: inherit;
  text-align: right;
}

.main-slider-two__content-right {
  position: relative;
  display: block;
}

.main-slider-three__content-icon {
  position: relative;
  display: block;
  opacity: 0;
  transform: scale(0.8);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 2;
}

.main-slider .swiper-slide-active .main-slider-three__content-icon {
  transform: scale(1.0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  opacity: 1;
}

.main-slider-three__content-icon a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 0%;
  background: #ffffff;
  border: 0px solid #ffffff;
  text-align: center;
  color: var(--thm-base);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-three__content-icon a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.main-slider-three__content-icon a::before,
.main-slider-three__content-icon a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 0%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.main-slider-three__content-icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


/***
=============================================
  Page Header
=============================================
***/
.page-header {
  position: relative;
  display: block;
  padding: 239px 0px 242px;
  overflow: hidden;
  z-index: 1;
}

.page-header::before {
  position: absolute;
  top: -260px;
  left: 207px;
  bottom: -260px;
  width: 250px;
  background: var(--thm-base);
  opacity: 0.6;
  z-index: 0;
  content: "";
  transform: rotate(34deg);
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.page-header__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #1c1c1c;
  opacity: 0.75;
  content: "";
  z-index: -2;
}

.page-header__inner {
  position: relative;
  display: block;
}

.page-header__inner h2 {
  color: #ffffff;
  font-size: 72px;
  line-height: 1em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.page-header__inner .thm-breadcrumb {
  position: relative;
  display: block;
}

.page-header__inner .thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li + li:before {
  color: #fff;
}

.page-header__inner .thm-breadcrumb li a {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
  color: var(--thm-base);
}


/***
=============================================
 About One
=============================================
***/
.about-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.about-one::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 49%;
  background: var(--thm-gray-bg);
  content: "";
  z-index: -1;
}

.about-one__img {
  position: relative;
  display: block;
  margin-left: 15px;
  max-width: 530px;
  width: 100%;
  z-index: 1;
}

.about-one__img::before {
  position: absolute;
  top: 100px;
  left: -15px;
  bottom: -15px;
  right: 15px;
  background-image: -moz-linear-gradient(90deg, rgb(234, 27, 41) 0%, rgb(245, 141, 148) 18%, rgb(255, 255, 255) 99%);
  background-image: -webkit-linear-gradient(90deg, rgb(234, 27, 41) 0%, rgb(245, 141, 148) 18%, rgb(255, 255, 255) 99%);
  background-image: -ms-linear-gradient(90deg, rgb(234, 27, 41) 0%, rgb(245, 141, 148) 18%, rgb(255, 255, 255) 99%);
  content: "";
  z-index: -1;
}

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

.about-one__img-inner::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .1) 100%);
  transform: skewX(5deg);
  z-index: 1;
}

.about-one__img:hover .about-one__img-inner::before {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.about-one__img-inner .experience-box {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .8);
  padding: 30px 40px 29px;
  z-index: 5;
}

.about-one__img-inner .experience-box h2 {
  font-size: 32px;
  line-height: 45px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-one__img-inner .experience-box h2 span {
  color: var(--thm-base);
  font-size: 44px;
}

.about-one__img-inner .experience-box h2 .plus {
  position: relative;
  display: inline-block;
  top: 3px;
  right: 7px;
}

.about-one__img-inner img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.about-one__img:hover .about-one__img-inner img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.about-one .odometer.odometer-auto-theme,
.about-one .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 45px;
}

.about-one__content {
  position: relative;
  display: block;
  margin-left: 70px;
  z-index: 1;
}

.about-one__content .big-title {
  position: absolute;
  top: -42px;
  left: -175px;
  z-index: -1;
}

.about-one__content .big-title h2 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--thm-black-rgb), 0.09);
  font-size: 150px;
  line-height: 150px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-one__content .sec-title {
  padding-bottom: 42px;
}

.about-one__content-text1 {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__content-text1 .text-box {
  position: relative;
  display: block;
  margin-right: 50px;
}

.about-one__content-text1 .text-box p {
  margin: 0;
}

.about-one__content-text1 .icon-box {
  position: relative;
  display: block;
  padding-left: 37px;
}

.about-one__content-text1 .icon-box::before {
  position: absolute;
  top: -15px;
  left: 0;
  bottom: -15px;
  width: 2px;
  background: #e7e8e9;
  content: "";
}

.about-one__content-text1 .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 65px;
}

.about-one__content-text2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
}

.about-one__content-text2 .contant-box {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__content-text2 .contant-box-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.about-one__content-text2 .contant-box-single.mb0 {
  margin-bottom: 0;
}

.about-one__content-text2 .contant-box-single .number-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-black);
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  width: 70px;
  height: 70px;
  background: var(--thm-gray-bg);
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.about-one__content-text2 .contant-box-single .number-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.about-one__content-text2 .contant-box-single:hover .number-box::before {
  transform: scale(1.0);
  opacity: 1;
}

.about-one__content-text2 .contant-box-single:hover .number-box {
  color: #ffffff;
}

.about-one__content-text2 .contant-box-single .title-box {
  position: relative;
  display: block;
  margin-left: 30px;
  flex: 1;
}

.about-one__content-text2 .contant-box-single .title-box h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.about-one__content-text2 .img-box {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-one__content-text2 .img-box img {
  width: auto;
}

.about-one__content-text3 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.about-one__content-text3 .signature {
  position: relative;
  display: block;
  margin-right: 45px;
}

.about-one__content-text3 .signature h3 {
  color: var(--thm-gray);
  font-size: 30px;
  line-height: 100px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-reey-font);
}

.about-one__content-text3 .text-box {
  position: relative;
  display: block;
  padding-left: 45px;
}

.about-one__content-text3 .text-box::before {
  position: absolute;
  top: -8px;
  left: 0;
  bottom: -7px;
  width: 2px;
  background: #d1d4d8;
  content: "";
}

.about-one__content-text3 .text-box h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

/***
=============================================
Counter One
=============================================
***/
.counter-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

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

.counter-one__inner ul {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__inner ul li {
  position: relative;
  display: block;
  float: left;
  margin-left: 40px;
  padding-right: 40px;
}

.counter-one__inner ul li::before {
  position: absolute;
  top: -150px;
  right: 0;
  bottom: -150px;
  width: 1px;
  background: #f1f2f4;
  content: "";
}

.counter-one__inner ul li:first-child {
  margin-left: 0px;
}

.counter-one__inner ul li:last-child {
  padding-right: 0px;
}

.counter-one__inner ul li:last-child:before {
  display: none;
}

.counter-one__inner ul li .sec-title {
  padding-bottom: 0px;
}

.counter-one__inner ul li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__inner ul li .inner .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  background: #f6f7f8;
  border-radius: 50%;
}

.counter-one__inner ul li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 65px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__inner ul li:hover .inner .icon-box span::before {
  transform: scale(0.9);
}

.counter-one__inner ul li .inner .text-box {
  position: relative;
  display: block;
  margin-left: 21px;
  flex: 1;
}

.counter-one__inner ul li .inner .text-box h2 {
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.counter-one__inner ul li .inner .text-box h2 .k {
  position: relative;
  display: inline-block;
  top: 5px;
  right: 7px;
}

.counter-one__inner ul li .inner .text-box p {
  color: var(--thm-base);
  font-size: 19px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-left: 8px;
}

.counter-one .odometer.odometer-auto-theme,
.counter-one .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 70px;
}

/***
=============================================
Services One
=============================================
***/
.services-one {
  position: relative;
  display: block;
  padding: 0px 0px 90px;
  z-index: 1;
}

.services-one .shape1 {
  position: absolute;
  bottom: 235px;
  right: 15px;
  z-index: -1;
}

.services-one::before {
  position: absolute;
  top: 200px;
  left: 210px;
  bottom: 240px;
  right: 0;
  background: var(--thm-gray-bg);
  content: "";
  z-index: -1;
}

.services-one__content {
  position: relative;
  display: block;
  margin-right: -30px;
  padding-top: 290px;
}

.services-one__content .sec-title {
  padding-bottom: 58px;
}

.services-one__content-inner {
  position: relative;
  display: block;
}

.services-one__content-single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgb(135, 140, 143, 0.06);
  padding: 0px 10px 32px;
  margin-bottom: 30px;
}

.services-one__content-single.mt30 {
  margin-top: 30px;
}

.services-one__content-single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 110px;
  background: #f9fafa;
  margin: 0 auto 29px;
  z-index: 1;
}

.services-one__content-single-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--thm-base);
  transition-delay: 0.6s;
  transition: .7s;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: -1;
}

.services-one__content-single:hover .services-one__content-single-icon:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.services-one__content-single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__content-single:hover .services-one__content-single-icon span:before {
  color: #ffffff;
}

.services-one__content-single-content {
  position: relative;
  display: block;
}

.services-one__content-single-content h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

.services-one__content-single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__content-single-content h2 a:hover {
  color: var(--thm-base);
}

.services-one__content-single-content .border-box {
  position: relative;
  display: block;
  width: 60px;
  height: 3px;
  background: #f2f3f5;
  margin: 0 auto;
  margin-top: 13px;
}

.services-one__content-single-content p {
  margin: 0;
  margin-top: 11px;
}

.services-one__img {
  position: relative;
  display: block;
  margin-left: 136px;
  z-index: 1;
}

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

.services-one__img-inner::before {
  position: absolute;
  top: 275px;
  left: -20px;
  bottom: 75px;
  width: 20px;
  background: var(--thm-base);
  content: "";
}

.services-one__img-inner img {
  max-width: none !important;
  float: left;
}

.services-one__img .icon-box {
  position: absolute;
  top: 0;
  left: -200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: var(--thm-base);
}

.services-one__img .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 100px;
}

.services-one__img-bottom {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 515px;
  width: 100%;
  background: #ffffff;
  padding: 27px 35px 31px;
  margin-top: 50px;
}

.services-one__img-bottom .left-text {
  position: relative;
  display: block;
  margin-right: 40px;
}

.services-one__img-bottom .left-text h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.services-one__img-bottom .right-text {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.services-one__img-bottom .right-text::before {
  position: absolute;
  top: -12px;
  left: 0;
  bottom: -11px;
  width: 2px;
  background: #daf3f4;
  content: "";
}

.services-one__img-bottom .right-text .icon-holder {
  position: relative;
  display: block;
}

.services-one__img-bottom .right-text .icon-holder span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 40px;
}

.services-one__img-bottom .right-text .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.services-one__img-bottom .right-text .text-box p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
}

.services-one__img-bottom .right-text .text-box h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

.services-one__img-bottom .right-text .text-box h3 a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__img-bottom .right-text .text-box h3 a:hover {
  color: var(--thm-base);
}


/***
=============================================
Brand One
=============================================
***/
.brand-one {
  position: relative;
  display: block;
  padding: 90px 0 90px;
  z-index: 2;
}

.brand-one::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 200px;
  bottom: 0;
  background: var(--thm-base);
  border-bottom-right-radius: 60px;
  content: "";
  z-index: -1;
}

.brand-one .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;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 145px;
  transition: all 400ms linear;
  transition-delay: 0.1s;
  border-radius: 50px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.brand-one .swiper-slide:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.brand-one .swiper-slide img {
  transition: .5s ease;
  transform: scale(1.02);
  opacity: 0.8;
  width: auto;
}

.brand-one .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1);
}


/***
=============================================
Faq One
=============================================
***/
.faq-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 25px;
}

.faq-one__left-img {
  position: relative;
  display: block;
}

.faq-one__left-img img {
  max-width: none !important;
  float: right;
}

.faq-one__left-inner {
  position: absolute;
  right: 0;
  top: 226px;
  left: 0;
  display: block;
  background: #ffffff;
  padding: 30px 35px 30px;
  margin-left: -85px;
}

.faq-one__form {
  position: relative;
  display: block;
  padding: 50px 60px 60px;
  z-index: 1;
}

.faq-one__form::before {
  position: absolute;
  top: -6px;
  left: 0;
  right: 110px;
  height: 6px;
  background: var(--thm-base);
  content: "";
}

.faq-one__form-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.faq-one__form-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #1a1a1a;
  opacity: 0.96;
  content: "";
  z-index: -2;
}

.faq-one__form .title-box {
  position: relative;
  display: block;
}

.faq-one__form .title-box h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  text-transform: capitalize;
}

.faq-one__form .form-box {
  position: relative;
  margin-top: 19px;
}

.faq-one__form .form-box form {
  position: relative;
}

.faq-one__form .form-box form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.faq-one__form .form-box form .form-group input[type="text"],
.faq-one__form .form-box form .form-group input[type="email"],
.faq-one__form .form-box form .form-group input[type="tel"],
.faq-one__form .form-box form .form-group input[type="url"],
.faq-one__form .form-box form .form-group textarea,
.faq-one__form .form-box form .form-group select {
  position: relative;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  text-transform: none;
  padding: 0px 20px 0px;
  width: 100%;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

.faq-one__form .form-box form .form-group textarea {
  height: 135px;
  resize: none;
  padding-top: 10px;
}

.faq-one__form .form-box form .form-group .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
}

.faq-one__form .form-box form .form-group .nice-select {
  position: relative;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  text-transform: none;
  padding: 0px 20px 0px;
  width: 100%;
  height: 65px;
  line-height: 65px;
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

.faq-one__form .form-box form .form-group .nice-select:after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, .7);
  border-right: 2px solid rgba(255, 255, 255, .7);
  right: 23px;
  margin-top: 0px;
  top: 25px;
  z-index: 10;
}

.faq-one__form .form-box form .form-group .nice-select .list {
  background-color: var(--thm-black);
}

.faq-one__form .form-box form .button-box {
  position: relative;
  display: block;
}

.faq-one__form .form-box form .button-box button {
  position: relative;
  z-index: 5;
}

.faq-one__form .form-box form .button-box button.thm-btn {
  width: 100%;
}


.faq-one__accordion {
  position: relative;
  display: block;
}

.faq-one__accordion .sec-title {
  padding-bottom: 53px;
}

.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 10px;
  transition: all 500ms ease;
  background: rgba(255, 255, 255);
  padding-bottom: 32px;
  margin-top: 35px;
}

.accordion-box .block::before {
  position: absolute;
  left: 105px;
  bottom: 0;
  right: 0;
  height: 2px;
  background: #edeeee;
  content: "";
}

.accordion-box .block.mb20 {
  margin-bottom: 0px;
}

.accordion-box .block:first-child {
  margin-top: 0;
}

.accordion-box .block:last-child {
  margin-bottom: 0;
  padding-bottom: 0px;
}

.accordion-box .block.bdrn::before {
  display: none;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn .number-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: #f2f3f5;
  border-radius: 25px;
  border-top-right-radius: 0px;
  color: var(--thm-gray);
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .number-box {
  color: #ffffff;
}

.accordion-box .block .acc-btn .number-box::before {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0px;
  border-radius: 25px;
  border-top-right-radius: 0px;
  background: #f2f3f5;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.accordion-box .block .acc-btn.active .number-box::before {
  background: var(--thm-base);
}

.accordion-box .block .acc-btn .number-box::after {
  position: absolute;
  top: -5px;
  left: 0;
  bottom: 0;
  right: -5px;
  border-radius: 25px;
  border-top-right-radius: 0px;
  background: #f8f9fa;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -2;
}

.accordion-box .block .acc-btn.active .number-box::after {
  background: rgba(var(--thm-base-rgb), 0.8);
}

.accordion-box .block .acc-btn .text {
  position: relative;
  display: block;
  margin-left: 30px;
}

.accordion-box .block .acc-btn .text h3 {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  transition: all 500ms ease;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 7px;
  padding-left: 105px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content p {
  margin: 0;
}

.faq-one__accordion-bottom {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f8fa;
  padding: 35px 60px 35px;
  margin-top: 75px;
}

.faq-one__accordion-bottom .icon-box {
  position: relative;
  display: inline-block;
}

.faq-one__accordion-bottom .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 70px;
}

.faq-one__accordion-bottom .text-box {
  position: relative;
  display: block;
  margin-left: 40px;
}

.faq-one__accordion-bottom .text-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

/***
=============================================
Features One
=============================================
***/
.features-one {
  position: relative;
  display: block;
  z-index: 1;
  margin-bottom: -65px;
  z-index: 5;
}

.features-one .auto-container {
  max-width: 1530px;
  width: 100%;
}

.features-one__inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding-bottom: 60px;
}

.features-one__single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.features-one__single.style2 {
  padding-left: 54px;
}

.features-one__single::before {
  position: absolute;
  top: 25px;
  right: -15px;
  bottom: 25px;
  width: 2px;
  background: #edeeee;
  content: "";
}

.features-one__single.style2::before {
  display: none;
}

.features-one__single-img {
  position: relative;
  display: block;
}

.features-one__single-img .inner {
  position: relative;
  display: block;
  width: 250px;
  height: 250px;
  border: 10px solid #edeeee;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.features-one__single-img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.5;
  content: "";
  z-index: 1;
}

.features-one__single-img .inner img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1.0);
}

.features-one__single:hover .features-one__single-img .inner img {
  transform: scale(1.1);
}

.features-one__single-img .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.features-one__single-img .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 75px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.features-one__single:hover .features-one__single-img .inner .icon-box span:before {
  transform: scale(0.9);
}

.features-one__single-content {
  position: relative;
  display: block;
  margin-left: 40px;
  flex: 1;
}

.features-one__single-content h3 {
  color: var(--thm-base);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.features-one__single-content h2 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 11px;
}

.features-one__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-one__single-content h2 a:hover {
  color: var(--thm-base);
}

.features-one__single-content p {
  font-size: 17px;
  line-height: 26px;
  margin: 0;
}


/***
=============================================
Why Choose One
=============================================
***/
.why-choose-one {
  position: relative;
  display: block;
  padding: 185px 0px 120px;
  z-index: 1;
}

.why-choose-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.why-choose-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.95;
  content: "";
  z-index: -2;
}

.why-choose-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
}

.why-choose-one .sec-title {
  padding-bottom: 0px;
}

.why-choose-one__top-text {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
}

.why-choose-one__img {
  position: relative;
  display: block;
  margin-right: -10px;
  z-index: 1;
}

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

.why-choose-one__img .inner:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.why-choose-one__img:hover .inner::after {
  opacity: 1;
}

.why-choose-one__img .inner .shape1 {
  position: absolute;
  top: 115px;
  left: 25px;
  opacity: 0.5;
  z-index: 2;
}

.why-choose-one__img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--thm-base);
  width: 180px;
  height: 310px;
  content: "";
  z-index: 2;
}

.why-choose-one__img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.why-choose-one__img:hover .inner img {
  transform: scale(1);
}

.why-choose-one__img .content-box {
  position: absolute;
  top: 45px;
  left: 25px;
  z-index: 5;
}

.why-choose-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin-bottom: 81px;
  margin-left: 115px;
}

.why-choose-one__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  content: "";
}

.why-choose-one__icon a {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1.0);
  text-align: center;
  color: var(--thm-base);
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__icon a:hover {
  color: #ffffff;
  background: var(--thm-black);
}

.why-choose-one__icon a::before,
.why-choose-one__icon a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.why-choose-one__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.why-choose-one__img .content-box h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}


.why-choose-one__progress {
  position: relative;
  display: block;
  margin-top: 32px;
}

.why-choose-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.why-choose-one__progress-single.mb0 {
  margin-bottom: 0;
}

.why-choose-one__progress-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.why-choose-one__progress-single .title-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.why-choose-one__progress-single .bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: #e5e5e6;
  border-radius: 0px;
}

.why-choose-one__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 8px;
  background: var(--thm-base);
  border-radius: 0px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.why-choose-one__progress-single .bar-inner::before {
  position: absolute;
  top: -8px;
  right: 0;
  bottom: -8px;
  width: 6px;
  background: var(--thm-base);
  content: "";
}

.why-choose-one__progress-single .count-text {
  position: absolute;
  top: -43px;
  right: 0px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}

.why-choose-one__content {
  position: relative;
  display: block;
  margin-left: 86px;
  padding-top: 65px;
  padding-bottom: 64px;
  z-index: 1;
}

.why-choose-one__content::before {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  right: -999999px;
  background: #ffffff;
  box-shadow: 0px 0px 80px 0px rgb(135, 140, 143, 0.01);
  content: "";
  z-index: -1;
}

.why-choose-one__content-bg {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  right: -310px;
  opacity: 0.1;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.why-choose-one__content-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.why-choose-one__content-list li {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.why-choose-one__content-list li:last-child {
  margin-bottom: 0;
}

.why-choose-one__content-list li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.why-choose-one__content-list li .inner .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 170px;
  background: var(--thm-base);
  border-top-right-radius: 85px;
  border-bottom-right-radius: 85px;
  box-shadow: 0px 0px 40px 0px rgb(135, 140, 143, 0.01);
  z-index: 1;
}

.why-choose-one__content-list li .inner .icon-box::before {
  position: absolute;
  top: 35px;
  left: 30px;
  bottom: 35px;
  width: 6px;
  background: rgba(255, 255, 255, .25);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.why-choose-one__content-list li:hover .inner .icon-box::before {
  background: rgba(var(--thm-base-rgb), 0.16);
}

.why-choose-one__content-list li .inner .icon-box:after {
  position: absolute;
  top: -1px;
  left: 0;
  right: -1px;
  bottom: -1px;
  content: "";
  background: #ffffff;
  border-top-right-radius: 85px;
  border-bottom-right-radius: 85px;
  transition-delay: 0.6s;
  transition: .7s;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(0);
  transform: perspective(400px) rotateX(0deg) scale(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  z-index: -1;
}

.why-choose-one__content-list li:hover .inner .icon-box:after {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
  transition-delay: 0.6s;
  transition: .7s;
}

.why-choose-one__content-list li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 75px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__content-list li:hover .inner .icon-box span:before {
  color: var(--thm-base);
}

.why-choose-one__content-list li .inner .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 35px;
}

.why-choose-one__content-list li .inner .text-box h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.why-choose-one__content-list li .inner .text-box p {
  margin: 0;
}

.why-choose-one__content-list li .inner .text-box .btn-box {
  position: relative;
  display: block;
  margin-top: 13px;
}

.why-choose-one__content-list li .inner .text-box .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__content-list li .inner .text-box .btn-box a:hover {
  color: var(--thm-base);
}

/***
=============================================
Team One
=============================================
***/
.team-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.team-one::before {
  position: absolute;
  top: 0;
  left: 53%;
  right: 0;
  height: 12px;
  background: var(--thm-base);
  clip-path: polygon(1% 0, 100% 0%, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.team-one .shape3 {
  position: absolute;
  top: 200px;
  left: 0;
  z-index: -1;
}

.team-one__single {
  position: relative;
  display: block;
  border: 2px solid #f2f3f3;
  padding: 15px 15px 15px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto 30px;
}

.team-one__single-img {
  position: relative;
  display: block;
  z-index: 3;
}

.team-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.team-one__single-img .inner .shape1 {
  position: absolute;
  left: 0;
  bottom: 20px;
  transform: perspective(400px) translateY(40px) scaleY(1.0);
  transform-origin: bottom;
  transition-delay: .01s;
  transition-timing-function: ease-in-out;
  transition-duration: .6s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
}

.team-one__single:hover .team-one__single-img .inner .shape1 {
  opacity: 0.5;
  transform: perspective(400px) translateY(20px) scaleY(1.0);
  transition-delay: .2s;
}

.team-one__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.team-one__single:hover .team-one__single-img .inner img {
  transform: scale(1);
}

.team-one__single-img .social-links {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0px;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
}

.team-one__single-img .social-links li {
  position: relative;
  display: inline-block;
}

.team-one__single-img .social-links li.share {
  position: relative;
}

.team-one__single-img .social-links>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 0%;
  z-index: 1;
}

.team-one__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0%;
  border-bottom-right-radius: 0;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-one__single-img .social-links>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-one__single-img .social-links>li>a>span {
  position: relative;
  display: block;
}

.team-one__single-img .social-links>li>a>span::before {
  position: relative;
  display: inline-block;
  top: -1px;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-img .social-links>li>a:hover span::before {
  color: #ffffff;
}


.team-one__single-img .social-links .share .social-links-inner {
  position: absolute;
  top: -88px;
  right: -37px;
  line-height: 0;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  transform-origin: bottom center;
}

.team-one__single-img .social-links .share:hover .social-links-inner {
  transform: scaleY(1.0);
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-one__single-img .social-links .share .social-links-inner li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.team-one__single-img .social-links .share .social-links-inner li:last-child {
  margin-bottom: 0px;
}

.team-one__single-img .social-links .share .social-links-inner li a {
  position: relative;
  display: block;
  z-index: 1;
}

.team-one__single-img .social-links .share .social-links-inner li a i {
  position: relative;
  display: block;
}

.team-one__single-img .social-links .share .social-links-inner li a i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.team-one__single-img .social-links .share .social-links-inner li a:hover i::before {
  color: var(--thm-base);
}

.team-one__single-content {
  position: relative;
  display: block;
  border: 2px solid #f2f3f3;
  margin-top: 15px;
  padding: 24px 10px 22px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.team-one__single-content .shape2 {
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  width: 38px;
  height: 40px;
  margin: 0 auto;
  transform: perspective(400px) translateY(-40px) scaleY(1.0);
  transform-origin: top;
  transition-delay: .01s;
  transition-timing-function: ease-in-out;
  transition-duration: .6s;
  transition-property: all;
  opacity: 0;
  z-index: -1;
}

.team-one__single-content .shape2::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  transform: rotate(45deg);
  content: "";
}

.team-one__single:hover .team-one__single-content .shape2 {
  opacity: 1.0;
  transform: perspective(400px) translateY(0px) scaleY(1.0);
  transition-delay: .2s;
}

.team-one__single:hover .team-one__single-content {
  border-color: #fbfbfc;
}

.team-one__single-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: #fbfbfc;
  opacity: 0;
  content: "";
  z-index: -1;
}

.team-one__single:hover .team-one__single-content:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.team-one__single-content h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1px;
}

.team-one__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-content h2 a:hover {
  color: var(--thm-base);
}

.team-one__single-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/***
=============================================
Testimonial One
=============================================
***/
.testimonial-one {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  z-index: 1;
}

.testimonial-one__img-two {
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonial-one::before {
  position: absolute;
  top: 55px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-gray-bg);
  content: "";
  z-index: -3;
}

.testimonial-one::after {
  position: absolute;
  top: 55px;
  left: 0;
  bottom: 0;
  right: 41.8%;
  background: var(--thm-base);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -2;
}

.testimonial-one__pattern {
  position: absolute;
  top: 55px;
  left: 0;
  right: 42%;
  bottom: 0;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-one__pattern::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  content: "";
  z-index: -2;
}

.testimonial-one__left {
  position: relative;
  display: block;
  max-width: 545px;
  width: 100%;
}

.testimonial-one__carousel-box {
  position: relative;
  display: block;
}

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

.testimonial-one__single-img {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.testimonial-one__single-img .inner {
  position: relative;
  display: block;
  width: 170px;
  margin: 0 auto;
  z-index: 1;
}

.testimonial-one__single-img .inner .shape1 {
  position: absolute;
  top: 25px;
  left: -20px;
  z-index: -1;
}

.testimonial-one__single-img .inner img {
  width: 100%;
}

.testimonial-one__single-img .border-box {
  position: relative;
  display: block;
  width: 450px;
  height: 2px;
  background: rgba(255, 255, 255, .25);
  margin: 0 auto;
  margin-top: 45px;
}

.testimonial-one__single-img .border-box::before {
  position: absolute;
  top: 0;
  left: 100px;
  bottom: 0;
  right: 100px;
  background: #ffffff;
  content: "";
}

.testimonial-one__single-img .border-box:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  width: 26px;
  margin: 0 auto;
  content: "";
}

.testimonial-one__single-img .border-box .icon {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.testimonial-one__single-img .border-box .icon img {
  width: auto;
}

.testimonial-one__single-content {
  position: relative;
  display: block;
}

.testimonial-one__single-content .author-info {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.testimonial-one__single-content .author-info h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

.testimonial-one__single-content .author-info h3 {
  color: var(--thm-base);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-one__single-content .text-box {
  position: relative;
  display: block;
}

.testimonial-one__single-content .text-box p {
  color: #d5c9c9;
  margin: 0;
  font-style: italic;
}

.testimonial-one__single-content .icon-box {
  position: relative;
  display: block;
  margin-top: 33px;
}

.testimonial-one__single-content .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #676767;
  font-size: 40px;
}


.dot-style1.owl-theme .owl-dots {
  position: relative;
  display: block;
  margin-top: 45px !important;
  z-index: 10;
}

.dot-style1.owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0px 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  opacity: 1;
}

.dot-style1.owl-theme .owl-dots .owl-dot.active span {
  background: #ffffff;
}

.dot-style1.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.dot-style1.owl-theme .owl-dots .owl-dot.active span::before {
  border-color: #ffffff;
  transform: scale(1.0);
  opacity: 1;
}



.testimonial-one__right {
  position: relative;
  display: block;
  padding-top: 135px;
  max-width: 470px;
  width: 100%;
}

.testimonial-one__right .sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 38px;
}

.testimonial-one__right-list {
  position: relative;
  display: block;
}

.testimonial-one__right-list li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.testimonial-one__right-list li:last-child {
  margin-bottom: 0;
}

.testimonial-one__right-list li .inner {
  position: relative;
  display: block;
  padding-left: 30px;
}

.testimonial-one__right-list li .inner .round-box {
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--thm-base);
  border-radius: 50%;
}

.testimonial-one__right-list li .inner .round-box::before {
  position: absolute;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  content: "";
}

.testimonial-one__right-list li .inner .text-box {
  position: relative;
  display: block;
}

.testimonial-one__right-list li .inner .text-box p {
  position: relative;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.testimonial-one__right-text {
  position: relative;
  display: block;
  padding: 22px 70px 22px;
  padding-right: 20px;
  margin-top: 36px;
  z-index: 1;
}

.testimonial-one__right-text::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  content: "";
  z-index: -1;
}

.testimonial-one__right-text::after {
  position: absolute;
  top: 1px;
  left: -3px;
  bottom: 1px;
  right: 1px;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  content: "";
  z-index: -2;
}

.testimonial-one__right-text p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

/***
=============================================
Gallery One
=============================================
***/
.gallery-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 170px;
  z-index: 1;
}

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

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

.gallery-one__single-img {
  position: relative;
  display: block;
}

.gallery-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-one__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.gallery-one__single:hover .gallery-one__single-img .inner::before {
  opacity: 1;
}

.gallery-one__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.gallery-one__single:hover .gallery-one__single-img img {
  transform: scale(1);
}

.gallery-one__single-img .overlay-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  bottom: -50px;
  right: 0;
  width: 520px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 5px 8.66px 20px 0px rgb(130, 132, 134, 0.08);
  padding: 36px 45px 35px;
  border-radius: 3px;
  overflow: hidden;
  z-index: 3;
  -webkit-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
  -ms-transform: perspective(400px) rotateX(40deg) scaleY(0.7);
  transform: perspective(400px) rotateX(40deg) scaleY(0.7);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 0;
}

.gallery-one__single:hover .gallery-one__single-img .overlay-content {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  opacity: 1;
}

.gallery-one__single-img .overlay-content .text-box {
  position: relative;
  display: block;
}

.gallery-one__single-img .overlay-content p {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 700ms ease;
}

.gallery-one__single:hover .gallery-one__single-img .overlay-content p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-one__single-img .overlay-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(2rem);
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s ease-in-out 0s;
  transition-delay: 0.5s;
}

.gallery-one__single:hover .gallery-one__single-img .overlay-content h2 {
  text-transform: capitalize;
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.gallery-one__single-img .overlay-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-one__single-img .overlay-content h2 a:hover {
  color: var(--thm-base);
}

.gallery-one__link {
  position: relative;
  display: block;
}

.gallery-one__link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--thm-base);
  line-height: 0;
  border-radius: 0%;
  z-index: 1;
}

.gallery-one__link a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 0%;
  background: var(--thm-black);
  transform: scale(0.5);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  content: "";
}

.gallery-one__link a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.gallery-one__link a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.gallery-one__carousel.owl-carousel {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}


.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img .overlay-content {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  opacity: 1;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img .overlay-content h2 {
  text-transform: capitalize;
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img .overlay-content p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img .inner::before {
  opacity: 1;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-one__single-img img {
  transform: scale(1);
}


.gallery-one .owl-theme .owl-nav {
  margin-top: 0px;
  position: absolute;
  top: -168px;
  right: 0;
}

.gallery-one .owl-carousel .owl-nav button.owl-prev,
.gallery-one .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--thm-base);
  font-size: 20px;
  border: 5px solid #f4f6f8;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-one .owl-carousel .owl-nav button.owl-prev:hover,
.gallery-one .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--thm-base);
  color: #ffffff;
}

/***
=============================================
Pricing One
=============================================
***/
.pricing-one {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

.pricing-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.pricing-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-gray-bg-rgb), 0.96);
  content: "";
  z-index: -2;
}

.pricing-one .row {
  --bs-gutter-x: 0px;
}

.pricing-one__single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.pricing-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.pricing-one__single-img::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.pricing-one__single:hover .pricing-one__single-img::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.pricing-one__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.pricing-one__single:hover .pricing-one__single-img img {
  transform: scale(1);
}

.pricing-one__single-content {
  position: relative;
  display: block;
  border: 1px solid #d7dadc;
  padding: 48px 0px 40px;
  flex: 1;
}

.pricing-one__single-content-inner {
  position: relative;
  display: block;
  padding: 0px 40px 0px;
}

.pricing-one__single-content-inner .title-box {
  position: relative;
  display: block;
  border-bottom: 1px solid #d7dadc;
  padding-bottom: 13px;
}

.pricing-one__single-content-inner .title-box h2 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
}

.pricing-one__single-content-inner .title-box p {
  color: var(--thm-base);
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

.pricing-one__single-content-inner .price-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d7dadc;
  margin-top: 15px;
  padding-bottom: 16px;
}

.pricing-one__single-content-inner .price-box .text-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.pricing-one__single-content-inner .price-box .text-box h2 span {
  font-size: 14px;
  font-weight: 600;
}

.pricing-one__single-content-inner .price-box .icon-box {
  position: relative;
  display: block;
}

.pricing-one__single-content-inner .price-box .icon-box span:before {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 40px;
}

.pricing-one__single-content-list {
  position: relative;
  display: block;
  padding-right: 40px;
  margin-top: 12px;
}

.pricing-one__single-content-list li {
  position: relative;
  display: block;
  padding: 6px 20px 6px;
  padding-left: 40px;
  z-index: 1;
}

.pricing-one__single-content-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f2f3f5;
  border: 1px solid #d7dadc;
  content: "";
  transition: all 500ms ease;
  transform: scaleY(0);
  z-index: -1;
}

.pricing-one__single-content-list li:hover::before {
  transform: scaleY(1);
}

.pricing-one__single-content-list li p {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 17px;
}

.pricing-one__single-content-list li p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
}


/***
=============================================
Blog One
=============================================
***/
.blog-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 82px;
  z-index: 1;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-one__single-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-one__single:hover .blog-one__single-img::before {
  opacity: 1;
}

.blog-one__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img img {
  transform: scale(1);
}

.blog-one__single-img .date-box {
  position: absolute;
  top: 30px;
  left: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 70px;
  height: 80px;
  background: #ffffff;
  padding-top: 2px;
  z-index: 5;
}

.blog-one__single-img .date-box h2 {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}

.blog-one__single-img .date-box p {
  font-weight: 600;
  margin: 0;
}

.blog-one__single-img .text-box {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: #ffffff;
  padding: 13px 40px 13px;
  padding-left: 20px;
}

.blog-one__single-img .text-box p {
  position: relative;
  padding-left: 25px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-one__single-img .text-box p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--thm-base);
  content: "";
  transform: rotate(45deg);
}

.blog-one__single-img .text-box .border-box {
  position: relative;
  display: block;
  margin-left: -2px;
  width: 120px;
  height: 2px;
  background: var(--thm-base);
  margin-top: 13px;
}


.blog-one__single-content {
  position: relative;
  display: block;
  padding: 26px 25px 0px;
  padding-right: 5px;
}

.blog-one__single-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  letter-spacing: 0.012em;
}

.blog-one__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content h2 a:hover {
  color: var(--thm-base);
}

.blog-one__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 12px;
}

.blog-one__single-content .btn-box a {
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.012em;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .btn-box a:hover {
  color: var(--thm-base);
}

/***
=============================================
Subscribe One
=============================================
***/
.subscribe-one {
  position: relative;
  display: block;
  z-index: 3;
}

.subscribe-one .auto-container {
  max-width: 1530px;
  width: 100%;
}

.subscribe-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 90px 105px 90px;
  background: var(--thm-gray-bg);
  margin-bottom: -110px;
  z-index: 6;
}

.subscribe-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 590px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.subscribe-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.2);
  content: "";
  z-index: -1;
}

.subscribe-one__inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1165px;
  width: 100%;
}

.subscribe-one__form {
  position: relative;
  display: block;
  max-width: 855px;
  width: 100%;
  z-index: 1;
}

.subscribe-one__form .input-box {
  position: relative;
  display: block;
  max-width: 604px;
  width: 100%;
}

.subscribe-one__form input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  padding: 0 35px;
  padding-right: 20px;
  background: #ffffff;
  border: none;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  border-radius: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  text-transform: none;
  outline: none;
}

.subscribe-one__form input::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.subscribe-one__form input:-moz-placeholder {
  color: var(--thm-gray);
}

.subscribe-one__form input::-moz-placeholder {
  color: var(--thm-gray);
}

.subscribe-one__form input:-ms-input-placeholder {
  color: var(--thm-gray);
}

.subscribe-one__form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 70px;
  border-radius: 0px;
  -webkit-transition: all 300ms ease 100ms;
  transition: all 300ms ease 100ms;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.subscribe-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.subscribe-one__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  background: transparent;
  border: 15px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  content: "";
}

.subscribe-one__icon span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 35px;
}

/***
=============================================
Footer One
=============================================
***/
.footer-one {
  position: relative;
  display: block;
  padding: 230px 0px 20px;
  overflow: hidden;
  z-index: 1;
}

.footer-one .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.08;
  z-index: 1;
}

.footer-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.footer-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(1, 1, 1, 0.97);
  content: "";
  z-index: -2;
}

.footer {
  position: relative;
  display: block;
  padding-bottom: 113px;
  z-index: 1;
}

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

.footer-one__single .title {
  position: relative;
  display: block;
  margin-top: -8px;
  margin-bottom: 33px;
}

.footer-one__single .title h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.footer-one__single-contact {
  position: relative;
  display: block;
}

.footer-one__single-contact-inner {
  position: relative;
  display: block;
}

.footer-one__single-contact-inner p {
  color: #b3b0b0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.footer-one__single-contact-inner h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.footer-one__single-contact-inner h4 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__single-contact-inner h4 a:hover {
  color: var(--thm-base);
}

.footer-one__single-contact-inner h4 span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  padding-right: 8px;
  top: 1px;
}

.footer-one__single-link {
  position: relative;
  display: block;
}

.footer-one__single-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-one__single-list li {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.footer-one__single-list li:last-child {
  margin-bottom: 0;
}

.footer-one__single-list li a {
  position: relative;
  display: inline-block;
  color: #b3b0b0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__single-list li a:hover {
  color: var(--thm-base);
}

.footer-one__single-departments {
  position: relative;
  display: block;
  margin-left: 35px;
}

.footer-one__single-explore {
  position: relative;
  display: block;
  margin-left: 68px;
}

.footer-one__single-gallery {
  position: relative;
  display: block;
  margin-left: 110px;
}

.footer-one__single-gallery-box {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
  padding-top: 8px;
  overflow: hidden;
}

.footer-one__single-gallery-box li {
  position: relative;
  display: block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.footer-one__single-gallery-box li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-one__single-gallery-box li .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgba(var(--thm-black-rgb), 0.8);
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scale(.5);
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.22);
  z-index: 1;
}

.footer-one__single-gallery-box li:hover .img-box::before {
  opacity: 1;
  left: 0%;
  transform: scaleY(1) skew(0deg, 0deg);
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.22);
}

.footer-one__single-gallery-box li .img-box img {
  width: auto;
}

.footer-one__single-gallery-box li .img-box .icon-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: perspective(400px) translateY(20px);
  transform-origin: top;
  transition: all 0.1s ease-in-out 0s;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer-one__single-gallery-box li:hover .img-box .icon-box {
  opacity: 1;
  transform: perspective(400px) translateY(0);
  transition: all 0.5s ease-in-out 0.5s;
}

.footer-one__single-gallery-box li .img-box .icon-box a {
  position: relative;
  display: inline-block;
}

.footer-one__single-gallery-box li .img-box .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}


.footer-one__bottom {
  position: relative;
  display: block;
  z-index: 1;
}

.footer-one__bottom .auto-container {
  max-width: 1530px;
  width: 100%;
}

.footer-one__bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  padding: 30px 110px 30px;
}

.footer-one__bottom-left {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-one__bottom-left .logo-box {
  position: relative;
  display: block;
  margin-right: 90px;
}

.footer-one__bottom-left .logo-box a {
  position: relative;
  display: inline-block;
}

.footer-one__bottom-left .logo-box img {
  width: 100%;
}

.footer-one__bottom-left .social-links {
  position: relative;
  display: block;
  padding-left: 90px;
}

.footer-one__bottom-left .social-links::before {
  position: absolute;
  top: -12px;
  left: 0;
  bottom: -12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.footer-one__bottom-left .social-links ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-one__bottom-left .social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.footer-one__bottom-left .social-links ul li:last-child {
  margin-right: 0;
}

.footer-one__bottom-left .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
}


.footer-one__bottom-left .social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.footer-one__bottom-left .social-links ul li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-one__bottom-left .social-links ul li a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 17px;
  z-index: 2;
}

.footer-one__bottom .bottom-inner .copyright {
  position: relative;
  display: block;
}

.footer-one__bottom .bottom-inner .copyright p {
  color: #b3b0b0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-one__bottom .bottom-inner .copyright p a {
  color: #b3b0b0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__bottom .bottom-inner .copyright p a:hover {
  color: var(--thm-base);
}

/***
=============================================
 About Two
=============================================
***/
.about-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.about-two .shape3 {
  position: absolute;
  right: -20px;
  bottom: 150px;
  opacity: 0.2;
  z-index: -1;
}

.about-two__img {
  position: relative;
  display: block;
  margin-right: 30px;
}

.about-two__img-inner {
  position: relative;
  display: block;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
}

.about-two__img-inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.about-two__img:hover .about-two__img-inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-two__img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.about-two__img:hover .about-two__img-inner img {
  transform: scale(1);
}

.about-two__img-inner .experience-box {
  position: absolute;
  top: 40px;
  left: 0;
  bottom: 40px;
  background: rgba(var(--thm-black-rgb), 0.85);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  text-align: center;
  padding-left: 32px;
  padding-right: 32px;
  content: "";
  z-index: 3;
}

.about-two__img-inner .experience-box h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.about-two__img-text {
  position: absolute;
  bottom: -25px;
  right: 0;
  background: var(--thm-base);
  padding: 32px 45px 25px;
  overflow: hidden;
  z-index: 3;
}

.about-two__img-text .shape1 {
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0.1;
  z-index: -1;
}

.about-two__img-text h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.about-two__img-text h2 span {
  font-size: 45px;
}

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

.about-two__content .sec-title {
  padding-bottom: 25px;
}

.about-two__content-text {
  margin: 0;
}

.about-two__content-bottom {
  position: relative;
  display: block;
  margin-top: 57px;
}

.about-two__content-bottom-content {
  position: relative;
  display: block;
}

.about-two__content-bottom-content .single-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-two__content-bottom-content .single-box.mt {
  margin-top: 53px;
}

.about-two__content-bottom-content .single-box::before {
  position: absolute;
  top: 15px;
  left: 20px;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.05);
  content: "";
  z-index: -1;
}

.about-two__content-bottom-content .single-box .inner {
  position: relative;
  display: block;
  padding-left: 85px;
  padding-top: 34px;
  padding-bottom: 17px;
}

.about-two__content-bottom-content .single-box .inner .icon-box {
  position: absolute;
  top: 0px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--thm-base);
  border-radius: 10px;
}

.about-two__content-bottom-content .single-box .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
}

.about-two__content-bottom-content .single-box .inner .content-box {
  position: relative;
  display: block;
}

.about-two__content-bottom-content .single-box .inner .content-box h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-two__content-bottom-content .single-box .inner .content-box p {
  font-size: 16px;
  line-height: 26px;
}

.about-two__content-bottom-img {
  position: relative;
  display: block;
  margin-top: 12px;
}

.about-two__content-bottom-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.about-two__content-bottom-img-inner .shape1 {
  position: absolute;
  left: 45px;
  bottom: 95px;
  opacity: 0.75;
  z-index: 1;
}

.about-two__content-bottom-img-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.6;
  content: "";
  z-index: 1;
}

.about-two__content-bottom-img-inner img {
  width: 100%;
}


.about-two__content-bottom-img .content-box {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 5;
}

.about-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-bottom: 105px;
}

.about-two__icon::before {
  position: absolute;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  content: "";
}

.about-two__icon a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: var(--thm-base);
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.about-two__icon a:hover {
  color: var(--thm-base);
  background: #ffffff;
}

.about-two__icon a::before,
.about-two__icon a::after {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.about-two__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.about-two__content-bottom-img .content-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.08em;
}


/***
=============================================
Features Two
=============================================
***/
.features-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
  z-index: 1;
}

.features-two__inner {
  position: relative;
  display: block;
  margin-right: -300px;
}

.features-two__carousel {
  position: relative;
  display: block;
  border-left: 1px solid #e7e8e9;
}

.features-two__single {
  position: relative;
  display: block;
  max-width: 230px;
  width: 100%;
  border: 1px solid #e7e8e9;
  border-left: none;
  padding-top: 50px;
  padding-bottom: 50px;
}

.features-two__single .icon-box {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.features-two__single .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 60px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.features-two__single:hover .icon-box span:before {
  transform: scale(0.9);
}

.features-two__single .title-box {
  position: relative;
  display: block;
}

.features-two__single .title-box h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.features-two__single .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-two__single .title-box h2 a:hover {
  color: var(--thm-base);
}

/***
=====================================================
Services Two
=====================================================
***/
.services-two {
  position: relative;
  display: block;
  padding: 120px 0px 282px;
  z-index: 1;
}

.services-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.services-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.9;
  content: "";
  z-index: -2;
}

.services-two .shape1 {
  position: absolute;
  top: -75px;
  left: 150px;
  z-index: -1;
}

.services-two .shape2 {
  position: absolute;
  left: 475px;
  bottom: 115px;
  z-index: -1;
}

.services-two .shape2 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.services-two .shape3 {
  position: absolute;
  top: 145px;
  right: -5px;
  opacity: 0.6;
  z-index: -1;
}

.services-two .sec-title__tagline h6 {
  color: var(--thm-base);
}

.services-two .sec-title__title {
  color: #ffffff;
}

.services-two__inner {
  position: relative;
  display: block;
  padding-left: 300px;
}

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

.services-two__single-inner {
  position: relative;
  display: block;
  padding: 0px 5px 0px;
  transition: 0.9s;
  opacity: 1;
}

.services-two__single:hover .services-two__single-inner {
  opacity: 0;
}

.services-two__single-inner .number-box {
  position: relative;
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.services-two__single-inner h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-two__single-inner h2 a {
  color: #ffffff;
}

.services-two__single-inner p {
  color: #cfcbcb;
  margin: 0;
}

.services-two__single-inner .icon-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 27px;
}

.services-two__single-inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .3);
  font-size: 70px;
}

.services-two__single-inner .icon-box .border-box {
  position: relative;
  display: block;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 20px;
  margin-bottom: 20px;
}

.services-two__single .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 1s;
  transform: scaleX(.8);
  opacity: 0;
  z-index: 2;
}

.services-two__single:hover .overlay-content {
  transform: scaleX(1);
  opacity: 1;
}

.services-two__single .overlay-content .inner {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, .1);
  padding: 32px 25px 40px;
}

.services-two__single .overlay-content .inner h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-two__single .overlay-content .inner h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single .overlay-content .inner h2 a:hover {
  color: var(--thm-base);
}

.services-two__single .overlay-content .inner p {
  color: #cfcbcb;
  font-size: 18px;
  margin: 0;
}

.services-two__single .overlay-content .inner .btn-box {
  position: relative;
  display: block;
  margin-top: 11px;
}

.services-two__single .overlay-content .inner .btn-box a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single .overlay-content .inner .btn-box a:hover {
  color: var(--thm-base);
}

.services-two__single .overlay-content .inner .icon-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 37px;
  z-index: 1;
}

.services-two__single .overlay-content .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 70px;
}

.services-two__single .overlay-content .inner .icon-box .border-box {
  position: relative;
  display: block;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 20px;
  margin-bottom: 20px;
}

.services-two__single .overlay-content .inner .round {
  position: absolute;
  top: -10px;
  left: -25px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  z-index: -1;
}


/***
=====================================================
Features Three
=====================================================
***/
.features-three {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  margin-top: -110px;
  overflow: hidden;
  z-index: 3;
}

.features-three::before {
  position: absolute;
  top: 0px;
  left: 210px;
  right: 0;
  bottom: 0;
  background: #ffffff;
  content: "";
  z-index: -1;
}

.features-three .shape1 {
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0.03;
  z-index: -1;
}

.features-three .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  line-height: 0;
  text-align: center;
  z-index: -1;
}

.features-three__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.features-three__single {
  position: relative;
  display: block;
  border: 1px solid #e7e8e9;
  padding: 15px 15px 37px;
  margin-bottom: 30px;
}

.features-three__single::before {
  position: absolute;
  left: 155px;
  bottom: 0;
  right: 0;
  height: 5px;
  background: rgba(var(--thm-base-rgb), 0.2);
  content: "";
}

.features-three__single-inner {
  position: relative;
  display: block;
  padding-left: 145px;
}

.features-three__single-inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 115px;
}

.features-three__single-inner .icon-box .border-box {
  position: relative;
  display: block;
  width: 6px;
  height: 30px;
  background: #e2e3e4;
  margin: 15px auto 0px;
}

.features-three__single-inner .icon-box .border-box::before {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 6px;
  height: 6px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
}

.features-three__single-inner .icon-box .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  background: var(--thm-base);
}

.features-three__single-inner .icon-box .inner span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 60px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.features-three__single:hover .features-three__single-inner .icon-box .inner span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.features-three__single-inner .content-box {
  position: relative;
  display: block;
  padding-top: 19px;
}

.features-three__single-inner .content-box span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.21em;
  margin-bottom: 8px;
}

.features-three__single-inner .content-box h2 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.features-three__single-inner .content-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-three__single-inner .content-box h2 a:hover {
  color: var(--thm-base);
}

.features-three__single-inner .content-box p {
  margin: 0;
}


/***
=============================================
Brand Two
=============================================
***/
.brand-two {
  position: relative;
  display: block;
  padding: 81px 0 83px;
  z-index: 2;
}

.brand-two .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;
  height: 145px;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

.brand-two .swiper-slide img {
  transition: .5s ease;
  transform: scale(1.02);
  opacity: 0.82;
  width: auto;
}

.brand-two .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1);
}

/***
=============================================
Gallery Two
=============================================
***/
.gallery-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
  z-index: 1;
}

.gallery-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 53px;
}

.gallery-two__top .sec-title {
  padding-bottom: 0px;
}

.gallery-two__top-text {
  max-width: 475px;
  width: 100%;
}

.gallery-two__inner {
  position: relative;
  display: block;
}

.gallery-two__single {
  position: relative;
  display: block;
}

.gallery-two__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-two__single-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.gallery-two__single:hover .gallery-two__single-inner::before {
  opacity: 1;
}

.gallery-two__single-inner .shape1 {
  position: absolute;
  left: 0;
  bottom: -495px;
  right: 0;
  text-align: center;
  transform: scaleY(80%);
  transition: all 400ms linear;
  transition-delay: 0.2s;
  opacity: 0;
  z-index: 1;
}

.gallery-two__single:hover .gallery-two__single-inner .shape1 {
  transform: scaleY(100%);
  opacity: 0.8;
}

.gallery-two__single-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.gallery-two__single:hover .gallery-two__single-inner img {
  transform: scale(1);
}

.gallery-two__single-inner .content-box {
  position: absolute;
  left: 0;
  bottom: 50px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.gallery-two__single-inner .content-box .icon-box {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 700ms ease;
}

.gallery-two__single:hover .gallery-two__single-inner .content-box .icon-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__single-inner .content-box .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-two__single-inner .content-box .icon-box a:hover {
  background: var(--thm-black);
}

.gallery-two__single-inner .content-box .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 30px;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-two__single-inner .content-box .icon-box a:hover span:before {
  color: #ffffff;
}

.gallery-two__single-inner .content-box .text-box {
  position: relative;
  display: block;
  margin-top: 31px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 700ms ease;
}

.gallery-two__single:hover .gallery-two__single-inner .content-box .text-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__single-inner .content-box .text-box p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.gallery-two__single-inner .content-box .text-box h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 7px;
}

.gallery-two__single-inner .content-box .text-box h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-two__single-inner .content-box .text-box h2 a:hover {
  color: var(--thm-black);
}

.gallery-two__carousel.owl-carousel {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner .content-box .icon-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner .content-box .text-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner:before {
  opacity: 1;
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner img {
  transform: scale(1);
}

.gallery-two__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-two__single-inner .shape1 {
  transform: scaleY(100%);
  opacity: 0.8;
}


/***
=============================================
Team Two
=============================================
***/
.team-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 60px;
  z-index: 1;
}

.team-two .shape1 {
  position: absolute;
  top: -85px;
  right: -30px;
  opacity: 0.08;
  z-index: -1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.team-two__single-img {
  position: relative;
  display: block;
  z-index: 1;
}

.team-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.team-two__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.team-two__single:hover .team-two__single-img .inner img {
  transform: scale(1);
}

.team-two__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-two__single:hover .team-two__single-img .inner::before {
  opacity: 1;
}

.team-two__single-img .overlay-content {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 0.05);
  padding: 11px 35px 13px;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0;
  z-index: 5;
}

.team-two__single:hover .team-two__single-img .overlay-content {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.team-two__single-img .overlay-content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.team-two__single-img .overlay-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-two__single-img .overlay-content h2 a:hover {
  color: var(--thm-base);
}

.team-two__single-img .overlay-content p {
  color: var(--thm-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.18em;
}

.team-two__single-img .social-links {
  position: absolute;
  bottom: 30px;
  left: 15px;
  z-index: 5;
}

.team-two__single-img .social-links li {
  position: relative;
  display: inline-block;
}

.team-two__single-img .social-links li.share {
  position: relative;
}

.team-two__single-img .social-links>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 65px;
  z-index: 1;
}

.team-two__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 0px;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
  z-index: 1;
}

.team-two__single-img .social-links>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-two__single-img .social-links>li>a::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
  content: "";
  z-index: -1;
}

.team-two__single-img .social-links>li>a .team-two__single-img .social-links>li>a>span {
  position: relative;
  display: block;
}

.team-two__single-img .social-links>li>a>span::before {
  position: relative;
  display: inline-block;
  top: 0px;
  color: #ffffff;
  font-size: 15px;
  line-height: 65px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-two__single-img .social-links>li>a:hover span::before {
  color: #ffffff;
}

.team-two__single-img .social-links .share .social-links-inner {
  position: absolute;
  top: -205px;
  left: 0px;
  right: 0;
  line-height: 0;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  transform-origin: bottom center;
  padding: 15px 0px 31px;
  overflow: hidden;
  z-index: -1;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0% 100%);
}

.team-two__single-img .social-links .share .social-links-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.team-two__single-img .social-links .share:hover .social-links-inner {
  transform: scaleY(1.0);
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-two__single-img .social-links .share .social-links-inner li {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.team-two__single-img .social-links .share .social-links-inner li:last-child {
  margin-bottom: 0px;
}

.team-two__single-img .social-links .share .social-links-inner li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 45px;
  border-radius: 0%;
  z-index: 1;
}

.team-two__single-img .social-links .share .social-links-inner li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-two__single-img .social-links .share .social-links-inner li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-two__single-img .social-links .share .social-links-inner li a i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-two__single-img .social-links .share .social-links-inner li a:hover i::before {
  color: #ffffff;
}


/***
=====================================================
Work One
=====================================================
***/
.work-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
  z-index: 1;
}

.work-one .shape1 {
  position: absolute;
  top: -80px;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.work-one li {
  position: relative;
  display: block;
}

.work-one li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 25px;
  width: 1px;
  background: #e7e8e9;
  content: "";
}

.work-one li:last-child:before {
  display: none;
}

.work-one__single {
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.work-one__single .icon-box {
  position: absolute;
  top: 100px;
  right: -62px;
  z-index: 2;
}

.work-one__single .icon-box a {
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border: 1px solid #e7e8e9;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-one__single .icon-box a:hover {
  background: var(--thm-base);
  border-color: var(--thm-base);
}

.work-one__single .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-one__single .icon-box a:hover span:before {
  color: #ffffff;
}

.work-one__single-img {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  background: #ffffff;
  border: 2px solid var(--thm-base);
  border-radius: 50%;
  border-top-left-radius: 20%;
  border-bottom-right-radius: 20%;
  z-index: 1;
}

.work-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.08);
  border-radius: 50%;
  border: 5px solid #fff;
  border-top-left-radius: 20%;
  border-bottom-right-radius: 20%;
  z-index: 1;
}

.work-one__single-img-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.work-one__single:hover .work-one__single-img-inner::before {
  opacity: 1;
}

.work-one__single-img-inner .number-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #010101;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .5);
  font-size: 65px;
  line-height: 70px;
  font-weight: 700;
  transform: scale(0.9);
  transition: all 300ms linear;
  transition-delay: 0.2s;
  opacity: 0;
  z-index: 5;
}

.work-one__single:hover .work-one__single-img-inner .number-box {
  transform: scale(1.0);
  opacity: 1.0;
  transition: all 400ms linear;
  transition-delay: 0.3s;
}

.work-one__single-img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.work-one__single:hover .work-one__single-img-inner img {
  transform: scale(1);
}

.work-one__single-img .icon-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.08);
  border-radius: 50%;
  z-index: 5;
}

.work-one__single-img .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 35px;
}


.work-one__single-content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.work-one__single-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.work-one__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-one__single-content h2 a:hover {
  color: var(--thm-base);
}

.work-one__single-content p {
  margin: 0;
}


/***
=====================================================
Contact One
=====================================================
***/
.contact-one {
  position: relative;
  display: block;
  padding: 110px 0px 120px;
  z-index: 1;
}

.contact-one .shape2 {
  position: absolute;
  top: 45px;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.contact-one::after {
  position: absolute;
  right: 0;
  height: 6px;
  background: var(--thm-base);
  width: 475px;
  content: "";
}


.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 260px;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.contact-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.9;
  content: "";
  z-index: -2;
}

.cta-one {
  position: relative;
  display: block;
  padding-bottom: 112px;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-one__content {
  position: relative;
  display: flex;
  align-items: center;
}

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

.cta-one__content .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 80px;
}

.cta-one__content .title-box {
  position: relative;
  display: block;
  margin-left: 55px;
}

.cta-one__content .title-box h2 {
  color: #ffffff;
  font-size: 46px;
  line-height: 56px;
  font-weight: 600;
}

.cta-one__btn {
  position: relative;
  display: block;
}

.cta-one__btn a {
  position: relative;
  display: inline-block;
  border: 2px solid #8e8e8f;
  line-height: 65px;
  padding-left: 45px;
  padding-right: 45px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-one__btn a:hover {
  color: var(--thm-base);
  border-color: var(--thm-base);
}

.contact-one__content {
  position: relative;
  display: block;
  max-width: 480px;
  width: 100%;
}

.contact-one__content .sec-title {
  padding-bottom: 24px;
}

.contact-one__content .sec-title__title {
  color: #ffffff;
}

.contact-one__content .sec-title.style2 .sec-title__title {
  text-transform: none;
}

.contact-one__content-text {
  color: #ede0e0;
}

.contact-one__form {
  position: relative;
  display: block;
  padding-top: 75px;
  padding-left: 70px;
  padding-bottom: 75px;
  z-index: 1;
}

.contact-one__form .shape1 {
  position: absolute;
  right: -315px;
  bottom: 75px;
  opacity: 0.1;
  z-index: -1;
}

.contact-one__form::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -999999px;
  background: #ffffff;
  box-shadow: 0px 0px 25px 0px rgb(0, 0, 0, 0.05);
  content: "";
  z-index: -1;
}

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

.contact-one__form .input-box input[type="text"],
.contact-one__form .input-box input[type="email"],
.contact-one__form .input-box textarea {
  position: relative;
  display: block;
  background: #f3f3f4;
  width: 100%;
  height: 60px;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.contact-one__form form input[type="text"]::-webkit-input-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="text"]:-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="text"]::-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="text"]:-ms-input-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]::-webkit-input-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]:-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]::-moz-placeholder {
  color: #79817c;
}

.contact-one__form form input[type="email"]:-ms-input-placeholder {
  color: #79817c;
}

.contact-one__form form textarea::-webkit-input-placeholder {
  color: #79817c;
}

.contact-one__form form textarea:-moz-placeholder {
  color: #79817c;
}

.contact-one__form form textarea::-moz-placeholder {
  color: #79817c;
}

.contact-one__form form textarea:-ms-input-placeholder {
  color: #79817c;
}

.contact-one__form .input-box textarea {
  width: 100%;
  height: 150px;
  background-color: #f3f3f4;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
  resize: none;
}

.contact-one__form .input-box .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
}

.contact-one__form .input-box .nice-select {
  background: #f3f3f4;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 0px;
}

.contact-one__form .input-box .nice-select:after {
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #79817c;
  border-right: 2px solid #79817c;
  right: 30px;
  margin-top: 0px;
  top: 25px;
  z-index: 10;
}

.contact-one__form .nice-select .list {
  background-color: rgba(255, 255, 255, .7);
  z-index: 99;
}

#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--thm-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--thm-base) none repeat scroll 0 0;
  border: 2px solid var(--thm-base);
  border-radius: 0;
  color: #ffffff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
  font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
  font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget-header {
  color: #ffffff;
  background: var(--thm-black);
}

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

.contact-one__form-btn button.thm-btn {
  line-height: 65px;
}


/***
=====================================================
Faq Two
=====================================================
***/
.faq-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
  z-index: 1;
}

.faq-two .shape3 {
  position: absolute;
  right: -70px;
  bottom: -200px;
  opacity: 0.1;
  z-index: -1;
}

.faq-two__img {
  position: relative;
  display: block;
}

.faq-two__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.faq-two__img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.faq-two__img:hover .inner img {
  transform: scale(1);
}

.faq-two__img .inner .shape2 {
  position: absolute;
  left: 30px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  z-index: 1;
}

.faq-two__img .inner .shape1 {
  position: absolute;
  top: -265px;
  left: -60px;
  z-index: 1;
}

.faq-two__img .content-box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 60px 27px 60px;
  border: 1px solid #e7e8e9;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  z-index: 5;
}

.faq-two__img .content-box .icon-box {
  position: relative;
  display: block;
  transform: rotate(90deg) translateX(0%);
}

.faq-two__img .content-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 50px;
}

.faq-two__img .content-box .text-box {
  position: relative;
  display: block;
  margin-top: 10px;
}

.faq-two__img .content-box .text-box p {
  font-size: 19px;
  line-height: 29px;
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 5px;
}

.faq-two__img .content-box .text-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}

.faq-two__img .content-box .text-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-two__img .content-box .text-box h3 a:hover {
  color: var(--thm-base);
}


.faq-two__icon {
  position: absolute;
  left: 120px;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  z-index: 2;
}

.faq-two__icon::before {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  content: "";
}

.faq-two__icon a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--thm-base);
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-two__icon a:hover {
  color: var(--thm-base);
  background: #ffffff;
}

.faq-two__icon a::before,
.faq-two__icon a::after {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.faq-two__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


.faq-two__accordion {
  position: relative;
  display: block;
  margin-left: 35px;
}

.faq-two__accordion .sec-title {
  padding-bottom: 56px;
}

.faq-two__accordion .accordion-box {
  position: relative;
  display: block;
}

.faq-two__accordion .accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid #e7e8e9;
  transition: all 500ms ease;
  padding-top: 22px;
  padding-left: 30px;
  padding-right: 0px;
  padding-bottom: 22px;
  margin-top: 0;
}

.faq-two__accordion .accordion-box .block::before {
  display: none;
}

.faq-two__accordion .accordion-box .block.mb30 {
  margin-bottom: 0px;
}

.faq-two__accordion .accordion-box.block:last-child {
  margin-bottom: 0px;
}

.faq-two__accordion .accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ffffff;
  border: 0px solid #f0eeee;
  transition: all 500ms ease;
}

.faq-two__accordion .accordion-box .block .acc-btn.active {
  background: #ffffff;
}

.faq-two__accordion .accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  font-family: var(--thm-font);
  transition: all 500ms ease;
}

.faq-two__accordion .accordion-box .block .acc-btn.active h3 {
  color: var(--thm-black);
}

.faq-two__accordion .accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #f3f3f4;
  border-radius: 0%;
  color: var(--thm-base);
  font-size: 15px;
  text-align: center;
  line-height: 50px;
  font-weight: 400;
  cursor: pointer;
  transform: translateY(-50%) rotate(0deg);
  transition: all 500ms ease;
  z-index: 1;
}

.faq-two__accordion .accordion-box .block .acc-btn.active .icon-outer {
  color: #ffffff;
  transform: translateY(-50%) rotate(0deg);
  background: var(--thm-base);
}

.faq-two__accordion .accordion-box .block .acc-btn .icon-outer i:before {
  position: relative;
  display: inline-block;
  font-weight: 700;
  transform: rotate(90deg);
}

.faq-two__accordion .accordion-box .block .acc-btn.active .icon-outer i:before {
  position: relative;
  font-size: 15px;
  font-family: 'icomoon' !important;
  font-weight: 700;
  margin: 0px;
  content: "\e90f";
  transform: rotate(-90deg);
}

.faq-two__accordion .accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 25px;
  padding-left: 0;
  padding-right: 100px;
  padding-bottom: 6px;
}

.faq-two__accordion .accordion-box .block .acc-content.current {
  display: block;
}

.faq-two__accordion .accordion-box .block .acc-content p {
  margin: 0;
}


/***
=====================================================
Pricing Two
=====================================================
***/
.pricing-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
}

.pricing-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-top: 20px;
  z-index: 1;
  padding-left: 20px;
}

.pricing-two__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 40px;
  right: 50px;
  background: #f5f5f5;
  content: "";
  z-index: -1;
}

.pricing-two__single-inner {
  position: relative;
  display: block;
  padding: 48px 45px 50px;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(0, 0, 0, 0.04);
  z-index: 1;
}

.pricing-two__single-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  transition: 1s;
  transform: scaleX(0.7);
  opacity: 0;
  z-index: -1;
}

.pricing-two__single:hover .pricing-two__single-bg {
  transform: scaleX(1);
  opacity: 1;
}

.pricing-two__single-bg::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  background: #ffffff;
  opacity: 0.96;
  content: "";
  z-index: -2;
}

.pricing-two__single .table-header {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9eaeb;
  padding-bottom: 27px;
  margin-bottom: 22px;
}

.pricing-two__single .table-header .icon-box {
  position: relative;
  display: block;
}

.pricing-two__single .table-header .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 70px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.pricing-two__single:hover .table-header .icon-box span:before {
  transform: scale(0.9);
}

.pricing-two__single .table-header .title-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.pricing-two__single .table-header .title-box h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
}

.pricing-two__single .table-header .title-box p {
  font-weight: 600;
}

.pricing-two__single .table-content {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.pricing-two__single .table-content ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.pricing-two__single .table-content ul li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.pricing-two__single .table-content ul li:last-child {
  margin-bottom: 0;
}

.pricing-two__single .table-content ul li p {
  position: relative;
  display: block;
  padding-left: 27px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.pricing-two__single .table-content ul li p::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 9px;
  background: var(--thm-base);
  content: "";
}

.pricing-two__single .table-footer {
  position: relative;
  display: block;
  border-top: 1px solid #e9eaeb;
  padding-top: 30px;
}

.pricing-two__single .table-footer .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

/***
=====================================================
Video One
=====================================================
***/
.video-one {
  position: relative;
  display: block;
  padding: 320px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.video-one .shape1 {
  position: absolute;
  left: 100px;
  top: 0;
  opacity: 0.08;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.video-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  content: "";
  opacity: 0.9;
  z-index: -2;
}

.video-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.video-one__left {
  position: relative;
  display: flex;
  align-items: center;
}

.video-one__icon {
  position: relative;
  display: block;
  z-index: 2;
}

.video-one__icon a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 0%;
  background: transparent;
  border: 2px solid #ffffff;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-one__icon a:hover {
  color: var(--thm-base);
  border-color: var(--thm-base);
}

.video-one__icon a::before,
.video-one__icon a::after {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 0%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.video-one__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-one__left .text-box {
  position: relative;
  display: block;
  margin-left: 30px;
  flex: 1;
}

.video-one__left .text-box p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.video-one__left .text-box p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-one__left .text-box p a:hover {
  color: var(--thm-base);
}

.video-one__left .text-box p a span:before {
  position: relative;
  display: inline-block;
  font-size: 35px;
  top: 8px;
  padding-right: 12px;
}

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

.video-one__right h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.video-one__right h2 span {
  color: var(--thm-base);
}

/***
=====================================================
Counter Two
=====================================================
***/
.counter-two {
  position: relative;
  display: block;
  margin-bottom: -195px;
  z-index: 2;
}

.counter-two .row {
  --bs-gutter-x: 0px;
}

.counter-two__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 70px 0px rgb(0, 0, 0, 0.05);
  padding: 0px 30px 30px;
  z-index: 1;
}

.counter-two__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.counter-two__single-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.8;
  content: "";
  z-index: -2;
}

.counter-two__single-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  background: #f6f6f6;
  margin: 0 auto 35px;
}

.counter-two__single-number::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: var(--thm-base);
  content: "";
}

.counter-two__single-number h3 {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.counter-two__single-icon {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.counter-two__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 65px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-two__single:hover .counter-two__single-icon span:before {
  transform: scale(0.9);
}

.counter-two__single-title {
  position: relative;
  display: block;
  border-bottom: 1px solid #e7e8e9;
  padding-bottom: 32px;
}

.counter-two__single-title h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.counter-two__single-bottom {
  position: relative;
  display: block;
  margin-top: 10px;
}

.counter-two__single-bottom h2 {
  color: var(--thm-base);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.counter-two__single-bottom h2 .k {
  position: relative;
  display: inline-block;
  top: 2px;
}

.counter-two .odometer.odometer-auto-theme,
.counter-two .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 40px;
}

.counter-two__single.style2 {
  position: relative;
  display: block;
}

.counter-two__single.style2 .counter-two__single-number {
  background: rgba(255, 255, 255, .08);
}

.counter-two__single.style2 .counter-two__single-number h3 {
  color: #ffffff;
}

.counter-two__single.style2 .counter-two__single-icon span:before {
  color: #ffffff;
}

.counter-two__single.style2 .counter-two__single-title h4 {
  color: #ffffff;
}

.counter-two__single.style2 .counter-two__single-title {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.counter-two__single.style2 .counter-two__single-bottom::before {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: -30px;
  right: 0;
  background: rgba(255, 255, 255, .08);
  content: "";
}

.counter-two__single.style2 .counter-two__single-bottom h2 {
  color: #ffffff;
}

/***
=====================================================
Blog Two
=====================================================
***/
.blog-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-two .shape1 {
  position: absolute;
  top: 0;
  left: -120px;
  opacity: 0.12;
  z-index: -1;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-two__single-content {
  position: relative;
  display: block;
  border: 1px solid #e0e0e0;
  padding: 22px 30px 23px;
  margin-bottom: 15px;
}

.blog-two__single-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-two__single-content h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-two__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-two__single-content h2 a:hover {
  color: var(--thm-base);
}

.blog-two__single-content .btn-box {
  position: relative;
  display: block;
}

.blog-two__single-content .btn-box a {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-two__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  top: 2px;
  padding-left: 4px;
}

.blog-two__single-content .btn-box a:hover {
  color: var(--thm-black);
}

.blog-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-two__single-img:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: #010101;
  opacity: 0.7;
  z-index: 1;
  width: 100%;
  height: 100%;
  -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-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.blog-two__single:hover .blog-two__single-img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.blog-two__single-img img {
  width: 100%;
  transition: all 700ms ease;
}

.blog-two__single:hover .blog-two__single-img img {
  transform: scaleY(1.1);
}

.blog-two__single-img .date-box {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: 35px;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  z-index: 5;
}

.blog-two__single-img .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  opacity: 0;
  z-index: 5;
}

.blog-two__single:hover .blog-two__single-img .icon-box {
  transform: scale(1.0);
  opacity: 1.0;
  transition: all 600ms linear;
  transition-delay: 0.4s;
}

.blog-two__single-img .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .30);
  z-index: 1;
}

.blog-two__single-img .icon-box a::before {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  background: rgba(255, 255, 255, .20);
  border-radius: 50%;
  content: "";
}

.blog-two__single-img .icon-box a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.blog-two__single-img .icon-box a:hover:after {
  transform: scale(1.0);
  opacity: 1;
}

.blog-two__single-img .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 55px;
  z-index: 2;
}

.blog-two__right {
  position: relative;
  display: block;
}

.blog-two__right .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-two__right .btn-box .date-box2 {
  position: relative;
  display: block;
}

.blog-two__right .btn-box .date-box2 span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.blog-two__right .blog-two__single {
  margin-bottom: 16px;
}

.blog-two__right .blog-two__single-content {
  padding: 12px 30px 10px;
  margin-bottom: 0px;
}


/***
=====================================================
Footer Two
=====================================================
***/
.footer-one.style2 {
  position: relative;
  display: block;
  padding-top: 120px;
}

.footer-one.style2 .footer-one__bg::before {
  background: rgba(1, 1, 1, 0.94);
}

.footer-one.style2 .shape2 {
  position: absolute;
  top: 60px;
  left: -50px;
  opacity: 0.6;
  z-index: 1;
}

.footer-one.style2 .shape3 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.12;
  z-index: 1;
}

/***
=====================================================
Features Four
=====================================================
***/
.features-four {
  position: relative;
  display: block;
  background: var(--thm-gray-bg);
  padding: 120px 0px 120px;
  z-index: 1;
}

.features-four .auto-container {
  max-width: 1530px;
  width: 100%;
}

.features-four__left {
  position: relative;
  display: block;
  max-width: 580px;
  width: 100%;
}

.features-four__left .sec-title {
  padding-bottom: 43px;
}

.features-four__left-text {
  position: relative;
  display: block;
}

.features-four__left-text p {
  margin: 0;
}


.features-four__right {
  position: relative;
  display: block;
}

.features-four__right-single {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 45px 0px 42px 35px;
  z-index: 1;
}

.features-four__right-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.features-four__right-single:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.features-four__right-single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.features-four__right-single-top .title-box {
  position: relative;
  display: block;
}

.features-four__right-single-top .title-box h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .title-box h2 {
  color: #ffffff;
}

.features-four__right-single-top .border-box {
  position: relative;
  display: block;
  width: 50px;
  height: 4px;
  background: var(--thm-base);
  margin-top: 16px;
  margin-bottom: 18px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .border-box {
  background: rgba(255, 255, 255, .3);
}

.features-four__right-single-top .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .title-box h2 a {
  color: #ffffff;
}

.features-four__right-single-top .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--thm-primary);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .icon-box {
  background: #ffffff;
}

.features-four__right-single-top .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-top .icon-box span:before {
  color: var(--thm-primary);
}

.features-four__right-single-bottom {
  position: relative;
  display: block;
  padding-right: 30px;
}

.features-four__right-single-bottom p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-bottom p {
  color: #ffffff;
}

.features-four__right-single-bottom .btn-box {
  position: relative;
  display: block;
  margin-top: 6px;
}

.features-four__right-single-bottom .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-four__right-single:hover .features-four__right-single-bottom .btn-box a {
  color: #ffffff;
}
.gallery-two-one .owl-nav {
  display: none;
}

/***
=====================================================
About Three
=====================================================
***/
.about-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.about-three__bg {
  position: absolute;
  top: 120px;
  left: 0;
  bottom: 120px;
  width: 680px;
  z-index: -1;
  border-top-right-radius: 250px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.about-three::before {
  position: absolute;
  top: 120px;
  left: 0;
  bottom: 120px;
  width: 688px;
  border-top-right-radius: 250px;
  background: var(--thm-primary);
  content: "";
  z-index: -2;
}

.about-three__img {
  position: relative;
  display: block;
  margin-right: 20px;
}

.about-three__img-inner {
  position: absolute;
  top: 100px;
  right: 0;
  max-width: 375px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.about-three__img-inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.about-three__img:hover .about-three__img-inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-three__img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.about-three__img:hover .about-three__img-inner img {
  transform: scale(1);
}

.about-three__content {
  position: relative;
  display: block;
  margin-left: 35px;
}

.about-three__content .sec-title {
  padding-bottom: 25px;
}

.about-three__content-text {
  position: relative;
  display: block;
}

.about-three__content-text p {
  margin: 0;
}

.about-three__content-middle {
  position: relative;
  display: block;
  margin-top: 37px;
}

.about-three__content-middle-left {
  position: relative;
  display: block;
  max-width: 265px;
  width: 100%;
  margin-top: 24px;
}

.about-three__content-middle-left .top-content {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.about-three__content-middle-left .top-content .icon-box {
  position: relative;
  display: block;
}

.about-three__content-middle-left .top-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 60px;
}

.about-three__content-middle-left .top-content .text-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-three__content-middle-left .top-content .text-box h2 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
}

.about-three__content-middle-left .top-content .text-box h2 span {
  color: var(--thm-primary);
  font-size: 44px;
  letter-spacing: -0.07em;
}

.about-three__content-middle-left .top-content .text-box h2 .plus {
  position: relative;
  display: inline-block;
  top: 4px;
  right: 4px;
}

.about-three .odometer.odometer-auto-theme,
.about-three .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 35px;
}

.about-three__content-middle-left-list {
  position: relative;
  display: block;
  border-top: 1px solid #ebebeb;
  padding-top: 32px;
}

.about-three__content-middle-left-list li {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 17px;
}

.about-three__content-middle-left-list li:last-child {
  margin-bottom: 0;
}

.about-three__content-middle-left-list li .round-box {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: rgba(var(--thm-base-rgb), 0.35);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.about-three__content-middle-left-list li:hover .round-box {
  background: rgba(var(--thm-primary-rgb), 0.35);
}

.about-three__content-middle-left-list li .round-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.2s;
}

.about-three__content-middle-left-list li:hover .round-box::before {
  background: var(--thm-primary);
}

.about-three__content-middle-left-list li .text-box {
  position: relative;
  display: block;
}

.about-three__content-middle-left-list li .text-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.2s;
}

.about-three__content-middle-left-list li:hover .text-box p {
  color: var(--thm-black);
}


.about-three__content-middle-right {
  position: relative;
  display: block;
}

.about-three__content-middle-right-list {
  position: relative;
  display: block;
}

.about-three__content-middle-right-list li {
  position: relative;
  display: block;
  margin-bottom: 73px;
}

.about-three__content-middle-right-list li::before {
  position: absolute;
  left: 40px;
  bottom: -63px;
  width: 3px;
  height: 50px;
  background: var(--thm-base);
  content: "";
}

.about-three__content-middle-right-list li:last-child:before {
  display: none;
}

.about-three__content-middle-right-list li:last-child {
  margin-bottom: 0;
}

.about-three__content-middle-right-list li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__content-middle-right-list li .inner .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(135, 140, 143, 0.15);
  border-radius: 50%;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
}

.about-three__content-middle-right-list li .inner .icon-box::before {
  position: absolute;
  top: 15px;
  left: -3px;
  bottom: 0;
  width: 3px;
  background: var(--thm-primary);
  content: "";
}

.about-three__content-middle-right-list li .inner .icon-box::after {
  position: absolute;
  left: -3px;
  bottom: -3px;
  right: 15px;
  height: 3px;
  background: var(--thm-primary);
  content: "";
}

.about-three__content-middle-right-list li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 60px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.about-three__content-middle-right-list li:hover .inner .icon-box span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.about-three__content-middle-right-list li .inner .content-box {
  position: relative;
  display: block;
  margin-left: 40px;
}

.about-three__content-middle-right-list li .inner .content-box h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.about-three__content-middle-right-list li .inner .content-box p {
  margin: 0;
}


.about-three__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 23px;
}

.about-three__content-bottom .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 45px;
}

.about-three__content-bottom .signature-box {
  position: relative;
  display: block;
  padding-left: 45px;
}

.about-three__content-bottom .signature-box::before {
  position: absolute;
  top: 15px;
  left: 0;
  bottom: 15px;
  content: "";
  width: 1px;
  background: #cccccc;
}

.about-three__content-bottom .signature-box h2 {
  font-size: 24px;
  line-height: 85px;
  text-transform: capitalize;
  font-family: var(--thm-reey-font);
}


/***
=====================================================
Services Three
=====================================================
***/
.services-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 82px;
  z-index: 1;
}

.services-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-three__single-img {
  position: relative;
  display: block;
  z-index: 1;
}

.services-three__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.services-three__single-img .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.services-three__single:hover .services-three__single-img .inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.services-three__single-img .inner .number-box {
  position: absolute;
  right: 30px;
  bottom: 26px;
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  font-weight: 400;
  z-index: 5;
}

.services-three__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.services-three__single:hover .services-three__single-img .inner img {
  transform: scale(1);
}

.services-three__single-content {
  position: relative;
  display: block;
  padding: 0px 25px 0px;
  margin-top: -55px;
  z-index: 5;
}

.services-three__single-content .inner {
  position: relative;
  display: block;
  padding-left: 160px;
}

.services-three__single-content .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 125px;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(135, 140, 143, 0.15);
}

.services-three__single-content .inner .icon-box::before {
  position: absolute;
  left: -6px;
  bottom: -10px;
  right: -6px;
  background: var(--thm-base);
  height: 4px;
  content: "";
}

.services-three__single-content .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 65px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-three__single:hover .services-three__single-content .inner .icon-box span::before {
  transform: scale(0.9);
}

.services-three__single-content .inner .icon-box .left-border {
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 4px;
  height: 60px;
  background: var(--thm-base);
  content: "";
}

.services-three__single-content .inner .icon-box .left-border::before {
  position: absolute;
  top: -14px;
  left: -3px;
  width: 10px;
  height: 10px;
  background: var(--thm-primary);
  content: "";
}

.services-three__single-content .inner .icon-box .right-border {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 4px;
  height: 60px;
  background: var(--thm-base);
  content: "";
}

.services-three__single-content .inner .icon-box .right-border::before {
  position: absolute;
  top: -14px;
  left: -3px;
  width: 10px;
  height: 10px;
  background: var(--thm-primary);
  content: "";
}

.services-three__single-content .inner .content-box {
  position: relative;
  display: block;
  padding-top: 75px;
}

.services-three__single-content .inner .content-box p {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.services-three__single-content .inner .content-box p::before {
  position: absolute;
  top: 12px;
  right: -58px;
  width: 45px;
  height: 1px;
  background: #dbdbdb;
  content: "";
}

.services-three__single-content .inner .content-box h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.services-three__single-content .inner .content-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single-content .inner .content-box h2 a:hover {
  color: var(--thm-base);
}

.services-three__single-content .inner .content-box .btn-box {
  position: relative;
  display: block;
  margin-top: 8px;
}

.services-three__single-content .inner .content-box .btn-box a {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single-content .inner .content-box .btn-box a:hover {
  color: var(--thm-base);
}


/***
=====================================================
Video Two
=====================================================
***/
.video-two {
  position: relative;
  display: block;
  padding: 107px 0px 272px;
  z-index: 1;
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.video-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000001;
  opacity: 0.75;
  content: "";
  z-index: -2;
}

.video-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-two__content {
  position: relative;
  display: block;
}

.video-two__content h2 {
  color: #ffffff;
  font-size: 56px;
  line-height: 1.1em;
  font-weight: 600;
  margin-bottom: 25px;
}

.video-two__content p {
  color: #ffffff;
}

.video-two__content .border-box {
  position: relative;
  display: block;
  width: 330px;
  height: 2px;
  background: var(--thm-primary);
  margin-bottom: 31px;
  margin-top: 32px;
}

.video-two__content .border-box::before {
  position: absolute;
  top: -4px;
  right: 0px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
}

.video-two__content .contact-box {
  position: relative;
  display: flex;
  align-items: center;
}

.video-two__content .contact-box .icon-box {
  position: relative;
  display: block;
}

.video-two__content .contact-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
}

.video-two__content .contact-box .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.video-two__content .contact-box .content-box p {
  color: #ffffff;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}

.video-two__content .contact-box .content-box a {
  color: #ffffff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-two__content .contact-box .content-box a:hover {
  color: var(--thm-base);
}


.video-two__video {
  position: relative;
  display: block;
}

.video-two__video .shape3 {
  position: absolute;
  left: -80px;
  bottom: 55px;
}

.video-two__video-icon {
  position: relative;
  display: block;
  z-index: 1;
}

.video-two__video-icon .shape1 {
  position: absolute;
  top: 30px;
  left: 33px;
  z-index: -1;
}

.video-two__video-icon .shape2 {
  position: absolute;
  top: 30px;
  left: 43px;
  opacity: 0.35;
  z-index: -1;
}

.video-two__video-icon a {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  line-height: 200px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .20);
  text-align: center;
  color: var(--thm-primary);
  font-size: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-two__video-icon a:hover {
  color: var(--thm-base);
  border-color: #ffffff;
}

.video-two__video-icon a::before,
.video-two__video-icon a::after {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.video-two__video-icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-two__video .title-box {
  position: relative;
  display: block;
  margin-top: 76px;
  margin-left: -200px;
}

.video-two__video .title-box h2 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}


/***
=====================================================
Counter Three
=====================================================
***/
.counter-three {
  position: relative;
  display: block;
  z-index: 5;
  margin-top: -150px;
  margin-bottom: -103px;
}

.counter-three .auto-container {
  max-width: 1530px;
  width: 100%;
}

.counter-three__inner {
  position: relative;
  display: block;
  background: var(--thm-base);
  z-index: 1;
}

.counter-three__inner::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0px;
  background: var(--thm-base);
  content: "";
  z-index: -1;
}

.counter-three__inner::before {
  position: absolute;
  top: -10px;
  left: 105px;
  bottom: 0;
  right: 105px;
  background: #ffffff;
  content: "";
  z-index: -2;
}

.counter-three__inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 57px 0px 66px;
  z-index: 1;
}

.counter-three__inner-box .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.03;
  z-index: -1;
}

.counter-three__inner-box .shape2 {
  position: absolute;
  top: -20px;
  left: -170px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  z-index: -1;
}

.counter-three__inner-box .shape3 {
  position: absolute;
  top: 15px;
  left: 0px;
  right: 0px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  margin: 0 auto;
  z-index: -1;
}

.counter-three__inner ul {
  position: relative;
  display: block;
}

.counter-three__inner ul li {
  position: relative;
  display: block;
  float: left;
  width: 25%;
  text-align: center;
}

.counter-three__inner ul li::before {
  position: absolute;
  top: -60px;
  bottom: -70px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, .2);
  content: "";
}

.counter-three__inner ul li:last-child:before {
  display: none;
}

.counter-three__inner ul li h2 {
  color: #ffffff;
  font-size: 80px;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.counter-three__inner ul li h2 .plus {
  position: relative;
  display: inline-block;
  right: 12px;
  top: 4px;
}

.counter-three__inner ul li h2 .k {
  position: relative;
  display: inline-block;
  top: 6px;
  right: 5px;
}

.counter-three__inner ul li h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-top: 7px;
}

.counter-three .odometer.odometer-auto-theme,
.counter-three .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 0.9em;
}

/***
=====================================================
Faq Three
=====================================================
***/
.faq-three {
  position: relative;
  display: block;
  padding: 103px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.faq-three .shape1 {
  position: absolute;
  top: -460px;
  left: -10px;
  z-index: -1;
}

.faq-three .shape2 {
  position: absolute;
  right: 0;
  bottom: 50px;
  opacity: 0.5;
  z-index: -1;
}

.faq-two__accordion.style3 {
  position: relative;
  display: block;
  margin-left: 0;
  padding-top: 131px;
}

.faq-two__accordion.style3 .sec-title.style2 .sec-title__title span {
  color: var(--thm-primary);
}

.faq-two__accordion.style3 .sec-title {
  padding-bottom: 49px;
}

.faq-two__accordion.style3 .accordion-box .block .acc-btn h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.faq-two__accordion.style3 .accordion-box .block .acc-content p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.faq-two__accordion.style3 .accordion-box .block {
  margin-bottom: 25px;
}

.faq-two__accordion.style3 .accordion-box .block.mb0 {
  margin-bottom: 0;
}

.faq-three__img {
  position: relative;
  display: block;
  max-width: 630px;
  width: 100%;
  margin-left: 110px;
}

.faq-three__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.faq-three__img .inner::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(5deg);
  z-index: 1;
}

.faq-three__img:hover .inner::before {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.faq-three__img .inner img {
  width: 100%;
  transition: all 600ms linear;
  transition-delay: 0.2s;
}

.faq-three__img:hover .inner img {
  transform: scale(1.1) rotate(0deg);
}

.faq-three__img .overlay-content {
  position: absolute;
  left: -50px;
  bottom: 320px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  padding: 40px 30px 40px 20px;
  z-index: 5;
}

.faq-three__img .overlay-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  content: "";
  z-index: -1;
}

.faq-three__img .overlay-content::after {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: 0;
  left: 0;
  background: var(--thm-base);
  content: "";
  z-index: -2;
  width: 58px;
  height: 100px;
}

.faq-three__img .overlay-content .icon-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.faq-three__img .overlay-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .55);
  font-size: 65px;
  transform: rotate(90deg);
}

.faq-three__img .overlay-content .content-box {
  position: relative;
  display: block;
}

.faq-three__img .overlay-content .content-box p {
  color: #ffffff;
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  margin-left: 8px;
}

.faq-three__img .overlay-content .content-box h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}


/***
=====================================================
Features Five
=====================================================
***/
.features-five {
  position: relative;
  display: block;
  padding: 0px 0px 90px;
}

.features-five__inner {
  position: relative;
  display: block;
}

.features-five__box {
  position: relative;
  display: block;
  margin-left: -15px;
  margin-right: -15px;
}

.features-five__box li {
  position: relative;
  display: block;
  width: 20%;
  float: left;
  text-align: center;
  padding: 0px 15px 0px;
  margin-bottom: 30px;
}

.features-five__box li:last-child {
  margin-right: 0;
}

.features-five__box li .img-box {
  position: relative;
  display: block;
  border: 1px solid #e5e6e6;
  padding: 30px 0px 30px;
  transition: all 0.4s linear;
  z-index: 1;
}

.features-five__box li:hover .img-box {
  border-color: #f8f8f8;
}

.features-five__box li .img-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: #f8f8f8;
  opacity: 0;
  content: "";
  z-index: -1;
}

.features-five__box li:hover .img-box:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.features-five__box li .img-box .inner {
  position: relative;
  display: block;
  z-index: 1;
}

.features-five__box li .img-box .inner .shape1 {
  position: absolute;
  top: -12px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: #f8f8f8;
  z-index: -1;
}

.features-five__box li .img-box img {
  width: auto;
}


/***
=====================================================
Team Three
=====================================================
***/
.team-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
  z-index: 1;
}

.team-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-three__single-img {
  position: relative;
  display: block;
  max-width: 280px;
  width: 100%;
}

.team-three__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.team-three__single-img-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-three__single:hover .team-three__single-img-inner:before {
  opacity: 1;
}

.team-three__single-img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.team-three__single:hover .team-three__single-img-inner img {
  transform: scale(1);
}

.team-three__single-img .social-links {
  position: absolute;
  top: 8px;
  left: 5px;
  z-index: 5;
}

.team-three__single-img .social-links li {
  position: relative;
  display: inline-block;
}

.team-three__single-img .social-links li.share {
  position: relative;
}

.team-three__single-img .social-links>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #ffffff;
  z-index: 1;
}

.team-three__single-img .social-links>li>a::after {
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--thm-base);
  content: "";
  z-index: 2;
}

.team-three__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-three__single-img .social-links>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-three__single-img .social-links>li>a>span {
  position: relative;
  display: block;
}

.team-three__single-img .social-links>li>a>span::before {
  position: relative;
  display: inline-block;
  top: -1px;
  color: var(--thm-black);
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-three__single-img .social-links>li>a:hover span::before {
  color: #ffffff;
}

.team-three__single-img .social-links .share .social-links-inner {
  position: absolute;
  top: 55px;
  left: 0px;
  right: 0;
  line-height: 0;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  transform-origin: top center;
}

.team-three__single-img .social-links .share:hover .social-links-inner {
  transform: scaleY(1.0);
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-three__single-img .social-links .share .social-links-inner li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.team-three__single-img .social-links .share .social-links-inner li:last-child {
  margin-bottom: 0px;
}

.team-three__single-img .social-links .share .social-links-inner li a {
  position: relative;
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 0%;
  z-index: 1;
}

.team-three__single-img .social-links .share .social-links-inner li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-three__single-img .social-links .share .social-links-inner li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-three__single-img .social-links .share .social-links-inner li a i {
  position: relative;
  display: block;
}

.team-three__single-img .social-links .share .social-links-inner li a i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-three__single-img .social-links .share .social-links-inner li a:hover i::before {
  color: #ffffff;
}

.team-three__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(184, 188, 190, 0.24);
  border-radius: 10px;
  padding: 16px 0px 25px;
  margin-left: 70px;
  margin-top: -55px;
  z-index: 1;
}

.team-three__single-content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 5px;
  background: #efeff0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  content: "";
  z-index: -1;
}

.team-three__single-content::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 5px;
  background: var(--thm-primary);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 1s;
  transform: scaleX(0.7);
  opacity: 0;
  content: "";
  z-index: -1;
}

.team-three__single:hover .team-three__single-content::after {
  transform: scaleX(1);
  opacity: 1;
}

.team-three__single-content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.team-three__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-three__single-content h2 a:hover {
  color: var(--thm-base);
}

.team-three__single-content p {
  color: var(--thm-primary);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}


/***
=====================================================
Work Two
=====================================================
***/
.work-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
  z-index: 1;
}

.work-two__content {
  position: relative;
  display: block;
  max-width: 700px;
  width: 100%;
}

.work-two__content-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.work-two__content-single.mb0 {
  margin-bottom: 0;
}

.work-two__content-single.style2 {
  position: relative;
}

.work-two__content-single.style2 .number-box .border-box {
  background: var(--thm-base);
}

.work-two__content-single.style2 .number-box {
  margin-left: 0px;
  margin-right: 70px;
}

.work-two__content-single .content-box {
  position: relative;
  display: block;
  max-width: 520px;
  width: 100%;
  border: 2px solid #e6e7e7;
  padding: 35px 45px 38px;
}

.work-two__content-single .content-box h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 19px;
}

.work-two__content-single .content-box p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.work-two__content-single .number-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.work-two__content-single .number-box .border-box {
  position: relative;
  display: block;
  width: 50px;
  height: 10px;
  background: var(--thm-primary);
  margin-right: 39px;
}

.work-two__content-single .number-box h2 {
  position: relative;
  font-size: 60px;
  line-height: 1em;
  font-weight: 600;
}

.work-two__content-single .number-box h2 span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  position: absolute;
  top: -10px;
}

.work-two__img {
  position: relative;
  display: block;
  margin-left: 42px;
}

.work-two__img .inner {
  position: relative;
  display: block;
}

.work-two__img .inner img {
  max-width: none;
  float: left;
}

.work-two__video {
  position: absolute;
  left: 350px;
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.work-two__video a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: #ffffff;
  text-align: center;
  color: var(--thm-primary);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-two__video a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.work-two__video a::before,
.work-two__video a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.work-two__video a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.work-two__content-single:nth-child(2) .content-box {
  order: 2;
}

.work-two__content-single:nth-child(2) .number-box {
  margin-left: 0px;
  margin-right: 70px;
}

/***
=============================================
Brand One
=============================================
***/
.brand-three {
  position: relative;
  display: block;
  margin-bottom: -185px;
  z-index: 2;
}

.brand-three .auto-container {
  max-width: 1740px;
  width: 100%;
}

.brand-three__inner {
  position: relative;
  display: block;
  padding: 40px 75px 40px;
  background: var(--thm-base);
  border: 1px solid var(--thm-gray);
}

.brand-three .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;
  height: 145px;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

.brand-three .swiper-slide img {
  transition: .5s ease;
  transform: scale(1.02);
  opacity: 0.8;
  width: auto;
}

.brand-three .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1);
}


/***
=====================================================
Testimonial Two
=====================================================
***/
.testimonial-two {
  position: relative;
  display: block;
  padding: 305px 0px 120px;
  z-index: 1;
}

.testimonial-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.8;
  content: "";
  z-index: -2;
}

.testimonial-two .sec-title__title {
  color: #ffffff;
}

.testimonial-two__inner {
  position: relative;
  display: block;
  padding-left: 150px;
  width: 1595px;
}

.testimonial-two__single {
  position: relative;
  display: block;
  padding-top: 60px;
  z-index: 1;
}

.testimonial-two__single .quote-icon {
  position: absolute;
  left: 0;
  bottom: 120px;
  right: 0;
  text-align: center;
}

.testimonial-two__single .quote-icon span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .08);
  font-size: 100px;
}

.testimonial-two__single .img-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__single .img-box .inner {
  position: relative;
  display: block;
  width: 105px;
  height: 105px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two__single .img-box .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.2);
  opacity: 0;
  z-index: 1;
  content: "";
}

.testimonial-two__single:hover .img-box .inner::before {
  opacity: 1;
}


.testimonial-two__single .img-box .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.testimonial-two__single:hover .img-box .inner img {
  transform: scale(1);
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 104px 40px 42px;
  z-index: 1;
  transition: 1.5s;
}

.testimonial-two__single:hover .testimonial-two__single-inner {
  border-color: rgba(255, 255, 255, .06);
}

.testimonial-two__single-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, .06);
  transition: 1s;
  transform: scaleX(0.8);
  opacity: 0;
  content: "";
  z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__single-inner::before {
  transform: scaleX(1);
  opacity: 1;
}

.testimonial-two__single-inner .author-box {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.testimonial-two__single-inner .author-box h2 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-two__single-inner .author-box p {
  color: var(--thm-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.testimonial-two__single-inner .text-box {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.testimonial-two__single-inner .text-box p {
  margin: 0;
  color: #ddd;
}

.testimonial-two__single-inner .rating-box {
  position: relative;
  display: block;
}

.testimonial-two__single-inner .rating-box ul li span {
  color: #ffffff;
}

.testimonial-two .owl-theme .owl-nav {
  position: absolute;
  left: -155px;
  bottom: 95px;
  z-index: 5;
  display: block;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev,
.testimonial-two .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 0%;
  background-color: rgba(255, 255, 255, .08);
  color: #ffffff;
  font-size: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev {
  margin-bottom: 10px;
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev span::before {
  position: relative;
  display: inline-block;
  transform: rotate(0deg);
}

.testimonial-two .owl-carousel .owl-nav button.owl-next span::before {
  position: relative;
  display: inline-block;
  transform: rotate(0deg);
}

.testimonial-two .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-two .owl-carousel .owl-nav button.owl-next:hover {
  background: #ffffff;
  color: var(--thm-base);
}


/***
=====================================================
Product One
=====================================================
***/
.product-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 91px;
  z-index: 1;
}

.product-one .shape1 {
  position: absolute;
  bottom: 210px;
  left: 0;
  opacity: 0.2;
  z-index: -1;
}

.product-one .shape2 {
  position: absolute;
  bottom: 15px;
  right: 0;
  opacity: 0.2;
  z-index: -1;
}

.product-one__single {
  position: relative;
  display: block;
  margin-bottom: 34px;
  padding: 0px 35px 0px;
  z-index: 1;
}

.product-one__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 75px;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  content: "";
  z-index: -1;
}

.product-one__single-content {
  position: relative;
  display: block;
}

.product-one__single-content-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 14px 25px 13px;
  z-index: 1;
  margin-bottom: 19px;
}

.product-one__single-content-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.product-one__single:hover .product-one__single-content-btn::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.product-one__single-content-btn .title {
  position: relative;
  display: block;
}

.product-one__single-content-btn .title h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
}

.product-one__single-content-btn .title h6 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-one__single:hover .product-one__single-content-btn .title h6 a {
  color: #ffffff;
}

.product-one__single-content-btn .icon {
  position: relative;
  display: block;
}

.product-one__single-content-btn .icon ul {
  position: relative;
  display: block;
  line-height: 0;
}

.product-one__single-content-btn .icon ul li {
  position: relative;
  display: inline-block;
  margin-right: 7px;
}

.product-one__single-content-btn .icon ul li:last-child {
  margin-right: 0;
}

.product-one__single-content-btn .icon ul li a {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-one__single:hover .product-one__single-content-btn .icon ul li a {
  color: #ffffff;
}

.product-one__single-content-btn .icon ul li a span:before {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.product-one__single-content-btn .icon ul li a span.eye:before {
  font-size: 18px;
}

.product-one__single-content-inner {
  position: relative;
  display: block;
}

.product-one__single-content-inner h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}

.product-one__single-content-inner h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-one__single-content-inner h2 a:hover {
  color: var(--thm-base);
}

.product-one__single-content-inner p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.product-one__single-content-inner .rating-box {
  position: relative;
  display: block;
  margin-top: 11px;
  margin-bottom: 22px;
}

.product-one__single-img {
  position: relative;
  display: block;
  text-align: center;
}

.product-one__single-img::before {
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 4px;
  background: var(--thm-primary);
  content: "";
  z-index: 1;
}

.product-one__single-img::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 4px;
  background: var(--thm-base);
  content: "";
  transition: 0.7s;
  transform: scaleX(0.7);
  opacity: 0;
  z-index: 1;
}

.product-one__single:hover .product-one__single-img::after {
  transform: scaleX(1);
  opacity: 1;
}

.product-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.product-one__single-img .inner::before {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.product-one__single:hover .product-one__single-img .inner::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.product-one__single-img .inner img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.product-one__single:hover .product-one__single-img .inner img {
  transform: scale(1.1) rotate(1deg);
}


/***
=====================================================
Blog Three
=====================================================
***/
.blog-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
  z-index: 1;
}

.blog-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-three__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-three__single-img:before {
  background: #000000;
  position: absolute;
  height: 0;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  content: "";
  z-index: 1;
}

.blog-three__single:hover .blog-three__single-img:before {
  height: 100%;
  opacity: 0.3;
}

.blog-three__single-img:after {
  position: absolute;
  content: "";
  background: #000000;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -moz-transition: all 600ms ease-out 0s;
  -webkit-transition: all 600ms ease-out 0s;
  -ms-transition: all 600ms ease-out 0s;
  -o-transition: all 600ms ease-out 0s;
  transition: all 600ms ease-out 0s;
}

.blog-three__single:hover .blog-three__single-img:after {
  height: 0;
  opacity: 0.2;
}

.blog-three__single-img .date-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: 15px;
  bottom: 15px;
  width: 130px;
  height: 40px;
  background: #ffffff;
  color: var(--thm-primary);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  z-index: 5;
}

.blog-three__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-three__single:hover .blog-three__single-img img {
  transform: scale(1);
}

.blog-three__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 41px 30px 37px;
  padding-right: 20px;
}

.blog-three__single-content p {
  color: var(--thm-base);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 7px;
}

.blog-three__single-content p a {
  color: var(--thm-base);
}

.blog-three__single-content h2 {
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
}

.blog-three__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-three__single-content h2 a:hover {
  color: var(--thm-base);
}

.blog-three__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 11px;
}

.blog-three__single-content .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-three__single-content .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  top: 0px;
  padding-left: 1px;
}

.blog-three__single-content .btn-box a:hover {
  color: var(--thm-base);
}

/***
=====================================================
Features One About
=====================================================
***/
.features-one--about {
  position: relative;
  display: block;
  padding: 120px 0px 30px;
  margin-bottom: 0;
}

/***
=====================================================
Video Two About
=====================================================
***/
.video-two--about {
  position: relative;
  display: block;
}

.video-two--about .video-two__content .border-box {
  background: var(--thm-base);
}

.video-two--about .video-two__video-icon a {
  color: var(--thm-base);
}

.video-two--about .video-two__bg::before {
  background: #1c1c1c;
  opacity: 0.88;
}

/***
=====================================================
Features Five About
=====================================================
***/
.features-five--about {
  position: relative;
  display: block;
}

.features-five--about .auto-container {
  max-width: 1530px;
  width: 100%;
}

.features-five__outer {
  position: relative;
  display: block;
  background: #ffffff;
  padding-top: 70px;
  margin-top: -160px;
  z-index: 2;
}

/***
=====================================================
Work Two About
=====================================================
***/
.work-two--about {
  position: relative;
  display: block;
  padding: 0px 0px 30px;
}

.work-two--about .work-two__content-single .number-box .border-box {
  background: var(--thm-base);
}

.work-two--about .work-two__video a {
  color: var(--thm-base);
}

.work-two--about .work-two__video a:hover {
  color: #ffffff;
}

/***
=====================================================
Counter One About
=====================================================
***/
.counter-one--about {
  position: relative;
  display: block;
  padding-bottom: 150px;
}

.counter-one--about .counter-one__inner ul li::before {
  top: -30px;
  bottom: -30px;
}


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

.services-three--services .services-three__single-content .inner .icon-box .left-border::before {
  background: #f7b751;
}

.services-three--services .services-three__single-content .inner .icon-box .right-border::before {
  background: #f7b751;
}

/***
=====================================================
Team One Team
=====================================================
***/
.team-one--team {
  position: relative;
  display: block;
}

.team-one--team.team-one::before {
  display: none;
}


/***
=============================================
Services Details
=============================================
***/
.services-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

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

.services-details__content-img1 {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.services-details__content-img1 img {
  width: 100%;
}

.services-details__content .text-box1 {
  position: relative;
  display: block;
}

.services-details__content .text-box1 h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 22px;
  font-family: var(--thm-font);
}

.services-details__content .text-box1 .text1 {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.services-details__content .text-box1 .text2 {
  position: relative;
  display: block;
}

.services-details__content .text-box1 ul {
  position: relative;
  display: block;
  margin-top: 47px;
}

.services-details__content .text-box1 ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.services-details__content .text-box1 ul li:last-child {
  margin-bottom: 0px;
}

.services-details__content .text-box1 ul li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
}

.services-details__content .text-box1 ul li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 17px;
}

.services-details__content .text-box1 ul li .text {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.services-details__content .text-box1 ul li .text p {
  margin: 0;
}

.services-details__content .text-box2 {
  position: relative;
  display: block;
  margin-top: 32px;
}

.services-details__content .text-box2 p {
  margin: 0;
}

.services-details__content .text-box2 ul {
  position: relative;
  display: block;
  margin-top: 28px;
}

.services-details__content .text-box2 ul li {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.services-details__content .text-box2 ul li:last-child {
  margin-bottom: 0;
}

.services-details__content .text-box2 ul li p {
  position: relative;
  margin: 0;
  padding-left: 25px;
}

.services-details__content .text-box2 ul li p:before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #bfc2c3;
  border-radius: 50%;
  content: "";
}

.services-details__content-img2 {
  position: relative;
  display: block;
  margin-top: 57px;
}

.services-details__content-img2 img {
  width: 100%;
}

.services-details__content .text-box3 {
  position: relative;
  display: block;
  margin-top: 32px;
}

.services-details__content .text-box3 .text1 {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.services-details__content .text-box3 .text2 {
  position: relative;
  display: block;
}

.services-details__content .text-box4 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 37px;
}

.services-details__content .text-box4 .img-box {
  position: relative;
  display: block;
}

.services-details__content .text-box4 .img-box img {
  width: auto;
}

.services-details__content .text-box4 .content-box {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -11px;
  flex: 1;
}

.services-details__content .text-box4 .content-box p {
  margin: 0;
  margin-bottom: 32px;
}

.services-details__content .text-box4 ul {
  position: relative;
  display: block;
}

.services-details__content .text-box4 ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.services-details__content .text-box4 ul li:last-child {
  margin-bottom: 0;
}

.services-details__content .text-box4 ul li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f2f2f2;
}

.services-details__content .text-box4 ul li .icon span:before {
  position: relative;
  display: inline-block;
  color: #8a8d97;
  font-size: 17px;
}

.services-details__content .text-box4 ul li .text {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.services-details__content .text-box4 ul li .text p {
  margin: 0;
}

.services-details__content .text-box5 {
  position: relative;
  display: block;
  margin-top: 42px;
}

.services-details__content .text-box5 p {
  margin: 0;
}


/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

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

.wp-block-group__inner-container h2,
.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 27px;
  line-height: 37px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
  font-family: var(--thm-font);
}

.sidebar__title h3 {
  font-size: 27px;
  line-height: 37px;
  font-weight: 600;
}

.wp-block-group__inner-container h2:before,
.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 9px;
  height: 2px;
  width: 30px;
  background: var(--thm-base);
  content: "";
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 50px 30px 50px;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: var(--thm-gray);
  font-size: 15px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 0px solid #dcdfe2;
}

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

.sidebar__search-form ::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

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

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

.sidebar__search-form ::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--thm-black);
  color: #ffffff;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 42px 30px 50px;
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li+li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 17px 20px 18px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--thm-base);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
  transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
  color: #ffffff;
}

.sidebar__category-list li.active a {
  background-color: var(--thm-base);
  color: #ffffff;
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--thm-black);
  font-size: 15px;
  font-weight: 600;
  background-color: #eae5e5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}


.sidebar__support {
  position: relative;
  display: block;
  text-align: center;
  padding: 77px 40px 90px;
  z-index: 1;
}

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

.sidebar__support-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #020202;
  opacity: 0.8;
  content: "";
  z-index: -2;
}

.sidebar__suppot-title {
  color: #ffffff;
  font-size: 52px;
  line-height: 60px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.sidebar__suppot-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  margin-top: 25px;
  margin-bottom: 38px;
}

.sidebar__support-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__support-btn-box .thm-btn {
  border-radius: 32px;
}


.sidebar__single-button-box {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 50px 30px 50px;
}

.sidebar__single-button-box .btn-one {
  position: relative;
  display: block;
}

.sidebar__single-button-box .btn-one a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  background: #ffffff;
  padding: 18px 25px 19px;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__single-button-box .btn-one a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.sidebar__single-button-box .btn-one a span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  display: flex;
  align-items: center;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__single-button-box .btn-one a:hover span::before {
  color: #ffffff;
}

.sidebar__single-button-box .btn-one.btn-one--two {
  position: relative;
  display: block;
  margin-top: 20px;
}


.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: #f5f5f5;
}

.sidebar__post-box {
  position: relative;
  display: block;
}

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single+.sidebar__post-single {
  margin-top: 27px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--thm-black);
  overflow: hidden;
}

.sidebar-post__img::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 100%;
  height: 0%;
  background-color: rgba(var(--thm-black-rgb), .80);
  border-radius: 0%;
  -webkit-transform: translateY(90%, 90%);
  transform: translateY(90%, 90%);
  opacity: 0.70;
  z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
  opacity: 1.0;
}

.sidebar-post__img img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  position: relative;
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.sidebar__post-content-box h3 a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single .sidebar__post-content-box h3 a:hover {
  color: var(--thm-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 41px 30px 40px;
  overflow: hidden;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 16px;
  font-weight: 500;
  background: #ffffff;
  padding: 6px 24px;
  border-radius: 3px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

/***
=====================================================
Team Details
=====================================================
***/
.team-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.team-details__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 550px;
  width: 100%;
  z-index: 1;
}

.team-details__img::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.team-details__img:hover::before {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.team-details__img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.team-details__img:hover img {
  transform: scale(1);
}

.team-details__content {
  position: relative;
  display: block;
}

.team-details__content-title {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.team-details__content-title h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  margin-bottom: 5px;
}

.team-details__content-title p {
  font-weight: 500;
  margin: 0;
}

.team-details__content-social-links {
  position: relative;
  display: block;
}

.team-details__content-social-links ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-details__content-social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.team-details__content-social-links ul li:last-child {
  margin-right: 0;
}

.team-details__content-social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f3f3f4;
  border-radius: 50%;
  z-index: 1;
}

.team-details__content-social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-details__content-social-links ul li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-details__content-social-links ul li a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  line-height: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__content-social-links ul li a:hover span:before {
  color: #ffffff;
}

.team-details__content-bottom {
  position: relative;
  display: block;
  margin-top: 22px;
}

.team-details__content-bottom h3 {
  color: var(--thm-base);
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 33px;
}

.team-details__content-bottom p {
  margin: 0;
}

.team-details__content-bottom-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 34px;
}

.team-details__content-bottom-list li {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.team-details__content-bottom-list li:last-child {
  margin-bottom: 0;
}

.team-details__content-bottom-list li p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.team-details__content-bottom-list li p span {
  color: var(--thm-gray);
}

.team-details__content-bottom-list li p a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__content-bottom-list li p a:hover {
  color: var(--thm-base);
}

.team-details__experience {
  position: relative;
  display: block;
  border-top: 1px solid #dddddd;
  margin-top: 70px;
  padding-top: 60px;
}

.team-details__experience-content {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
}

.team-details__experience-content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.team-details__experience-content p {
  margin: 0;
}

.team-details__progress {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
}

.team-details__progress-single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.team-details__progress-single.mb0 {
  margin-bottom: 0;
}

.team-details__progress-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.team-details__progress-single .title-box h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.team-details__progress-single .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background: #f3f3f3;
  border-radius: 5px;
}

.team-details__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  background: var(--thm-base);
  border-radius: 5px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress-single .count-text {
  position: absolute;
  top: -40px;
  right: 0px;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
}


/***
=====================================================
Project Page Two
=====================================================
***/
.project-page-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 55px;
  z-index: 1;
}

.project-page-two__menu-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 23px 0px 23px;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  margin-bottom: 75px;
}

.project-page-two__menu-box::before {
  position: absolute;
  top: 0;
  left: -9999999px;
  right: -999999px;
  height: 1px;
  background: #e2e2e2;
  content: "";
}

.project-page-two__menu-box::after {
  position: absolute;
  bottom: 0;
  left: -9999999px;
  right: -999999px;
  height: 1px;
  background: #e2e2e2;
  content: "";
}

.project-page-two__menu-box .project-filter {
  position: relative;
  display: block;
  z-index: 1;
}

.project-page-two__menu-box .project-filter li {
  position: relative;
  display: inline-block;
  padding-right: 55px;
  margin-left: 50px;
}

.project-page-two__menu-box .project-filter li::before {
  position: absolute;
  top: -3px;
  right: 0;
  bottom: -2px;
  width: 1px;
  background: #e2e2e2;
  content: "";
}

.project-page-two__menu-box .project-filter li:last-child:before {
  display: none;
}

.project-page-two__menu-box .project-filter li:last-child {
  margin-right: 0;
}

.project-page-two__menu-box .project-filter li .filter-text {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  transition: all .4s ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.project-page-two__menu-box .project-filter li:hover .filter-text,
.project-page-two__menu-box .project-filter li.active .filter-text {
  color: var(--thm-base);
}

.project-page-two__menu-box .project-filter li .count {
  position: absolute;
  top: -12px;
  right: -11px;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--thm-font);
  opacity: 0;
  transform: scale(0);
  transition: all 300ms ease;
  z-index: -1;
}

.project-page-two__menu-box .project-filter li:hover .count,
.project-page-two__menu-box .project-filter li.active .count {
  transform: scale(1);
  opacity: 1;
  transition-delay: 500ms;
}

.project-page-two__single {
  position: relative;
  display: block;
  margin-bottom: 56px;
}

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

.project-page-two__single-img:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: #010101;
  opacity: 0.8;
  z-index: 1;
  width: 100%;
  height: 100%;
  -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-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.project-page-two__single:hover .project-page-two__single-img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.project-page-two__single-img img {
  width: 100%;
  transition: all 700ms ease;
}

.project-page-two__single:hover .project-page-two__single-img img {
  transform: scaleY(1.1);
}

.project-page-two__single-img .icon-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: perspective(400px) translateY(20px);
  transform-origin: top;
  transition: all 0.1s ease-in-out 0s;
  z-index: 5;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.project-page-two__single:hover .project-page-two__single-img .icon-box {
  opacity: 1;
  transform: perspective(400px) translateY(0);
  transition: all 0.5s ease-in-out 0.5s;
}

.project-page-two__single-img .icon-box a {
  position: relative;
  display: inline-block;
}

.project-page-two__single-img .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-page-two__single-img .icon-box a:hover span:before {
  color: var(--thm-base);
}

.project-page-two__single-img .btn-box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  opacity: 0;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  transition-delay: 0.5s;
}

.project-page-two__single:hover .project-page-two__single-img .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.project-page-two__single-img .btn-box a {
  position: relative;
  display: inline-block;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  padding: 35px 13px 35px;
  padding-top: 25px;
}

.project-page-two__single-img .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 18px;
  top: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-90deg) translateX(0%);
  width: max-content;
  top: 9px;
  right: 0px;
}

.project-page-two__single-content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.project-page-two__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
}

.project-page-two__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-page-two__single-content h2 a:hover {
  color: var(--thm-base);
}


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

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

.project-details__content-text1 {
  position: relative;
  display: block;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 42px;
}

.project-details__content-text1 h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 21px;
}

.project-details__content-text1 .text1 {
  margin: 0;
  margin-bottom: 23px;
}

.project-details__content-text1 .text2 {
  margin: 0;
}

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

.project-details__content-text2 h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 21px;
}

.project-details__content-text2 .text1 {
  margin: 0;
  margin-bottom: 52px;
}

.project-details__content-text2-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-details__content-text2-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.project-details__content-text2-list li:last-child {
  margin-bottom: 0;
}

.project-details__content-text2-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
}

.project-details__content-text2-list li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 40px;
  font-weight: 700;
}

.project-details__content-text2-list li .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 15px;
}

.project-details__content-text2-list li .text-box p {
  margin: 0;
}

.project-details__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 370px;
  width: 100%;
  margin-left: 40px;
  z-index: 1;
}

.project-details__img::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.project-details__img:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.project-details__img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.project-details__img:hover img {
  transform: scale(1);
}


/***
=====================================================
Gallery Three
=====================================================
***/
.gallery-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
  z-index: 1;
}

.gallery-three__inner {
  position: relative;
  display: block;
}

.gallery-three__single {
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-three__single-img {
  position: relative;
  display: block;
  padding-left: 25px;
}

.gallery-three__single-img .overlay-content {
  position: absolute;
  top: 105px;
  left: 0;
  bottom: 105px;
  background: var(--thm-base);
  border-radius: 5px;
  overflow: hidden;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  text-align: center;
  padding: 0px 41px 0px;
  opacity: 0;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  transition-delay: 0.4s;
  z-index: 5;
}

.gallery-three__single:hover .gallery-three__single-img .overlay-content {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.gallery-three__single-img .overlay-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  transform: rotate(-180deg);
}

.gallery-three__single-img .overlay-content h2 a {
  color: #ffffff;
}

.gallery-three__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-three__single-img-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.gallery-three__single:hover .gallery-three__single-img-inner::before {
  opacity: 1;
}

.gallery-three__single-img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.gallery-three__single:hover .gallery-three__single-img-inner img {
  transform: scale(1);
}

.gallery-three__carousel.owl-carousel {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.gallery-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0px 0px 0px;
}

.gallery-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-three__single-img .overlay-content {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.gallery-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-three__single-img-inner img {
  transform: scale(1);
}

.gallery-three__carousel.owl-carousel .owl-stage-outer .owl-item.active .gallery-three__single-img-inner::before {
  opacity: 1;
}


/***
=====================================================
Error Page
=====================================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 108px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__inner h2 {
  color: var(--thm-base);
  font-size: 120px;
  line-height: 0.9em;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-bottom: 35px;
}

.error-page__inner h3 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-bottom: 19px;
  text-transform: capitalize;
}

.error-page__inner p {
  margin: 0;
}

.error-page__search {
  position: relative;
  display: block;
  margin-top: 32px;
}

.error-page__search form.search-form {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

.error-page__search .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 0px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease 0s;
  font-family: var(--thm-font);
}

.error-page__search .search-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--thm-base);
  text-align: center;
  border: 0px solid #f6f4ec;
  transition: all 500ms ease 0s;
  padding: 0;
  outline: none;
  border: none;
}

.error-page__search .search-form button:hover {
  background: var(--thm-black);
}

.error-page__search .search-form button i {
  color: #ffffff;
  font-size: 17px;
  line-height: 50px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.error-page__search .search-form button:hover i {
  color: #ffffff;
}

.error-page__search .search-form input[type="text"]:focus {
  outline: none;
}

.error-page__search .search-form input::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.error-page__search .search-form input:-moz-placeholder {
  color: var(--thm-gray);
}

.error-page__search .search-form input::-moz-placeholder {
  color: var(--thm-gray);
}

.error-page__search .search-form input:-ms-input-placeholder {
  color: var(--thm-gray);
}

.error-page__btn {
  position: relative;
  display: block;
  margin-top: 40px;
  line-height: 0;
}

.error-page__btn .thm-btn {
  background: transparent;
  border: 1px solid var(--thm-base);
  color: var(--thm-base);
  transition: all 100ms linear;
  transition-delay: 0.01s;
}

.error-page__btn .thm-btn:before {
  background: var(--thm-base);
}

.error-page__btn .thm-btn:hover {
  color: #ffffff;
}


/***
=====================================================
Gallery One Project One
=====================================================
***/
.gallery-one--project1 {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.gallery-one--project1 .gallery-one__single {
  margin-bottom: 30px;
}

.gallery-one--project1 .gallery-one__single-img .overlay-content {
  left: 15px;
  bottom: 15px;
  right: 15px;
  width: auto;
  padding: 31px 30px 30px;
}

.gallery-one--project1 .gallery-one__single-img .overlay-content h2 {
  font-size: 24px;
  line-height: 34px;
  margin-top: 3px;
}

.gallery-one--project1 .gallery-one__single-img .overlay-content p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
}

.gallery-one--project1 .gallery-one__link a {
  width: 50px;
  height: 50px;
}

.gallery-one--project1 .gallery-one__link a span:before {
  font-size: 17px;
}


/***
=====================================================
Why Choose One Services
=====================================================
***/
.why-choose-one--services {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
}

/***
=====================================================
Blog Page
=====================================================
***/
.blog-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-page__content {
  position: relative;
  display: block;
}

.blog-page__single {
  position: relative;
  display: block;
}

.blog-page__single-img {
  position: relative;
  display: block;
}

.blog-page__single-img .date-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: 70px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  background: var(--thm-base);
  border-radius: 5px;
  color: #ffffff;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  z-index: 5;
}

.blog-page__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-page__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--thm-black-rgb), 0.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-page__single:hover .blog-page__single-img .inner::before {
  opacity: 1;
}

.blog-page__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-page__single:hover .blog-page__single-img .inner img {
  transform: scale(1);
}

.blog-page__single-content {
  position: relative;
  display: block;
  margin-top: 26px;
}

.blog-page__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-left: 0 !important;
}

.blog-page__meta,
.blog-page__meta li {
  list-style: none !important;
}

.blog-page__meta li+li {
  margin-left: 20px;
}

.blog-page__meta li a {
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__meta li a i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 15px;
  padding-right: 2px;
}

.blog-page__meta li a span {
  position: relative;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  margin-left: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__meta li a:hover span {
  color: var(--thm-base);
}


.blog-page__single-content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-page__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__single-content h2 a:hover {
  color: var(--thm-base);
}

.blog-page__single-content .text1 {
  margin: 0;
  margin-bottom: 13px;
}

.blog-page__single-content .text1>p {
  margin-bottom: 20px;
}

.blog-page__single-content .text2 {
  margin: 0;
}

.blog-page__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 16px;
  line-height: 0;
}

.blog-page__single-content .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__single-content .btn-box a::before {
  position: absolute;
  left: 0;
  bottom: 5px;
  right: 0;
  height: 1px;
  background: var(--thm-gray);
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__single-content .btn-box a:hover::before {
  background: var(--thm-base);
}

.blog-page__single-content .btn-box a:hover {
  color: var(--thm-base);
}

.blog-page__content .styled-pagination {
  padding-top: 5px;
}

/***
=====================================================
Blog Details
=====================================================
***/
.blog-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-details__content-img1 {
  position: relative;
  display: block;
}

.blog-details__content-img1 img {
  width: 100%;
}

.blog-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 25px;
}

.blog-details__content-text1 p {
  margin: 0;
}

.blog-details__content-blockquote {
  position: relative;
  display: block;
  padding-left: 60px;
  margin-top: 33px;
}

.blog-details__content-blockquote .icon-box {
  position: absolute;
  top: 7px;
  left: 0;
}

.blog-details__content-blockquote .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 35px;
}

.blog-details__content-blockquote .text-box {
  position: relative;
  display: block;
}

.blog-details__content-blockquote .text-box p {
  margin: 0;
}

.blog-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 33px;
}

.blog-details__content-text2 .text1 {
  margin: 0;
}

.blog-details__content-text2-list {
  position: relative;
  display: block;
  margin-top: 33px;
}

.blog-details__content-text2-list li {
  position: relative;
  display: block;
  padding-left: 24px;
}

.blog-details__content-text2-list li:before {
  position: absolute;
  top: 10px;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #bfc2c3;
  border-radius: 50%;
  content: "";
}

.blog-details__content-text2-list li+li {
  margin-top: 17px;
}

.blog-details__content-text2 .text2 {
  margin-top: 34px;
}

.blog-details__content-text2 .text3 {
  margin-top: 24px;
}


.blog-details__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 49px 0 40px;
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  background-color: #ffffff;
  border: 1px solid #dcdfe2;
  padding: 5px 30px;
  letter-spacing: 0.035em;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tags a:hover {
  background-color: var(--thm-base);
  border: 1px solid var(--thm-base);
  color: #ffffff;
}

.blog-details__tags a+a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.blog-details__social-list a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-black);
  font-size: 15px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: #ffffff;
  background-color: var(--thm-base);
}

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

.blog-details__social-list a:hover:before {
  transform: scaleX(1);
}

.author-one {
  background-color: #f5f5f5;
  padding: 32px 30px 30px;
  display: -webkit-box;
  display: flex;
  margin-bottom: 51px;
  min-height: 180px;
}

.author-one .inner {
  position: relative;
  display: block;
  padding-left: 130px;
}

.author-one__image {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.author-one__image img {
  width: 100%;
}

.author-one__content {
  position: relative;
  display: block;
}

.author-one__content h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8px;
  font-family: var(--thm-font);
}

.author-one__content p {
  margin: 0;
}

.author-one__content {
  position: relative;
  display: block;
}

.author-one__content ul {
  position: relative;
  display: block;
  margin-top: 16px;
}

.author-one__content ul li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.author-one__content ul li:last-child {
  margin-right: 0px;
}

.author-one__content ul li a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.author-one__content ul li a:hover {
  color: var(--thm-primary);
}




/***
=====================================================
  Comments
=====================================================
***/
.comment-one {
  position: relative;
  display: block;
}

.comment-one__title {
  color: var(--thm-black);
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 31px;
  font-family: var(--thm-font);
}

.comment-one__single {
  position: relative;
  display: -webkit-box;
  display: flex;
  align-items: center;
  margin-bottom: 53px;
}

.comment-one__image {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-one__image img {
  width: auto;
}

.comment-one__content {
  position: relative;
  margin-left: 30px;
  flex: 1;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 11px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.comment-one__content p {
  margin: 0;
  margin-bottom: 13px;
}

.comment-one__content span {
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
}

.comment-one__btn {
  position: relative;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-one__btn:hover {
  color: var(--thm-black);
}

.comment-form {
  position: relative;
  display: block;
}

.comment-form__title {
  color: var(--thm-black);
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 40px;
  font-family: var(--thm-font);
}

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

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

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  height: 60px;
  border: 1px solid #dcdfe2;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.comment-form__input-box textarea {
  width: 100%;
  height: 200px;
  background-color: transparent;
  border: 1px solid #dcdfe2;
  outline: none;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  border-radius: 3px;
  padding: 12px 20px 20px;
  font-family: var(--thm-font);
  resize: none;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn-box button.thm-btn {
  border-radius: 32px;
}


/***
=====================================================
Contact Page
=====================================================
***/
.contact-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

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

.contact-page__top-map {
  position: relative;
  display: block;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 600px;
  width: 100%;
}

.contact-page__top-content {
  position: relative;
  display: block;
  margin-left: 60px;
}

.contact-page__top-content .title-box {
  position: relative;
  display: block;
  margin-top: -12px;
  margin-bottom: 49px;
}

.contact-page__top-content .title-box h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.contact-page__top-content .title-box p {
  margin: 0;
}


.contact-page__top-content-single {
  position: relative;
  display: block;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 26px;
  margin-bottom: 21px;
}

.contact-page__top-content-single.mb0 {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border: none;
}

.contact-page__top-content-single .inner {
  position: relative;
  display: block;
  padding-left: 70px;
}

.contact-page__top-content-single .inner .icon-box {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--thm-base);
  font-size: 45px;
}

.contact-page__top-content-single .inner .icon-box.style2 {
  top: 3px;
}

.contact-page__top-content-single .inner .content-box {
  position: relative;
  display: block;
}

.contact-page__top-content-single .inner .content-box h2 {
  font-size: 27px;
  line-height: 37px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-page__top-content-single .inner .content-box p {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--thm-font-2);
}

.contact-page__top-content-single .inner .content-box .number1 {
  margin: 0px;
  margin-bottom: 1px;
}

.contact-page__top-content-single .inner .content-box .number1 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .number1 a:hover {
  color: var(--thm-base);
}


.contact-page__top-content-single .inner .content-box .number2 {
  margin: 0px;
}

.contact-page__top-content-single .inner .content-box .number2 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .number2 a:hover {
  color: var(--thm-base);
}

.contact-page__top-content-single .inner .content-box .email1 {
  margin: 0px;
  margin-bottom: 1px;
}

.contact-page__top-content-single .inner .content-box .email1 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .email1 a:hover {
  color: var(--thm-base);
}


.contact-page__top-content-single .inner .content-box .email2 {
  margin: 0px;
}

.contact-page__top-content-single .inner .content-box .email2 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .email2 a:hover {
  color: var(--thm-base);
}


.contact-page__bottom {
  position: relative;
  display: block;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-page__bottom-content {
  position: relative;
  display: block;
}

.contact-page__bottom-content .sec-title.style2 {
  position: relative;
  display: block;
  padding-bottom: 30px;
}

.contact-page__bottom .text-box {
  position: relative;
  display: block;
  max-width: 410px;
  width: 100%;
}

.contact-page__bottom .text-box p {
  margin: 0;
}


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

.contact-one__form--contact.contact-one__form::before {
  display: none;
}

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

.contact-one__form--contact.contact-one__form .input-box input[type="text"],
.contact-one__form--contact.contact-one__form .input-box input[type="email"],
.contact-one__form--contact.contact-one__form .input-box textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #dfe0e5;
  color: #878c8f;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 15px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.contact-one__form--contact.contact-one__form form input[type="text"]::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form .input-box textarea {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid #dfe0e5;
  color: #878c8f;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 15px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
  resize: none;
}

.contact-one__form--contact.contact-one__form button.thm-btn {
  border-radius: 33px;
}



/***
=====================================================
End Css 
=====================================================
***/



/* custom css */

.footer-bottom {
  text-align: center;
  background: #f7f7f7;
  padding: 20px 0;
}

.elementor_library-template-default .container {
  max-width: 100%;
}

.elementor_library-template-default ul.meta-box {
  display: none;
}

.elementor_library-template-default h2 {
  display: none;
}
.elementor_library-template-default .title h2 {
  display: block;
}
.elementor_library-template-default .author-box {
  display: none;
}

.sidebar-widget {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  padding: 50px 30px 50px;
  margin-bottom: 30px;
}

.wp-block-search input[type="search"],
.widget_search input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px solid #dcdfe2;
}

.wp-block-search button,
.widget_search button {
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.wp-block-search button {
  padding: 0 20px;
  width: auto;
}

.wp-block-search .wp-block-search__inside-wrapper,
.widget_search .form-group {
  position: relative;
}

.widget_tag_cloud .tag-cloud-link {
  position: relative;
  display: inline-block;
  color: #7d7d7d;
  font-size: 15px !important;
  font-weight: 400;
  background: #ffffff;
  padding: 6px 24px;
  border-radius: 3px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  margin-right: 10px;
}

.widget_tag_cloud .tag-cloud-link:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.widget_categories ul li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding: 17px 20px 18px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
  margin-bottom: 15px;
}
.widget_categories ul li:last-child a {
  margin-bottom: 0;
}
.widget_categories ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--thm-black);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.widget_categories ul li a:hover:before {
  transform: scaleY(1.0);
}

.widget_categories li a:hover {
  color: #ffffff;
}

.widget_categories li.active a {
  background-color: var(--thm-black);
  color: #ffffff;
}

.widget_categories li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--thm-gray);
  font-size: 15px;
  font-weight: 500;
  background-color: #dcdde0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.widget_categories li a:hover span,
.widget_categories li.active a span {
  background: rgba(255, 255, 255, .05);
  color: #ffffff;
}

.footer-one_shape_bg {
  background-repeat: repeat-x;
  background-position: left bottom;
  animation: slide 50s linear infinite;
  -webkit-animation: slide 50s linear infinite;
}

@media (max-width: 575px) {
  .projects-two__tabs-content-img img {
    height: 300px;
    object-fit: cover;
	  min-height: 300px;
}

.projects-two__tabs-content-img::before {
    height: 300px;
}

.projects-two__tabs-content-img .overlay-content ul li {
    margin-bottom: 10px;
}
}

form button br {
  display: none;
}

.lsicool-comment-item .lsicool-comment-item {
  margin-left: 60px;
}





/***
=====================================================
blog
=====================================================
***/


/*Post Pagination*/

.post-nav-links{
  position:relative;
  margin-top:30px;
}

.post-nav-links span,
.post-nav-links a{
  position:relative;
  display:inline-block;
  line-height:40px;
  height:40px;
  width:45px;
  font-size:16px;
  min-width:40px;
  color:#848484;
  font-weight:500;
  text-align:center;
  background:#ffffff;
  border:1px solid #eeeeee;
  text-transform:capitalize;
  transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  border-radius: 6px;
}

.post-nav-links a:hover,
.post-nav-links .current{
  color:#ffffff;
}



/* Calendar */
#wp-calendar {
  width: 100%;
  max-width: 37.5rem;
  background: #ececec;
  margin-bottom: 10px;
}
#wp-calendar caption {
  background: #f7f7f7;
  color: #222;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
#wp-calendar thead tr {
  border-right: 1px solid #ccc;
}
#wp-calendar thead th {
  font-size: 90%;
  font-weight: bold;
  padding: 10px;
  color: var(--thm-base);
  text-transform: uppercase;
  text-align: center;
  font-family:
  "Poppins", sans-serif;
  background: #fff;
  border: 1px solid #ccc;
}
#wp-calendar tbody td {
  position: relative;
  padding: 7px;
  text-align: center;
  border: 1px solid #ccc;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  color: #848484;
}
#wp-calendar tbody td.pad {}
#wp-calendar tbody td#today {
  font-weight: bold;
  color: #282828;
}
#wp-calendar tbody td#today#today:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 10px solid;
  border-left: 10px solid transparent;
}
#wp-calendar tbody td a {
  display: block;
  background: rgba(255, 255, 255, 0);
}
#wp-calendar tbody td a:hover {
  color: #ffffff;
}
#wp-calendar tfoot tr {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #ccc;
}
#wp-calendar tfoot tr td {
  border: 0;
  padding: 0;
}
#wp-calendar tfoot tr a {
  display: block;
  padding: 10px 20px;
  font-weight: 600;
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#wp-calendar tfoot tr a:hover {
  background: #ffffff;
}
#wp-calendar tfoot tr #prev {
  text-align: left;
}
#wp-calendar tfoot tr #next {
  text-align: right;
}

/* Archive */
.widget_archive ul, 
.widget_recent_entries ul {
  list-style: none;
}

.widget_archive ul li {
  margin-bottom: 12px;
}

.widget_archive ul li a {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  transition: .5s;
  line-height: 30px;
  display: inline-block;
}

.widget_archive ul li a:before {
  content: "\f05d";
  position: absolute;
  font-size: 14px;
  font-family: FontAwesome;
  left: 0;
  top: 0px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

/* Select */

.widget_archive select {
  padding: 15px;
  width: 100%;
  font-size: 16px;
  background: #f7f7f7;
  border: 0px;
  font-weight: 400;
  color: #222;
}

.widget_categories select {
  padding: 15px;
  width: 100%;
  font-size: 15px;
  background: #f7f7f7;
  border: 0px;
}

/* Pages */

.widget_pages ul li {
  margin-bottom: 12px;
}

.widget_pages ul li a {
  color: #222;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  transition: .5s;
  font-weight: 400;
}

.widget_pages ul li a:before{
  content: "\f05d";
  position: absolute;
  font-size: 14px;
  font-family: FontAwesome;
  left: 0;
  top: -4px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.widget_pages ul.children {
  margin-left: 10px;
  margin-top: 12px;
}

.widget_pages .page_item_has_children > a {
  margin-bottom: 5px;
}

.widget_meta ul li a {
  color: #222;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  transition: .5s;
  font-weight: 400;
}

.widget_meta ul li a:before {
  content: "\f05d";
  position: absolute;
  font-size: 14px;
  font-family: FontAwesome;
  left: 0;
  top: -3px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.widget_meta ul li {
  margin-bottom: 10px;
}

.widget_recent_comments ul li a {
  color: #222;
  font-size: 16px;
  position: relative;
  transition: .5s;
  font-weight: 400;
}

.widget_recent_comments ul li {
  margin-bottom: 12px;
  color: #848484;
  font-weight: 400;
}

.widget_recent_entries ul li a {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  transition: .5s ease;
  display: inline-block;
  text-transform: capitalize;
}

.widget_recent_entries ul li + li {
  margin-bottom: 10px;
}

.widget_recent_entries ul li a:before {
  content: "\f05d";
  position: absolute;
  font-size: 16px;
  font-family: FontAwesome;
  left: 0;
  top: 0;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}


.widget_rss li .rsswidget {
  color: #222222;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.widget_rss li .rss-date {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.widget_rss li cite {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #111;
}

.rssSummary {
  font-size: 16px;
  margin-bottom: 10px;
}

.widget_rss li {
  margin-bottom: 30px;
}

.widget_text img {
  height: auto;
}

.widget_text img {
  margin-bottom: 15px;
}

.widget_text select {
  padding: 15px;
  width: 100%;
  font-size: 16px;
  background: #f7f7f7;
  border: 0px;
  margin-top: 30px;
  color: #222;
  font-weight: 400;
}

/* Pages */

.widget_nav_menu ul li {
  margin-bottom: 12px;
}

.widget_nav_menu ul li a {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  margin-top: 5px;
  transition: .5s ease;
}

.widget_nav_menu ul li a:before{
  content: "\f05d";
  position: absolute;
  font-size: 14px;
  font-family: FontAwesome;
  left: 0;
  top: -3px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.widget_nav_menu ul.sub-menu {
  margin-left: 10px;
  margin-top: 12px;
}

.widget_nav_menu .menu_item_has_children a {
  margin-bottom: 5px;
}

.widget_text p strong {
  font-weight: 600;
  margin-bottom: 15px;
  color: #28282A;
  font-size: 16px;
}

/* Blog Single Post */

.wp-block-button {
  margin-bottom: 20px;
}

.wp-block-cover.alignleft {
  float: left;
  margin-right: 20px;
}

.wp-block-cover {
  margin-bottom: 30px;
}

.blog-single .inner-box .lower-content .text .wp-block-cover p {
  color: #fff;
  font-size: 24px;
}

.blog-single .inner-box .lower-content .text .wp-block-cover p strong {
  font-weight: 700;
}

.wp-block-gallery.is-cropped .blocks-gallery-item img {
  height: auto;
}

.blog-single .inner-box .lower-content .text figcaption.blocks-gallery-caption {
  margin-bottom: 20px;
}

blockquote {
  position: relative;
  padding: 30px !important;
}

blockquote.wp-block-quote p {
  margin-bottom: 0 !important;
}

blockquote.has-text-color.has-very-dark-gray-color p {
  margin-bottom: 0 !important;
  color: #fff !important;
}

blockquote.has-text-color.has-very-dark-gray-color {
  background: transparent;
  padding: 0 !important;
}

blockquote cite {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.blog-single .inner-box .lower-content .text p.has-very-light-gray-color {
  color: #fff;
}

.blog-single h1,
.blog-single h2,
.blog-single h3,
.blog-single h4,
.blog-single h5,
.blog-single h6{
  margin-bottom: 18px;
  font-weight: 600;
  color: #242424;
  line-height: 1.4em;
}
.blog-single h1{
  font-size:36px;
}
.blog-single h2{
  font-size:32px;
}
.blog-single h3{
  font-size:26px;
}
.blog-single h4,
.blog-single .text h4{
  font-size:22px;
}
.blog-single h5{
  font-size:20px;
}
.blog-single h6{
  font-size:18px;
}
.blog-single table{
  margin-bottom:20px;
}
.blog-single table thead tr th{
  border: 1px solid #ddd;
  vertical-align: bottom;
  padding:8px;
}
.blog-single table tbody tr th{
  border: 1px solid #ddd;
  line-height: 1.42857;
  padding: 8px;
  vertical-align: top;
  font-weight: 500;
  color: #222;
}
.blog-single table tbody tr td{
  border: 1px solid #ddd;
  line-height: 1.42857;
  padding: 8px;
  vertical-align: top;
}

.blog-single ol,
.blog-single ul {
  padding-left:20px;
}

.blog-single ul ul li, 
.blog-single ol ul li {
  list-style-type: circle;
}

.blog-single ol li,
.blog-single ul li {
  line-height: 34px;
}

.blog-single .text > ul li a {
  color: #848484;
}
.blog-single ul>li {
  list-style-type: disc;
}
.blog-single ol>li{
  list-style-type:decimal;
  display:list-item;
}
.blog-single ol li ol li{
  list-style-type:lower-alpha;
}
.blog-single ol li ol li ol li{
  list-style-type:upper-roman;
}
.blog-single p img,
.blog-single figure img,
.blog-single img{
  max-width:100%;
  display:block;
  height:auto;
}

figure{
  max-width:100%;
  display:block;
}

.blog-single .text figcaption {
  margin-top: 20px;
}

.gallery-caption {
  margin: 10px 0;
}

.wp-block-archives a {
  color: #848484;
}

.wp-block-group.has-background {
  padding: 30px;
  margin-bottom: 20px;
}

.wp-block-media-text.is-stacked-on-mobile {
  margin-bottom: 30px;
}

.wp-block-categories.wp-block-categories-dropdown,
.wp-block-archives.wp-block-archives-dropdown {
  margin-bottom: 30px;
}

.wp-block-categories.wp-block-categories-dropdown select,
.wp-block-archives.wp-block-archives-dropdown select {
  padding: 15px;
  width: 100%;
  font-size: 16px;
  background: #f7f7f7;
  border: 0px;
  font-weight: 500;
  color: #848484;
}

.wp-block-latest-comments {
  padding-left: 0 !important;
}

.gallery figure img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.gallery figure {
  float: left;
  margin: 0 2% 1em 0;
}
.gallery.gallery-columns-1 figure {
  width: 100%;
  margin: 0 0 1em 0;
  float: none;
}
.gallery.gallery-columns-3 figure {
  width: 32%;
}
.gallery.gallery-columns-3 figure:nth-of-type(3n+3) {
  margin-right: 0;
}
.gallery.gallery-columns-3 figure:nth-of-type(3n+4) {
  clear: left;
}
.gallery.gallery-columns-2 figure {
  width: 49%;
}
.gallery.gallery-columns-2 figure:nth-of-type(even) {
  margin-right: 0;
}
.gallery.gallery-columns-2 figure:nth-of-type(odd) {
  clear: left;
}
.gallery.gallery-columns-4 figure {
  width: 23.25%;
}
.gallery.gallery-columns-4 figure:nth-of-type(4n+4) {
  margin-right: 0;
}
.gallery.gallery-columns-4 figure:nth-of-type(4n+5) {
  clear: left;
}
.gallery.gallery-columns-5 figure {
  width: 18%;
}
.gallery.gallery-columns-5 figure:nth-of-type(5n+5) {
  margin-right: 0;
}
.gallery.gallery-columns-5 figure:nth-of-type(5n+6) {
  clear: left;
}
.gallery.gallery-columns-6 figure {
  width: 14.2%;
}
.gallery.gallery-columns-6 figure:nth-of-type(6n+6) {
  margin-right: 0;
}
.gallery.gallery-columns-6 figure:nth-of-type(6n+7) {
  clear: left;
}
.gallery.gallery-columns-7 figure {
  width: 12%;
}
.gallery.gallery-columns-7 figure:nth-of-type(7n+7) {
  margin-right: 0;
}
.gallery.gallery-columns-7 figure:nth-of-type(7n+8) {
  clear: left;
}
.gallery.gallery-columns-8 figure {
  width: 10.2%;
}
.gallery.gallery-columns-8 figure:nth-of-type(8n+8) {
  margin-right: 0;
}
.gallery.gallery-columns-8 figure:nth-of-type(8n+9) {
  clear: left;
}
.gallery.gallery-columns-9 figure {
  width: 8.85%;
}
.gallery.gallery-columns-9 figure:nth-of-type(9n+9) {
  margin-right: 0;
}
.gallery.gallery-columns-9 figure:nth-of-type(9n+10) {
  clear: left;
}
@media (max-width:767px) {
  img.alignright,
  div.alignright,
  figure.alignright,
  img.alignleft,
  div.alignleft,
  figure.alignleft,
  img.wp-post-image.attachment-thumb {
      display: block;
      margin: 1em auto;
      float: none;
  }
  .gallery.gallery-columns-4 figure,
  .gallery.gallery-columns-5 figure,
  .gallery.gallery-columns-6 figure,
  .gallery.gallery-columns-7 figure,
  .gallery.gallery-columns-8 figure,
  .gallery.gallery-columns-9 figure {
      width: 100%;
      margin: 0 0 1em 0;
      float: none;
  }
}

.post-nav-links {
  clear: both;
}

.text p>iframe {
  max-width: 100%;
}

.blog-single li ol,
.blog-single li ul {
  margin-left: 20px;
}

.post-password-form input {
  border: 1px solid #eee;
  height: 45px;
  padding: 0 15px;
  vertical-align: middle;
}

.post-password-form input[type="submit"] {
  padding: 0 30px;
  cursor: pointer;
}











.sidebar-widget ul li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding: 13px 20px 14px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
  display: block;
  margin-bottom: 15px;
}

.sidebar-widget ul li a:hover {
  color: #fff;
}

.sidebar-widget ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--thm-black);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.sidebar-widget ul li a:hover:before {
transform: scaleY(1.0);
}


.sidebar-widget.widget_recent_comments ul li a,
.sidebar-widget.widget_categories ul li a,
.sidebar-widget.widget_archive ul li a {
  display: inline-block;
  margin-bottom: 0;
  padding: 0;
  
}

.sidebar-widget.widget_recent_comments ul li,
.sidebar-widget.widget_categories ul li,
.sidebar-widget.widget_archive ul li {
  padding: 13px 20px 14px;
  padding-right: 15px;
  background: #fff;
  margin-bottom: 15px;
}

.sidebar-widget.widget_recent_comments ul li a:hover,
.sidebar-widget.widget_categories ul li a:hover,
.sidebar-widget.widget_archive ul li a:hover {
  color: var(--thm-base);
}

.sidebar-widget.widget_recent_comments ul li a:before,
.sidebar-widget.widget_categories ul li a:before,
.sidebar-widget.widget_archive ul li a:before {
  display: none;
}

.sidebar-widget.widget_recent_comments ul ul.children,
.sidebar-widget.widget_categories ul ul.children,
.sidebar-widget.widget_archive ul ul.children {
  padding-left: 20px;
}

.sidebar-widget.widget_recent_comments ul ul.children li,
.sidebar-widget.widget_categories ul ul.children li,
.sidebar-widget.widget_archive ul ul.children li {
  padding: 0 0 10px;margin-bottom: 0;
}

.sidebar-widget.widget_recent_comments ul ul.children li:last-child,
.sidebar-widget.widget_archive ul ul.children li:last-child,
.sidebar-widget.widget_categories ul ul.children li:last-child {
  padding-bottom: 0;
}

.wp-block-latest-comments li {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding: 17px 20px 18px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
  display: block;
  margin-bottom: 15px;
}

.wp-block-latest-comments li a:hover {
  color: var(--thm-base);
}

.wp-block-latest-comments li a {
  transition: .5s;
  color: var(--thm-gray);
}

.wp-block-categories .nice-select.open .list,
.wp-block-archives .nice-select.open .list,
.widget_archive .nice-select.open .list {
  width: 100%;
}

.wp-block-categories .nice-select,
.wp-block-archives .nice-select,
.widget_archive .nice-select {
  width: 100%;
  float: none;
  height: 60px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

.wp-block-categories .nice-select.open .list li,
.wp-block-archives .nice-select.open .list li,
.widget_archive .nice-select.open .list li {
  padding: 4px 20px;
  margin: 0;
}

.sticky .blog-page__single:before {
  position: absolute;
  content: '\f276';
  font-family: "Font Awesome 5 Free";
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--thm-base);
}













.tag-sticky-2 .blog-blog-details__content:before {
  position: absolute;
  content: '\f276';
  font-family: "Font Awesome 5 Free";
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--thm-base);
}

.wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color) {
  color: inherit;
}
.has-background-dim, .has-background-dim p {
  color: #fff;
}

.blog-page__single-content .text1 p strong {
  color: #222;
}

.wp-block-pullquote {
  border: none;
}

.blog-detail-page ol, 
.blog-detail-page ol li,
.page_text ol, 
.page_text ol li,
.blog-page__single-content .text1 ol, 
.blog-page__single-content .text1 ol li {
  list-style-type: decimal;
}

.blog-detail-page ol,
.page_text ol,
.blog-page__single-content .text1 ol {
  padding-left: 18px;
}

.blog-detail-page ul, 
.blog-detail-page ul li,
.page_text ul, 
.page_text ul li,
.blog-page__single-content .text1 ul, 
.blog-page__single-content .text1 ul li {
  list-style-type: disc;
}

.blog-detail-page ul,
.page_text ul,
.blog-page__single-content .text1 ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-page__single-content h2.wp-block-heading {
  margin-bottom: 0;
}

.wp-block-embed figcaption {
  text-align: left;
}

.wp-block-search__button-outside {
  margin-bottom: 30px;
}
a.wp-block-button__link:hover {
  color: var(--thm-base);
}

p strong {
  color: #222;
}

.blog-page p {
  margin-bottom: 15px;
}

.blog-page .page_text {
  margin-bottom: 30px;
}

table {
  width: 100%;
}

.blog-page__single p a {
  color: var(--thm-base);
}

/*---==========================================-----
-----==================pagination===============-----
-----=========================================-----*/
.pagination {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 30px;
}
.pagination ul {
  margin: 0;
  padding: 0px;
}
.pagination li {
  position: relative;
  display: inline-block;
}

.pagination li a i {
  line-height: 50px;
}
.pagination li a, 
.pagination li span {
  display: block !important;
  width: 50px !important;
  height: 50px !important;
  background: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 50px !important;
  color: var(--thm-black) !important;
  text-align: center !important;
  border-radius: 50% !important;
  margin: 0px 3px !important;
  position: relative !important;
  padding: 0px !important;
  transition: .5s;
}
.pagination li a i, .pagination li span i {
  font-size: 21px;
  color: var(--thm-base);
}
.pagination li:hover a, 
.pagination li.active a {
  background: var(--thm-base) !important;
  color: #fff !important;
}
.pagination li:hover a i, 
.pagination li.active a i {
  color: #fff !important;
}
.pagination li span.current {
  background: var(--thm-base) !important;
  color: #fff !important;
}
.pagination li span.current i {
  color: #fff !important;
}

.post-nav-links, .paginate_links {
  position: relative;
}
.post-nav-links span, 
.post-nav-links a, 
.paginate_links span, 
.paginate_links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #eee;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: var(--thm-black);
  text-align: center;
  border-radius: 50%;
  margin: 0px 3px;
  position: relative;
  transition: .5s;
}
.post-nav-links span:hover, 
.post-nav-links span.current, 
.post-nav-links a:hover, 
.post-nav-links a.current, 
.paginate_links span:hover, 
.paginate_links span.current, 
.paginate_links a:hover, 
.paginate_links a.current {
  background: var(--thm-base);
  color: #fff;
}

.search-notfound input[type="search"] {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #eee;
}

.search-notfound button {
  position: absolute;
  right: 20px;
  top: 15px;
}

.search-notfound .form-group {
  position: relative;
}

.mb_50 {
  margin-bottom: 50px;
}


.comment-form .form-group {
  margin-bottom: 20px;
}

.comment-form .form-group input, .comment-form .form-group textarea {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  height: 60px;
  border: 1px solid #dcdfe2;
  color: var(--thm-gray);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.comment-form .form-group textarea {
  height: 200px;
  padding: 20px;
}
.logged-in-as {
  margin-bottom: 15px;
  font-size: 18px;
}

.wp-block-search .wp-block-search__label {
  display: none;
}

.error-section {
  padding: 120px 0;
}

.error-section h1 {color: var(--thm-base);
  font-size: 120px;
  line-height: 0.9em;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-bottom: 35px;
}

.error-section h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-bottom: 30px;
  text-transform: capitalize;
}






