/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: 'Poppins', sans-serif;
  --thm-font-2: 'Fredoka One', cursive;
  --thm-reey-font: 'reeyregular';
  --thm-gray: #7c8082;
  --thm-gray-rgb: 124, 128, 130;
  --thm-base: #79b823;
  --thm-base-rgb: 121, 184, 35;
  --thm-black: #123316;
  --thm-black-rgb: 18, 51, 22;
}

.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: 16px;
  line-height: 32px;
  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-2);
  margin: 0;
}

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: 1200px;
  }
}

::-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: -5px;
  padding-bottom: 53px;
}

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

.sec-title__tagline span.left {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--thm-base);
  margin-right: 10px;
  top: -6px;
}

.sec-title__tagline span.right {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--thm-base);
  margin-left: 10px;
  top: -6px;
}

.sec-title__tagline h6 {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.sec-title__title {
  font-size: 50px;
  line-height: 1em;
  font-weight: 400;
  text-transform: capitalize;
}

.sec-title .text {
  margin: 0;
  margin-top: 29px;
}

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

.sec-title.style2 .sec-title__tagline h6 {
  color: var(--thm-primary);
}

.sec-title.style2 .sec-title__tagline {
  display: flex;
  align-items: center;
}

.sec-title.style2 .sec-title__tagline.center {
  justify-content: center;
}

.sec-title.style2 .img-box {
  position: relative;
  display: block;
  padding-right: 15px;
}

.sec-title.style2 .img-box img {
  width: 100%;
}

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

.sec-title-three__tagline {
  position: relative;
  display: inline-block;
}

.sec-title-three__tagline::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: var(--thm-primary);
  content: "";
}

.sec-title-three__tagline h6 {
  color: var(--thm-primary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--thm-font);
}

.sec-title-three__title {
  color: var(--thm-black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 13px;
}


/***
=============================================
   Thm Btn
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  padding: 0px 45px 0px;
  line-height: 65px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  background: var(--thm-black);
  overflow: hidden;
  font-family: var(--thm-font);
  text-transform: capitalize;
  transition: all 0.5s ease-in-out 0.2s;
  z-index: 1;
}


.thm-btn:before {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  content: '';
  margin: auto;
  background-color: var(--thm-base);
  transition: all .5s;
  z-index: -1;
  border-radius: 5px;
}

.thm-btn:hover:before {
  transform: rotateX(90deg);
}

.thm-btn::after {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  content: '';
  margin: auto;
  background-color: var(--thm-base);
  transition: all .5s;
  z-index: -1;
  border-radius: 5px;
}

.thm-btn:hover::after {
  transform: rotateY(90deg);
}

.thm-btn .txt {
  position: relative;
  z-index: 1;
}

.thm-btn i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  top: 1px;
  font-weight: 700;
}

.thm-btn:hover,
.thm-btn:focus {
  color: #ffffff;
}



/***
=============================================
   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(180deg);
}


/***
=============================================
   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: 15px;
}

.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: 500;
  border: 1px solid #dee0e2;
  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-base);
  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: 17px;
  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.75;
  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-black);
  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 {
  border-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.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;
  z-index: 5;
}


.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-base);
  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;
  }
}



/*--------------------------------------------------------------
  # 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: var(--thm-base);
  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-black);
}

.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-black);
  border: none;
  outline: none;
  color: #fff;
  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-black);
}

.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-base);
  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: 37px;
  padding-bottom: 37px;
}

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

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

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

.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-base-rgb, 53, 84, 209), 0.05);
}

.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: 16px;
  line-height: 30px;
  color: var(--thm-gray);
  letter-spacing: 0;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 10px 25px;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: var(--thm-font-2);
}

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

.main-header-one__top {
  position: relative;
  display: block;
  background: var(--thm-black);
  padding: 0px 0px 0px;
  z-index: 1;
}

.main-header-one__top .auto-container {
  max-width: 1810px;
  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;
}

.main-header__contact-info {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-header__contact-info li {
  position: relative;
  display: inline-block;
  margin-right: 65px;
}

.main-header__contact-info li:last-child {
  margin-right: 0;
}

.main-header__contact-info li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-info li .inner .icon-box {
  position: relative;
  display: block;
}

.main-header__contact-info li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  top: 1px;
}

.main-header__contact-info li .inner .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.main-header__contact-info li .inner .text-box p {
  font-size: 15px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.7);
}

.main-header__contact-info li .inner .text-box p a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header__contact-info li .inner .text-box p a:hover {
  color: #ffffff;
}

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

.main-header-one__top-menu {
  position: relative;
  display: block;
  margin-right: 61px;
}

.main-header-one__top-menu-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-header-one__top-menu-list li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 15px;
}

.main-header-one__top-menu-list li::before {
  position: absolute;
  top: 6px;
  bottom: 7px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(15deg);
  content: "";
}

.main-header-one__top-menu-list li:last-child:before {
  display: none;
}

.main-header-one__top-menu-list li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__top-menu-list li a:hover {
  color: #ffffff;
}

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

.main-header-one__top-social-links li {
  position: relative;
  display: inline-block;
}

.main-header-one__top-social-links li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 1;
}

.main-header-one__top-social-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  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;
  z-index: -1;
}

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

.main-header-one__top-social-links li a span::before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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



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

.main-header-one__bottom .auto-container {
  max-width: 1810px;
  width: 100%;
  padding-left: 85px;
}

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

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

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

.logo-box-one {
  position: relative;
  display: block;
}

.logo-box-one a {
  position: relative;
  display: inline-block;
}

.logo-box-one a img {
  width: 100%;
}

.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;
  padding-left: 30px;
}

.header-search-box::before {
  position: absolute;
  top: -7px;
  left: 0;
  bottom: -8px;
  width: 1px;
  background: #e2ddda;
  opacity: 0.7;
  content: "";
}

.header-search-box a {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


.main-header-one__bottom-right-btn {
  position: relative;
  display: block;
  margin-left: 40px;
}

.main-header-one__bottom-right-btn a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  background: var(--thm-base);
  padding: 15px 60px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--thm-font-2);
  z-index: 1;
}

.main-header-one__bottom-right-btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--thm-black);
  content: "";
  z-index: -1;
  transition: all 400ms linear;
  transition-delay: 0.2s;
}

.main-header-one__bottom-right-btn a:hover::before {
  width: 100%;
}

.main-header-one__bottom-right .contact-box {
  position: relative;
  display: block;
  padding-left: 60px;
  margin-left: 50px;
}

.main-header-one__bottom-right .contact-box .icon {
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 0;
}

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

.main-header-one__bottom-right .contact-box .text {
  position: relative;
  display: block;
}

.main-header-one__bottom-right .contact-box .text p {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font-2);
}

.main-header-one__bottom-right .contact-box .text a {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.011em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--thm-font-2);
}

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


.main-header-one__bottom .main-menu .main-menu__list>li>a .line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -37px;
  width: 2px;
  height: 0px;
  background: var(--thm-black);
  margin: 0px auto 0px;
  transition: all 0.4s ease-in-out 0.3s;
}

.main-header-one__bottom .main-menu .main-menu__list>li>a:hover .line,
.main-header-one__bottom .main-menu .main-menu__list>li.current>a .line {
  transition: all 0.4s ease-in-out 0.3s;
  height: 20px;
}

.main-header-one__bottom .main-menu .main-menu__list>li>a .line::before {
  position: absolute;
  top: 6px;
  left: -5px;
  bottom: 0;
  width: 2px;
  background: var(--thm-black);
  content: "";
}

.main-header-one__bottom .main-menu .main-menu__list>li>a .line::after {
  position: absolute;
  top: 6px;
  right: -5px;
  bottom: 0;
  width: 2px;
  background: var(--thm-black);
  content: "";
}

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

.stricky-header.stricky-header--one .main-header-one__bottom-right .contact-box {
  display: none;
}







/***
=============================================
Main Header Two
=============================================
***/
.main-header-two {
  position: relative;
  display: block;
  background: var(--thm-black);
  z-index: 10;
}

.main-header-two__top {
  position: relative;
  display: block;
  z-index: 5;
}

.main-header-two__top .auto-container {
  max-width: 1810px;
  width: 100%;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-top: 8px solid var(--thm-primary);
  padding: 20px 140px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

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

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

.main-header-two__top-contact-info li {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  padding-right: 36px;
}

.main-header-two__top-contact-info li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--thm-black);
  transform: rotate(12deg);
  opacity: 0.5;
  content: "";
}

.main-header-two__top-contact-info li:last-child:before {
  display: none;
}

.main-header-two__top-contact-info li:first-child {
  margin-left: 0px;
}

.main-header-two__top-contact-info li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-contact-info li .inner .icon-box {
  position: relative;
  display: block;
}

.main-header-two__top-contact-info li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 30px;
}

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

.main-header-two__top-contact-info li .inner .text-box p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--thm-font-2);
}

.main-header-two__top-contact-info li .inner .text-box h6 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.main-header-two__top-contact-info li .inner .text-box h6 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.main-header-two__top-social-links {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--thm-primary);
  padding: 13px 35px 12px;
}

.main-header-two__top-social-links .title-box {
  position: relative;
  display: block;
  margin-right: 50px;
}

.main-header-two__top-social-links .title-box h4 {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.main-header-two__top-social-links .social-links {
  position: relative;
  display: block;
  line-height: 0;
}

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

.main-header-two__top-social-links .social-links li:last-child {
  margin-right: 0;
}

.main-header-two__top-social-links .social-links li a {
  position: relative;
  display: block;
}

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

.main-header-two__top-social-links .social-links li a:hover span:before {
  color: var(--thm-black);
}

.main-header-two .main-header-one__bottom {
  background: transparent;
  z-index: 1;
}

.main-header-two__bottom-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: repeat-x;
  background-position: bottom center;
  height: 200px;
  z-index: -1;
}

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

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

.main-header-two .main-menu .main-menu__list>li>a,
.stricky-header.stricky-header--two .main-menu__list>li>a {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

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


.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li>a .line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -48px;
  width: 2px;
  height: 0px;
  background: #ffffff;
  margin: 0px auto 0px;
  transition: all 0.4s ease-in-out 0.3s;
}

.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li>a:hover .line,
.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li.current>a .line {
  background: var(--thm-base);
  transition: all 0.4s ease-in-out 0.3s;
  height: 20px;
}

.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li>a .line::before {
  position: absolute;
  top: 6px;
  left: -5px;
  bottom: 0;
  width: 2px;
  background: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.9s;
  content: "";
}

.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li:hover>a .line::before,
.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li.current>a .line::before {
  background: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.03s;
}

.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li>a .line::after {
  position: absolute;
  top: 6px;
  right: -5px;
  bottom: 0;
  width: 2px;
  background: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.9s;
  content: "";
}

.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li:hover>a .line::after,
.main-header-two .main-header-one__bottom .main-menu .main-menu__list>li.current>a .line::after {
  background: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.03s;
}

.main-header-two .main-menu .main-menu__list>li>ul>li>a,
.main-header-two .main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header.stricky-header--two .main-menu__list>li>ul>li>a,
.stricky-header.stricky-header--two .main-menu__list>li>ul>li>ul>li>a {
  font-size: 14px;
  font-family: var(--thm-font);
}

.main-header-two .header-search-box a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.main-header-two .main-header-one__bottom-right-btn a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background: var(--thm-primary);
  padding: 15px 50px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--thm-font);
  z-index: 1;
}

.main-header-two .main-header-one__bottom-right-btn a:hover {
  background: var(--thm-base);
}

.main-header-two .main-header-one__bottom-right-btn a::before {
  display: none;
}

.stricky-header.stricky-header--two .main-menu__wrapper {
  background: var(--thm-black);
}

.stricky-header.stricky-header--two .header-search-box {
  display: none;
}

.stricky-header.stricky-header--two .main-header-one__bottom-right-btn {
  margin-left: 0px;
}






/***
=====================================================
Main Header Three
=====================================================
***/
.main-header-three {
  position: relative;
  display: block;
  background: var(--thm-black);
  z-index: 10;
}

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

.main-header-three .container-fluid {
  padding-left: 80px;
  padding-right: 0px;
}

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

.main-header-three .main-menu .main-menu__list>li>a,
.stricky-header.stricky-header--three .main-menu__list>li>a {
  color: #ffffff;
}

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

.main-header-three .main-menu .main-menu__list>li>a .line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -47px;
  width: 2px;
  height: 0px;
  background: #ffffff;
  margin: 0px auto 0px;
  transition: all 0.4s ease-in-out 0.3s;
}

.main-header-three .main-menu .main-menu__list>li>a:hover .line,
.main-header-three .main-menu .main-menu__list>li.current>a .line {
  background: var(--thm-base);
  transition: all 0.4s ease-in-out 0.3s;
  height: 20px;
}

.main-header-three .main-menu .main-menu__list>li>a .line::before {
  position: absolute;
  top: 6px;
  left: -5px;
  bottom: 0;
  width: 2px;
  background: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.9s;
  content: "";
}

.main-header-three .main-menu .main-menu__list>li:hover>a .line::before,
.main-header-three .main-menu .main-menu__list>li.current>a .line::before {
  background: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.03s;
}

.main-header-three .main-menu .main-menu__list>li>a .line::after {
  position: absolute;
  top: 6px;
  right: -5px;
  bottom: 0;
  width: 2px;
  background: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.9s;
  content: "";
}

.main-header-three .main-menu .main-menu__list>li:hover>a .line::after,
.main-header-three .main-menu .main-menu__list>li.current>a .line::after {
  background: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.03s;
}

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

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

.main-header-three__middle .logo-box-one {
  position: relative;
  display: block;
  padding: 43px 20px 42px;
  z-index: 1;
}

.main-header-three__middle .logo-box-one::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, .1);
  content: "";
  z-index: -1;
}

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

.main-header-three__right-contact {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 35px;
  margin-right: 45px;
}

.main-header-three__right-contact::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .5);
  content: "";
}

.main-header-three__right-contact .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--thm-primary);
  border-radius: 50%;
}

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

.main-header-three__right-contact .content-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.main-header-three__right-contact .content-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font-2);
}

.main-header-three__right-contact .content-box a {
  color: #ffffff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.main-header-three__right .header-search-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-left: 40px;
}

.main-header-three__right .header-search-box::before {
  position: absolute;
  top: -16px;
  left: 0;
  bottom: -16px;
  width: 1px;
  background: rgba(255, 255, 255, .5);
  content: "";
}

.main-header-three__right .header-search-box a {
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


.main-header-three__right .right-box {
  position: relative;
  display: block;
  margin-left: 65px;
}

.main-header-three__right .right-box .top-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.main-header-three__right .right-box .top-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.main-header-three__right .right-box .top-box .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}

.main-header-three__right .right-box .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.main-header-three__right .right-box .text-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

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

.main-header-three__right .right-box .btn-box a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  background: var(--thm-primary);
  padding: 18px 60px 18px;
  z-index: 1;
}

.main-header-three__right .right-box .btn-box a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--thm-base);
  content: "";
  transition: all 400ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.main-header-three__right .right-box .btn-box a:hover::before {
  width: 100%;
}

.stricky-header.stricky-header--three .main-menu__wrapper {
  background-color: var(--thm-black);
}

.stricky-header.stricky-header--three .container-fluid {
  padding: 0px 30px 0px;
}













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

.main-slider-one .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  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;
  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: rgb(241, 243, 242);
  background: linear-gradient(90deg, rgba(241, 243, 242, 1) 0%, rgba(241, 243, 242, 0.9724264705882353) 38%, rgba(241, 243, 242, 0) 56%, rgba(241, 243, 242, 0) 63%);
  content: "";
  z-index: -1;
}

.main-slider-one .shape1 {
  position: absolute;
  top: 0px;
  left: 80px;
  opacity: 0;
  z-index: 2;
  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-one .swiper-slide-active .shape1 {
  opacity: 0.3;
  transform: translateY(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-one .shape2 {
  position: absolute;
  top: -50px;
  left: 130px;
  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-one .swiper-slide-active .shape2 {
  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-two__outer-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0px;
  left: 0px;
  bottom: 0px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  width: max-content;
  text-align: center;
  line-height: 0;
  background: #ffffff;
  z-index: 5;
  padding: 105px 0px 30px;
  padding-left: 19px;
  padding-right: 18px;
}

.main-slider-two__outer-content .date-box {
  position: relative;
  display: block;
}

.main-slider-two__outer-content .date-box p {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
}

.main-slider-two__outer-content .date-box p span {
  position: relative;
  display: inline-block;
  margin-top: 15px;
}

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

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

.main-slider-two__outer-content .social-links ul li {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 30px;
}

.main-slider-two__outer-content .social-links ul li::before {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 10px;
  content: "";
  background: var(--thm-gray);
  content: "";
  margin: 0 auto;
}

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

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

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

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

}

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

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

.main-slider-one__content .title {
  position: relative;
  display: block;
  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-one .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: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-one__content .title h2 {
  color: var(--thm-black);
  font-size: 80px;
  line-height: 1.3em;
  font-weight: 400;
}

.main-slider-one__content .btn-box {
  position: relative;
  display: block;
  margin-top: 49px;
  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;
  line-height: 0;
  z-index: 10;
}

.main-slider-one .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: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider__nav {
  position: absolute;
  top: 40%;
  right: 70px;
  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;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scaleX(1.0) translateX(0px);
  z-index: 105;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 20px;
  text-align: center;
  line-height: 60px;
  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:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.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: 20px;
  line-height: 60px;
  font-weight: 700;
}

.main-slider__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
}


/***
=============================================
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-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  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;
  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: rgb(43, 100, 47);
  background: linear-gradient(90deg, rgba(43, 100, 47, 1) 0%, rgba(43, 100, 47, 1) 31%, rgba(43, 100, 47, 0.8995973389355743) 38%, rgba(43, 100, 47, 0.36738445378151263) 60%, rgba(43, 100, 47, 0) 62%);
  content: "";
  z-index: -1;
}

.main-slider-two .shape1 {
  position: absolute;
  left: -25px;
  bottom: 40px;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: rgba(var(--thm-primary-rgb), 0.65);
  z-index: 1;
}

.main-slider-two__content {
  position: relative;
  display: block;
  padding: 162px 0px 170px;
  z-index: 10;
}

.main-slider-two__content .tagline {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .tagline {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-two__content .tagline::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: #ffffff;
  content: "";
  -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 .main-slider-two__content .tagline::before {
  width: 100%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-two__content .tagline p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-slider-two__content .title {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .title {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}


.main-slider-two__content .title h2 {
  color: #ffffff;
  font-size: 80px;
  line-height: 1.2em;
  font-weight: 400;
}

.main-slider-two__content .btn-box {
  position: relative;
  display: block;
  margin-top: 46px;
  line-height: 0;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-two .swiper-slide-active .main-slider-two__content .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 2300ms;
  transition-delay: 2300ms;
}

.main-slider-two__content .btn-box .thm-btn {
  background: var(--thm-base);
}

.main-slider-two__content .btn-box .thm-btn:before {
  background-color: var(--thm-black);
}

.main-slider-two__content .btn-box .thm-btn::after {
  background-color: var(--thm-black);
}

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

.main-slider-three .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  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;
  z-index: 1;
}

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

.main-slider-three .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 45%;
  background: rgba(var(--thm-primary-rgb), 0.85);
  content: "";
  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-three .swiper-slide-active .image-layer::before {
  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-three .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transform: translateX(-10%);
  -webkit-transition: all 2500ms ease;
  -moz-transition: all 2500ms ease;
  -ms-transition: all 2500ms ease;
  -o-transition: all 2500ms ease;
  transition: all 2500ms ease;
}

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

.main-slider-three__content {
  position: relative;
  display: block;
  padding: 185px 0px 200px;
  z-index: 5;
}

.main-slider-three__content .title {
  position: relative;
  display: block;
  margin-bottom: 16px;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .title {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-three__content .title h2 {
  color: #ffffff;
  font-size: 75px;
  line-height: 85px;
  font-weight: 400;
  text-transform: capitalize;
}

.main-slider-three__content .text {
  position: relative;
  display: block;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .text {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-three__content .text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}

.main-slider-three__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .main-slider-three__content .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-three__content .btn-box .thm-btn {
  background: var(--thm-base);
}

.main-slider-three__content .btn-box .thm-btn:before {
  background-color: var(--thm-black);
}

.main-slider-three__content .btn-box .thm-btn::after {
  background-color: var(--thm-black);
}


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

.page-header .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.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: 50%;
  background: rgba(var(--thm-primary-rgb), 0.85);
  content: "";
  z-index: -2;
}

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

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


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

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

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

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

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

.why-choose-one::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 210px;
  background: #ffffff;
  content: "";
  z-index: -1;
}

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

.why-choose-one .shape1 {
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  margin: 0 auto;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.07;
}

.why-choose-one .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.75;
  z-index: -1;
}

.why-choose-one .shape3 {
  position: absolute;
  top: -30px;
  left: -20px;
  opacity: 0.75;
  z-index: -1;
}

.why-choose-one__inner {
  position: relative;
  display: block;
}

.why-choose-one__tab-box {
  position: relative;
  display: block;
}

.why-choose-one__tab-box .tab-buttons {
  position: relative;
  display: block;
}

.why-choose-one__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  border-radius: 7px;
  background-color: #ffffff;
  box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
  padding: 41px 20px 40px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.why-choose-one__tab-box .tab-buttons .tab-btn:hover,
.why-choose-one__tab-box .tab-buttons .tab-btn.active-btn {
  color: #ffffff;
}

.why-choose-one__tab-box .tab-buttons .tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 7px;
  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;
}

.why-choose-one__tab-box .tab-buttons .tab-btn:hover::before,
.why-choose-one__tab-box .tab-buttons .tab-btn.active-btn::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.why-choose-one__tab-box .tab-buttons li:last-child {
  margin-bottom: 0;
}

.why-choose-one .tabs-content {
  position: relative;
  display: block;
  margin-left: 10px;
}

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

.why-choose-one .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.tabs-content__inner {
  position: relative;
  display: block;
}

.tabs-content__inner-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 545px;
  min-height: 380px;
  background-attachment: scroll;
  background-repeat: no-repeat;
  border-radius: 11px;
}

.tabs-content__list {
  position: relative;
  display: block;
  max-width: 285px;
  width: 100%;
  z-index: 5;
}

.tabs-content__list ul {
  position: relative;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}

.tabs-content__list ul li {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  padding: 0px 10px 0px;
}

.tabs-content__list ul li.mt30 {
  margin-top: 30px;
}

.tabs-content__list ul li .inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgb(0, 0, 0, 0.05);
  border: 1px solid #f2f4fb;
  padding: 31px 0px 22px;
  border-radius: 5px;
  z-index: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.tabs-content__list ul li:hover .inner {
  border-color: var(--thm-base);
}

.tabs-content__list ul li .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 5px;
  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;
}

.tabs-content__list ul li:hover .inner::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.tabs-content__list ul li .inner .icon-box {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.tabs-content__list ul li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.tabs-content__list ul li:hover .inner .icon-box span:before {
  color: #ffffff;
}

.tabs-content__list ul li .inner h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.tabs-content__list ul li .inner h4 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.tabs-content__list ul li:hover .inner h4 a {
  color: #ffffff;
}



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

.about-one .shape3 {
  position: absolute;
  top: -215px;
  right: -270px;
  bottom: 0px;
  width: 800px;
  height: 800px;
  opacity: 0.06;
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  z-index: -1;
}

.about-one .shape1 {
  position: absolute;
  right: 0px;
  bottom: 120px;
  opacity: 0.07;
  z-index: -1;
}

.about-one .shape2 {
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0.29;
  z-index: -1;
}

.about-one__bg {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 120px;
  right: 56%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  z-index: 1;
}

.about-one__bg-content {
  position: absolute;
  bottom: 0;
  right: -55px;
  z-index: 1;
}

.about-one__bg-content .img-box {
  position: relative;
  display: block;
}

.about-one__bg-content .img-box .inner {
  position: relative;
  display: block;
  overflow: hidden;
  width: 300px;
  border-radius: 50%;
}

.about-one__bg-content .img-box .inner img {
  width: 100%;
}

.about-one__bg-content .content-box {
  position: absolute;
  display: flex;
  align-items: center;
  left: 7px;
  bottom: 0;
  right: -7px;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
  border-radius: 10px;
  border-top-left-radius: 0px;
  padding: 24px 17px 24px;
  z-index: 1;
}

.about-one__bg-content .content-box::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 85px;
  background: var(--thm-base);
  content: "";
  z-index: -1;
}

.about-one__bg-content .content-box .icon-box {
  position: relative;
  display: block;
}

.about-one__bg-content .content-box .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
}

.about-one__bg-content .content-box .text-box {
  position: relative;
  display: block;
  margin-left: 35px;
}

.about-one__bg-content .content-box .text-box h2 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
}


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

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

.about-one__content-text1 {
  position: relative;
  display: block;
}

.about-one__content-text1 .text1 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.about-one__content-text1 .text2 {
  margin: 0;
}

.about-one__content-text2 {
  position: relative;
  display: block;
  margin-top: 35px;
}

.about-one__content-text2-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.about-one__content-text2-single h3 {
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 4px;
}

.about-one__content-text2-single h3 span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 25px;
  top: 4px;
  padding-right: 10px;
}

.about-one__content-text2-single p {
  margin: 0;
}

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

.about-one__content-bottom .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.about-one__content-bottom .client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 45px;
}

.about-one__content-bottom .client-info .img-box {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e3e4e1;
}

.about-one__content-bottom .client-info .img-box img {
  width: 100%;
}

.about-one__content-bottom .client-info .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.about-one__content-bottom .client-info .text-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-family: var(--thm-reey-font);
}

.about-one__content-bottom .client-info .text-box p {
  margin: 0;
  float: right;
  line-height: 26px;
}


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

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

.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;
  transition: .5s ease;
}

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

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


/***
=============================================
Contact One
=============================================
***/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background: #f2f7f7;
  z-index: 3;
}

.contact-one .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.contact-one .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.contact-one__img {
  position: absolute;
  bottom: -10px;
  right: 150px;
}

.contact-one__form {
  position: relative;
  display: block;
  margin-right: 40px;
}

.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: #ffffff;
  width: 100%;
  height: 60px;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  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 .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
}

.contact-one__form .input-box .nice-select {
  background: #ffffff;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  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 {
  width: 100%;
  line-height: 60px;
}



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

.services-one .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.20;
  margin: 0 auto;
  z-index: -1;
}

.services-one .row {
  --bs-gutter-x: 20px;
}

.services-one .auto-container {
  max-width: 1360px;
  width: 100%;
}

.services-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 50px 45px 41px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto 30px;
  overflow: hidden;
  z-index: 1;
}

.services-one__single .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.12;
  z-index: 1;
}

.services-one__single .shape2 {
  position: absolute;
  top: 0;
  left: -25px;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}

.services-one__single:hover .shape2 {
  opacity: 0.08;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.services-one__single .shape3 {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  opacity: 0.08;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}

.services-one__single:hover .shape3 {
  opacity: 0.08;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

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

.services-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-base-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

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

.services-one__single-img .overlay-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: -15px;
  right: 0;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 10px;
  z-index: 10;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}

.services-one__single:hover .services-one__single-img .overlay-icon {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.services-one__single-img .overlay-icon .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px dashed var(--thm-base);
}

.services-one__single-img .overlay-icon .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 45px;
}

.services-one__single-img-bg {
  position: absolute;
  left: 0;
  right: -1px;
  bottom: -1px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  z-index: 5;
  overflow: hidden;
}

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

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

.services-one__single-content {
  position: relative;
  display: block;
  padding-top: 30px;
}

.services-one__single-content h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 13px;
}

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

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

.services-one__single-content p {
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
}

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

.projects-one .sec-title {
  margin-left: 570px;
}

.projects-one .sec-title__title span {
  font-size: 50px;
  line-height: 1em;
  font-weight: 400;
  text-transform: capitalize;
}

.projects-one .sec-title__title .plus {
  position: relative;
  display: inline-block;
  right: 10px;
}

.projects-one .odometer.odometer-auto-theme,
.projects-one .odometer.odometer-theme-default {
  font-family: var(--thm-font-2);
  line-height: 1em;
}

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

.projects-one__inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 40px 90px 40px;
  padding-bottom: 0px;
  margin-left: 240px;
  margin-right: -165px;
}


.projects-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.projects-one__single.mb30 {
  margin-top: 30px;
}

.projects-one__single.mb60 {
  margin-top: 60px;
}

.projects-one__single.mb0 {
  margin-bottom: 0;
}

.projects-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.projects-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.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

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

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

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

.projects-one__single-img .overlay-content {
  position: absolute;
  left: 25px;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 5;
}

.projects-one__single:hover .projects-one__single-img .overlay-content {
  bottom: 14px;
  opacity: 1;
  visibility: visible;
}

.projects-one__single-img .overlay-content span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.projects-one__single-img .overlay-content span::before {
  position: absolute;
  left: 0;
  bottom: 1px;
  right: 3px;
  height: 2px;
  background: var(--thm-base);
  content: "";
}

.projects-one__single-img .overlay-content h2 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 5px;
}

.projects-one__single-img .overlay-content h2 a {
  color: #ffffff;
}

.projects-one__single-img .btn-box {
  position: absolute;
  top: 0px;
  right: 15px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 5;
}

.projects-one__single:hover .projects-one__single-img .btn-box {
  top: 25px;
  opacity: 1;
  visibility: visible;
}

.projects-one__single-img .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.projects-one__single-img .btn-box a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--thm-base);
  transform: scale(0.5);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  content: "";
  z-index: -1;
}

.projects-one__single-img .btn-box a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.projects-one__single-img .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-one__single-img .btn-box a:hover span::before {
  color: #ffffff;
}


/***
=============================================
Work Process One
=============================================
***/
.work-process-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  counter-reset: count;
  z-index: 1;
}

.work-process-one .shape1 {
  position: absolute;
  top: -50px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.13;
  border-radius: 50%;
  margin: 0 auto;
  z-index: -1;
}

.work-process-one .shape2 {
  position: absolute;
  top: 262px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: -1;
}

.work-process-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.work-process-one__single.mt100 {
  margin-top: 100px;
}

.work-process-one__single.mt50 {
  margin-top: 50px;
}

.work-process-one__single-icon {
  position: relative;
  display: block;
  width: 150px;
  margin: 0 auto 23px;
}

.work-process-one__single-icon .count-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  background: var(--thm-base);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--thm-font-2);
  font-weight: 400;
  letter-spacing: -0.02em;
  z-index: 1;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

.work-process-one__single.style2 .work-process-one__single-icon .count-box {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0px;
}

.work-process-one__single:hover .work-process-one__single-icon .count-box {
  background: #ffffff;
  color: var(--thm-base);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
}

.work-process-one__single-icon .count-box::before {
  top: -35px;
  left: 70px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  font-family: var(--thm-font-2);
  font-weight: 400;
  counter-increment: count;
  content: "0"counter(count);
}

.work-process-one__single-icon .count-box span {
  color: #ffffff;
}

.work-process-one__single-icon .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(var(--thm-base-rgb), 0.2);
  margin: 0 auto;
  z-index: 1;
}

.work-process-one__single-icon .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.15;
  content: "";
  z-index: -1;
}

.work-process-one__single-icon .inner::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;
}

.work-process-one__single:hover .work-process-one__single-icon .inner::after {
  transform: scale(1.0);
  opacity: 1;
}

.work-process-one__single-icon .inner span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 65px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-process-one__single:hover .work-process-one__single-icon .inner span::before {
  color: #ffffff;
}

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

.work-process-one__single-content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

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

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

.work-process-one__single-content p {
  margin: 0;
}


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

.faq-one .shape1 {
  position: absolute;
  top: -110px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.16;
  margin: 0 auto;
  z-index: -1;
}

.faq-one__progress {
  position: relative;
  display: block;
  margin-right: 35px;
}

.faq-one__progress .sec-title {
  padding-bottom: 46px;
}

.faq-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.faq-one__progress-single.mb0 {
  margin-bottom: 0px;
}

.faq-one__progress-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: none;
  margin-bottom: 8px;
}

.faq-one__progress-single .bar {
  position: relative;
  width: 100%;
  height: 12px;
  background: rgba(var(--thm-black-rgb), 0.2);
  border-radius: 6px;
}

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

.faq-one__progress-single .count-text {
  position: absolute;
  top: -35px;
  right: 0px;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  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;
  font-family: var(--thm-font-2);
  opacity: 1;
}


.faq-one__accordion {
  position: relative;
  display: block;
  margin-top: 47px;
}

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

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
  background: #ffffff;
}

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

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 500ms ease;
  padding-top: 24px;
  padding-left: 40px;
  padding-bottom: 23px;
  padding-right: 40px;
}

.accordion-box .block .acc-btn.active {
  padding-bottom: 19px;
}

.accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--thm-font);
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
  color: var(--thm-black);
}

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 20px;
  color: var(--thm-black);
  font-size: 20px;
  text-align: right;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%) rotate(0deg);
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
  color: var(--thm-black);
  transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
  font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
  position: relative;
  font-size: 20px;
  font-family: 'icomoon' !important;
  font-weight: 700;
  margin: 0px;
  content: "\e91d";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 30px;
  padding-left: 40px;
  padding-bottom: 34px;
  padding-right: 40px;
  border-top: 1px solid #bdc0c2;
}

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

.accordion-box .block .acc-content p {
  margin: 0;
  color: var(--thm-gray);
  font-weight: 400;
}

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

.testimonial-one .shape2 {
  position: absolute;
  top: -80px;
  left: 0;
  width: 850px;
  height: 850px;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.10;
  border-radius: 50%;
  z-index: -1;
}

.testimonial-one .shape5 {
  position: absolute;
  top: -80px;
  right: 200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.10;
  z-index: -1;
}

.testimonial-one__img {
  position: relative;
  display: block;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 2px solid rgba(var(--thm-base-rgb), 0.1);
  z-index: 1;
}

.testimonial-one__img .shape1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(121, 184, 35) 44%, rgb(255, 255, 255) 100%);
  opacity: 0.169;
  z-index: -1;
}

.testimonial-one__img .shape3 {
  position: absolute;
  top: 65px;
  right: 47px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 3px solid var(--thm-base);
  z-index: -1;
}

.testimonial-one__img .shape4 {
  position: absolute;
  left: 165px;
  bottom: -4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 3px solid var(--thm-base);
  z-index: 1;
}

.testimonial-one__img::before {
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  border: 2px solid rgba(var(--thm-base-rgb), 0.1);
  content: "";
}

.testimonial-one__img1 {
  position: absolute;
  top: 40px;
  left: 15px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__img1 img {
  width: 100%;
}

.testimonial-one__img2 {
  position: absolute;
  top: 15px;
  right: 150px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__img2 img {
  width: 100%;
}

.testimonial-one__img3 {
  position: absolute;
  bottom: 210px;
  right: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__img3 img {
  width: 100%;
}

.testimonial-one__img4 {
  position: absolute;
  bottom: 50px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__img4 img {
  width: 100%;
}

.testimonial-one__img5 {
  position: absolute;
  left: 165px;
  bottom: 0px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__img5 img {
  width: 100%;
}

.testimonial-one__img6 {
  position: absolute;
  left: -20px;
  bottom: 115px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__img6 img {
  width: 100%;
}

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

.testimonial-one__img7::before {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid #cfd8d0;
  border-radius: 50%;
  content: "";
}

.testimonial-one__img7 .inner {
  position: relative;
  display: block;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__img7 img {
  width: 100%;
}

.testimonial-one__content {
  position: relative;
  display: block;
  margin-left: -75px;
  margin-right: 75px;
}

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

.testimonial-one__single {
  position: relative;
  display: block;
  padding: 42px 40px 43px;
  padding-left: 0;
  z-index: 1;
}

.testimonial-one__single-bg {
  position: absolute;
  left: 70px;
  bottom: 0px;
  right: 0;
  height: 50px;
  opacity: 0.5;
  background-position: left bottom;
  background-repeat: repeat-x;
  z-index: -1;
}

.testimonial-one__single::before {
  position: absolute;
  top: 0;
  left: 70px;
  bottom: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
  content: "";
  z-index: -1;
}

.testimonial-one__single .inner {
  position: relative;
  display: block;
  padding-left: 190px;
}

.testimonial-one__single .inner .img-box {
  position: absolute;
  top: 9px;
  left: 0;
}

.testimonial-one__single .inner .img-box .inner-box {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

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

.testimonial-one__single .inner .img-box .icon-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 35px;
  right: -35px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--thm-base);
}

.testimonial-one__single .inner .img-box .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
}

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

.testimonial-one__single .inner .content-box p {
  margin: 0;
}

.testimonial-one__single .inner .content-box .client-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
}

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

.testimonial-one__single .inner .content-box .client-info .text-box h2 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.04em;
}

.testimonial-one__single .inner .content-box .client-info .text-box p {
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


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

.testimonial-one__carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -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: .3s;
  transition-property: all;
}

.testimonial-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  top: 0;
  right: -75px;
  text-align: center;
  margin: 0 auto !important;
  background: rgba(var(--thm-black-rgb), 0.1);
  border-radius: 15px;
  overflow: hidden;
  height: 290px;
  width: 10px;
}

.testimonial-one__carousel.owl-carousel .owl-dots button {
  position: relative;
  display: inline-block;
  background: transparent;
  height: 33.333%;
  float: left;
  background: transparent;
  border-radius: 15px;
  transition: all 500ms ease;
  width: 10px;
}

.testimonial-one__carousel.owl-carousel .owl-dots button.active,
.testimonial-one__carousel.owl-carousel .owl-dots button:hover {
  background: var(--thm-base);
}

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


/***
=============================================
Excellent Work One
=============================================
***/
.excellent-work-one {
  position: relative;
  display: block;
  background: #f2f7f7;
  padding: 120px 0px 120px;
  z-index: 1;
}

.excellent-work-one .shape1 {
  position: absolute;
  right: 0;
  bottom: -17px;
  z-index: -1;
}

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

.excellent-work-one__bg .content-box {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--thm-black);
  padding: 57px 50px 57px;
  z-index: 5;
}

.excellent-work-one__bg .content-box .img-box {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.1;
}

.excellent-work-one__bg .content-box .text-box {
  position: relative;
  display: block;
}

.excellent-work-one__bg .content-box .text-box h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 44px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}

.excellent-work-one__bg .content-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.excellent-work-one__content {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-right: -165px;
}

.excellent-work-one__content .sec-title {
  padding-bottom: 33px;
}

.excellent-work-one__content .text-box {
  position: relative;
  display: block;
}

.excellent-work-one__content .text-box p {
  margin: 0;
}


.excellent-work-one__progress {
  position: relative;
  display: block;
  margin-top: 29px;
}

.excellent-work-one__progress-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.excellent-work-one__progress-single .progress-box {
  position: relative;
  display: block;
  line-height: 0;
}

.excellent-work-one__progress-single .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.excellent-work-one__progress-single .progress-box .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.excellent-work-one__progress-single .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.excellent-work-one__progress-single .progress-box .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 24px;
  font-weight: 600;
}

.excellent-work-one__progress-single .title-box {
  position: relative;
  display: block;
  padding-left: 25px;
}

.excellent-work-one__progress-single .title-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.excellent-work-one__content-list {
  position: relative;
  display: block;
}

.excellent-work-one__content-list li {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.excellent-work-one__content-list li:last-child {
  margin-bottom: 0;
}

.excellent-work-one__content-list li p {
  margin: 0px;
}

.excellent-work-one__content-list li p span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 20px;
  top: 3px;
  padding-right: 10px;
}


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

.blog-one .sec-title {
  padding-bottom: 73px;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 60px 0px rgb(0 0 0 / 7%);
}

.blog-one__single-content .meta-box {
  position: absolute;
  top: -20px;
  left: 30px;
  right: 30px;
  background: #ffffff;
  box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, 0.07);
  border-radius: 5px;
  padding: 7px 22px 6px;
  z-index: 5;
}

.blog-one__single-content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 20px;
}

.blog-one__single-content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-one__single-content .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-one__single-content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
  top: 1px;
}

.blog-one__single-content .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 10px;
  margin-top: 0;
}

.blog-one__single-content .meta-box li .text p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin: 0;
}

.blog-one__single-content .meta-box li .text p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .meta-box li .text p a:hover {
  color: var(--thm-base);
}


.blog-one__single-content-inner {
  position: relative;
  display: block;
  padding: 52px 30px 28px;
}

.blog-one__single-content-inner h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 11px;
}

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

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

.blog-one__single-content-inner p {
  margin: 0px;
}


.blog-one__single-content-bottom {
  position: relative;
  display: block;
  border-top: 1px solid #ede8e4;
}

.blog-one__single-content-bottom ul {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom ul li {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  text-align: center;
}

.blog-one__single-content-bottom ul li .comment-box {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom ul li .comment-box a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 15px;
  padding: 12px 0px 11px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom ul li .comment-box a:hover {
  background: #f2f7f7;
  color: var(--thm-base);
}

.blog-one__single-content-bottom ul li .comment-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  top: 1px;
}

.blog-one__single-content-bottom ul li .btn-box {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom ul li .btn-box a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 15px;
  padding: 12px 0px 11px;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom ul li .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
  top: 2px;
}

.blog-one__single-content-bottom ul li .btn-box a:hover {
  background: #f2f7f7;
  color: var(--thm-base);
}

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

.blog-one__single-img:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: var(--thm-black);
  z-index: 1;
  opacity: 0.7;
  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-one__single:hover .blog-one__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-one__single-img img {
  width: 100%;
  transition: all 700ms ease;
}

.blog-one__single:hover .blog-one__single-img img {
  transform: scaleY(1.1);
}


/***
=============================================
Footer One 
=============================================
***/
.footer-one {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  background: var(--thm-black);
  z-index: 1;
}

.footer-one .shape1 {
  position: absolute;
  top: 130px;
  left: 0;
  opacity: 0.18;
  z-index: -1;
}

.footer-one .shape2 {
  position: absolute;
  right: 0;
  bottom: 150px;
  z-index: -1;
}

.footer-one__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: repeat-x;
  background-position: left bottom;
  height: 80px;
  opacity: 0.05;
  animation: slide 50s linear infinite;
  -webkit-animation: slide 50s linear infinite;
  z-index: -1;
}

.footer {
  position: relative;
  display: block;
  padding-bottom: 117px;
}

.footer-widget__single {
  position: relative;
  display: block;
}

.footer-widget__single-about {
  position: relative;
  display: block;
}

.footer-widget__single-about .logo-box {
  position: relative;
  display: block;
}

.footer-widget__single-about .logo-box a {
  position: relative;
  display: inline-block;
}

.footer-widget__subscribe-box {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 48px 40px 55px;
}

.footer-widget__subscribe-box .title-box {
  position: relative;
  display: block;
  margin-bottom: 28px;
}

.footer-widget__subscribe-box .title-box h5 {
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.footer-widget__subscribe-input-box {
  position: relative;
  display: block;
}

.footer-widget__subscribe-input-box input[type="email"] {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  height: 65px;
  width: 100%;
  background-color: var(--thm-black);
  border: 1px solid #405b43;
  padding-left: 20px;
  padding-right: 70px;
  outline: none;
}

.footer-widget__subscribe-btn {
  position: absolute;
  top: 50%;
  right: 1px;
  width: 65px;
  height: 63px;
  border: none;
  background-color: var(--thm-base);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 0px;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__subscribe-btn:hover {
  background-color: #ffffff;
  color: var(--thm-base);
}


.footer-one__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.footer-one__right-single {
  position: relative;
  display: block;
}

.footer-one__right-single .title {
  position: relative;
  display: block;
  margin-bottom: 20px;
  margin-top: -7px;
}

.footer-one__right-single .title h2 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
}

.footer-one__right-single-services {
  position: relative;
  display: block;
}

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

.footer-one__right-single-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

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

.footer-one__right-single-list li a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__right-single-list li a:hover {
  color: #ffffff;
}

.footer-one__right-single-links {
  position: relative;
  display: block;
}

.footer-one__right-single-contact {
  position: relative;
  display: block;
  margin-top: -2px;
}

.footer-one__right-single-contact p {
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-one__right-single-contact a {
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__right-single-contact a:hover {
  color: #ffffff;
}

.footer-one__right-bottom {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 32px;
  padding-top: 37px;
}

.footer-one__right-bottom .social-links {
  position: relative;
  display: block;
}

.footer-one__right-bottom .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.footer-one__right-bottom .social-links li:last-child {
  margin-right: 0;
}

.footer-one__right-bottom .social-links li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  background: rgba(255, 255, 255, .1);
  z-index: 1;
}

.footer-one__right-bottom .social-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  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;
  z-index: -1;
}

.footer-one__right-bottom .social-links li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-one__right-bottom .social-links li a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}

.footer-one__right-bottom-contact {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 90px;
}

.footer-one__right-bottom-contact .icon-box {
  position: relative;
  display: block;
}

.footer-one__right-bottom-contact .icon-box span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .5);
  font-size: 50px;
}

.footer-one__right-bottom-contact .content-box {
  position: relative;
  display: block;
  margin-left: 5px;
}

.footer-one__right-bottom-contact .content-box p {
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font-2);
}

.footer-one__right-bottom-contact .content-box h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.footer-one__right-bottom-contact .content-box h4 a {
  color: rgba(255, 255, 255, .5);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__right-bottom-contact .content-box h4 a:hover {
  color: #ffffff;
}


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

.footer-one__bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .1);
  padding: 30px 45px 30px;
}

.footer-one__bottom .bottom-inner .copyright {
  position: relative;
  display: block;
}

.footer-one__bottom .bottom-inner .copyright p {
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.footer-one__bottom-menu {
  position: relative;
  display: block;
}

.footer-one__bottom-menu li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  margin-right: 5px;
}

.footer-one__bottom-menu li::before {
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, .5);
  content: "";
}

.footer-one__bottom-menu li:last-child:before {
  display: none;
}

.footer-one__bottom-menu li a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__bottom-menu li a:hover {
  color: #ffffff;
}


/***
=====================================================
Features One
=====================================================
***/
.features-one {
  position: relative;
  display: block;
  background: #f3f7f8;
  padding: 120px 0px 120px;
  counter-reset: count;
  z-index: 1;
}

.features-one__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 420px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.04;
  z-index: -1;
}

.features-one__single {
  position: relative;
  display: block;
  padding-bottom: 25px;
}

.features-one__single-inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 42px 10px 49px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: 6px solid #fbfbfb;
  z-index: 1;
}

.features-one__single-inner::before {
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  transform: scaleX(0.5) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--thm-black);
  height: 6px;
  opacity: 0;
  content: "";
  z-index: -1;
}

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

.features-one__single-inner .icon-box {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.features-one__single-inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 70px;
}

.features-one__single-inner .text-box {
  position: relative;
  display: block;
}

.features-one__single-inner .text-box h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  text-transform: uppercase;
}

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

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

.features-one__single-inner .text-box p {
  margin: 0;
}

.features-one__single .count-box {
  position: absolute;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  background: #ffffff;
  box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
  color: var(--thm-gray);
  border-radius: 50%;
  font-family: var(--thm-font);
  font-weight: 700;
  z-index: 1;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

.features-one__single:hover .count-box {
  color: #ffffff;
}

.features-one__single .count-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  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;
}

.features-one__single:hover .count-box::after {
  transform: scale(1.0);
  opacity: 1;
}

.features-one__single .count-box::before {
  counter-increment: count;
  content: ""counter(count);
}

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

.features-one__carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transform: perspective(400px) rotateX(0deg) scaleY(1.2);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.features-one__carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -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: .3s;
  transition-property: all;
}


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

.about-two__bg {
  position: absolute;
  top: 210px;
  right: 0;
  bottom: 120px;
  background-blend-mode: luminosity;
  background: #ffffff;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 750px;
  opacity: 0.08;
  z-index: -1;
}

.about-two__img {
  position: relative;
  display: block;
  margin-right: 60px;
}

.about-two__img1 {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.about-two__img1::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, .3) 100%);
  transform: skewX(25deg);
  z-index: 1;
}

.about-two__img:hover .about-two__img1::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

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

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

.about-two__img2 {
  position: absolute;
  right: 0;
  bottom: -65px;
  max-width: 275px;
  width: 100%;
  overflow: hidden;
  z-index: 3;
}

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

.about-two__img .counter-box {
  position: absolute;
  left: -95px;
  bottom: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 185px;
  height: 185px;
  background: var(--thm-black);
  border-radius: 50%;
  border-bottom-right-radius: 0px;
  border: 5px dotted var(--thm-primary);
  z-index: 5;
}

.about-two__img .counter-box h2 {
  position: relative;
  color: #ffffff;
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.about-two__img .counter-box h2 .plus {
  position: absolute;
  top: -5px;
  font-size: 35px;
}

.about-two__img .counter-box p {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}


.about-two__content {
  position: relative;
  display: block;
  margin-left: -30px;
}

.about-two__content .sec-title {
  padding-bottom: 44px;
}

.about-two__content-text1 {
  position: relative;
  display: block;
}

.about-two__content-text1 p {
  margin: 0;
}

.about-two__content-text2 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.about-two__content-text2 .single-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__content-text2 .single-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--thm-primary);
}

.about-two__content-text2 .single-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 35px;
}

.about-two__content-text2 .single-box .title-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.about-two__content-text2 .single-box .title-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.about-two__content-text3 {
  position: relative;
  display: block;
  margin-top: 31px;
}

.about-two__content-text3 p {
  margin: 0;
}

.about-two__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 31px;
}

.about-two__progress-single {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.about-two__progress-single.mb0 {
  margin-bottom: 0px;
}

.about-two__progress-single .title {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.about-two__progress-single .title h4 {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.about-two__progress .bar {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: #f3f2f2;
  border-radius: 0px;
}

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

.about-two__progress .count-text {
  position: absolute;
  right: -45px;
  bottom: 20px;
  color: #ffffff;
  line-height: 22px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  background-color: var(--thm-black);
  padding: 4px 10px 3px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.about-two__progress .count-text:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  border: 3px solid var(--thm-black);
  content: "";
  border-right: 4px solid transparent;
  border-bottom: 3px solid transparent;
}

.about-two__progress .bar-inner.counted .count-text {
  opacity: 1;
}


/***
=====================================================
Slogan One
=====================================================
***/
.slogan-one {
  position: relative;
  display: block;
  margin-bottom: 120px;
  z-index: 1;
}

.slogan-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--thm-black);
  padding: 75px 120px 67px;
  border-radius: 20px;
  border: 4px solid var(--thm-primary);
  overflow: hidden;
  z-index: 1;
}

.slogan-one__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  height: 180px;
  z-index: -1;
}

.slogan-one__inner .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.slogan-one__inner .content-box {
  position: relative;
  display: block;
  z-index: 5;
}

.slogan-one__inner .content-box h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}

.slogan-one__inner .content-box h2 span {
  color: #ffffff;
  font-size: 50px;
}

.slogan-one__inner .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.slogan-one__inner .btn-box .thm-btn {
  background: var(--thm-base);
}

.slogan-one__inner .btn-box .thm-btn:before {
  background-color: var(--thm-primary);
}

.slogan-one__inner .btn-box .thm-btn::after {
  background-color: var(--thm-primary);
}


/***
=====================================================
Services Two
=====================================================
***/
.services-two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.services-two .shape1 {
  position: absolute;
  top: 0;
  left: 15px;
  opacity: 0.15;
  z-index: -1;
}

.services-two .shape2 {
  position: absolute;
  top: 0;
  right: 15px;
  opacity: 0.15;
  z-index: -1;
}

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

.services-two__bg2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: repeat-x;
  background-position: left bottom;
  height: 90px;
  opacity: 0.05;
  animation: slide 50s linear infinite;
  -webkit-animation: slide 50s linear infinite;
  z-index: -1;
}

.services-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.95);
  content: "";
  z-index: -2;
}

.services-two .sec-title.style2 .sec-title__tagline h6 {
  color: #ffffff;
}

.services-two .sec-title__title {
  color: #ffffff;
}

.services-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-two__single-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.services-two__single-img {
  position: relative;
  display: block;
}

.services-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  border-bottom-right-radius: 0px;
  z-index: 1;
}

.services-two__single-img .inner:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.services-two__single:hover .services-two__single-img .inner:before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.services-two__single-img .inner img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.services-two__single:hover .services-two__single-img .inner img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.services-two__single-img .icon-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 60px;
  right: -10px;
  width: 55px;
  height: 60px;
  background: var(--thm-base);
  z-index: 5;
}

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

.services-two__single-content {
  position: relative;
  display: block;
  padding: 24px 15px 26px;
  padding-left: 25px;
  flex: 1;
  z-index: 3;
}

.services-two__single-content::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 0px;
  background-color: var(--thm-primary);
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0;
  content: "";
  z-index: -1;
}

.services-two__single:hover .services-two__single-content::after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-two__single-content-bg {
  position: absolute;
  left: 0;
  bottom: -2px;
  right: 0;
  height: 60px;
  background-position: center center;
  background-repeat: repeat-x;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0;
  z-index: 1;
}

.services-two__single:hover .services-two__single-content-bg {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0.22;
}

.services-two__single-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  content: "";
  z-index: -1;
}

.services-two__single-content h2 {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  padding-bottom: 14px;
  margin-bottom: 15px;
}

.services-two__single-content h2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background: var(--thm-base);
  content: "";
}

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

.services-two__single:hover .services-two__single-content h2 a {
  color: #ffffff;
}

.services-two__single-content p {
  font-size: 13px;
  line-height: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single:hover .services-two__single-content p {
  color: #ffffff;
}



/***
=====================================================
Projects Two
=====================================================
***/
.projects-two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.projects-two .shape1 {
  position: absolute;
  top: 110px;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.projects-two .shape2 {
  position: absolute;
  left: 0;
  bottom: 80px;
  opacity: 0.06;
  z-index: -1;
}

.projects-two .container {
  max-width: 100%;
}

.projects-two .sec-title {
  padding-bottom: 28px;
}

.projects-two__content {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
  float: right;
}

.projects-two__content-text1 {
  position: relative;
  display: block;
}

.projects-two__content-text1 p {
  margin: 0;
}

.projects-two__content-tab {
  position: relative;
  display: block;
  margin-top: 29px;
}

.projects-two__content-tab .tab-buttons {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.projects-two__content-tab .tab-buttons li {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  float: left;
  background: #fcfbf9;
  cursor: pointer;
  border-top: 1px solid #f5f4f3;
  border-bottom: 1px solid #f5f4f3;
  border-left: 1px solid #f5f4f3;
  padding: 13px 38px 12px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-two__content-tab .tab-buttons li:last-child {
  border-right: 1px solid #f5f4f3;
}

.projects-two__content-tab .tab-buttons li:hover,
.projects-two__content-tab .tab-buttons li.active-btn {
  border-color: var(--thm-base);
  background: var(--thm-base);
  color: #ffffff;
}

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

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

.projects-two__tabs-content {
  position: relative;
  display: block;
}

.projects-two__tabs-content-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.projects-two__tabs-content-img .border-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 200px;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  margin: 0 auto;
  z-index: 5;
}

.projects-two__tabs-content-img::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(42, 125, 46);
  background: linear-gradient(0deg, rgba(42, 125, 46, 1) 0%, rgba(42, 125, 46, 0.5242471988795518) 46%, rgba(42, 125, 46, 0) 100%);
  height: 130px;
  content: "";
  z-index: 1;
}

.projects-two__tabs-content-img .overlay-content {
  position: absolute;
  left: 0px;
  bottom: 20px;
  right: 0px;
  z-index: 5;
}

.projects-two__tabs-content-img .overlay-content ul {
  position: relative;
  display: block;
}

.projects-two__tabs-content-img .overlay-content ul li {
  position: relative;
  display: inline-block;
  margin-left: 16px;
}

.projects-two__tabs-content-img .overlay-content ul li .inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.projects-two__tabs-content-img .overlay-content ul li .text-box {
  position: relative;
  display: block;
  line-height: 0;
}

.projects-two__tabs-content-img .overlay-content ul li .text-box h4 {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: -0.008em;
  font-family: var(--thm-font);
  text-transform: capitalize;
}

.projects-two__tabs-content-img .overlay-content ul li .text-box p {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
}

.projects-two__tabs-content-img .overlay-content ul li .text-box p::before {
  position: absolute;
  width: 25px;
  height: 1px;
  background: #ffffff;
  bottom: 6px;
  right: -40px;
  content: "";
}

.projects-two__tabs-content-img .overlay-content ul li .number-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-left: 40px;
}

.projects-two__tabs-content-img .overlay-content ul li .number-box span {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.projects-two__counter {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.projects-two__counter-img {
  position: absolute;
  top: -120px;
  left: 200px;
  bottom: 30px;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1;
}

.projects-two__counter-box {
  position: absolute;
  left: 110px;
  bottom: 0;
  background: #ffffff;
  box-shadow: 0px 2px 30px 0px rgb(9, 24, 84, 0.08);
  padding: 45px 70px 50px;
  z-index: 5;
}

.projects-two__counter-box ul {
  position: relative;
  display: block;
}

.projects-two__counter-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 50px;
}

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

.projects-two__counter-box ul li h2 {
  position: relative;
  color: var(--thm-black);
  font-size: 50px;
  line-height: 0.9em;
  font-weight: 600;
  letter-spacing: -0.08em;
  font-family: var(--thm-font);
}

.projects-two__counter-box ul li h2 .plus {
  position: absolute;
  top: -9px;
  color: var(--thm-black);
  font-size: 28px;
}

.projects-two .odometer.odometer-auto-theme,
.projects-two .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 0.9em;
}

.projects-two__counter-box ul li p {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 5px;
}

.projects-two__counter-box ul li .border-box {
  position: relative;
  display: block;
  width: 180px;
  height: 4px;
  background: var(--thm-base);
  margin-top: 32px;
}


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

.team-one__single {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom-right-radius: 120px;
  margin-bottom: 30px;
  z-index: 1;
}

.team-one__single .shape1 {
  position: absolute;
  bottom: 10px;
  right: 0;
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  z-index: -1;
}

.team-one__single:hover .shape1 {
  opacity: 0.4;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.team-one__single::before {
  position: absolute;
  top: 135px;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--thm-black);
  opacity: 0;
  content: "";
  z-index: -1;
  border-bottom-right-radius: 120px;
}

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

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

.team-one__single-img .text-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 30px;
  bottom: -20px;
  width: 165px;
  height: 55px;
  z-index: 9;
}

.team-one__single-img .text-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}

.team-one__single-img .inner {
  position: relative;
  display: block;
  border-radius: 50%;
  border-bottom-right-radius: 0px;
  overflow: hidden;
}

.team-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-primary-rgb), 0.4);
  opacity: 0;
  z-index: 1;
  content: "";
}

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

.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 .inner .social-links {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 5;
}

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

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

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

.team-one__single-img .inner .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  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 .inner .social-links>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

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

.team-one__single-img .inner .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: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.team-one__single-img .inner .social-links .share .social-links-inner {
  position: absolute;
  top: -135px;
  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;
}

.team-one__single-img .inner .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 .inner .social-links .share .social-links-inner li {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

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

.team-one__single-img .inner .social-links .share .social-links-inner li a {
  position: relative;
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.team-one__single-img .inner .social-links .share .social-links-inner li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 50%;
  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 .inner .social-links .share .social-links-inner li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

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

.team-one__single-img .inner .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: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-img .inner .social-links .share .social-links-inner li a:hover i::before {
  color: #ffffff;
}

.team-one__single-content {
  position: relative;
  display: block;
  padding: 32px 30px 30px;
}

.team-one__single-content h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
}

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

.team-one__single:hover .team-one__single-content h3 a {
  color: #ffffff;
}

/***
=====================================================
Brand Two
=====================================================
***/
.brand-one--two {
  position: relative;
  display: block;
  padding: 75px 0px 76px;
  z-index: 3;
}

.brand-one--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;
}

.brand-one--two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-black);
  opacity: 0.93;
  content: "";
  z-index: -2;
}

.brand-one.brand-one--two .swiper-slide img {
  opacity: 0.7;
}

.brand-one.brand-one--two .swiper-slide:hover img {
  opacity: 1;
}

/***
=====================================================
Work Process Two
=====================================================
***/
.work-process-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  counter-reset: count;
  z-index: 1;
}

.work-process-two .shape1 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.06;
  z-index: -1;
}

.work-process-two .shape2 {
  position: absolute;
  top: 330px;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  opacity: 0.4;
  z-index: -1;
}

.work-process-two__single {
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 35px 10px 28px;
  margin-bottom: 30px;
}

.work-process-two__single.mb50 {
  margin-top: 50px;
}

.work-process-two__single.mb25 {
  margin-top: 25px;
}

.work-process-two__single-icon {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.work-process-two__single-icon .count-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  border: 2px dashed var(--thm-base);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--thm-font);
  font-weight: 500;
  letter-spacing: -0.02em;
  z-index: 3;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

.work-process-two__single-icon .count-box::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  transition: all 400ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.work-process-two__single:hover .work-process-two__single-icon .count-box::after {
  background: #ffffff;
}

.work-process-two__single.style2 .work-process-two__single-icon .count-box {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0px;
}

.work-process-two__single:hover .work-process-two__single-icon .count-box {
  background: #ffffff;
  color: var(--thm-black);
}

.work-process-two__single-icon .count-box::before {
  counter-increment: count;
  content: "0"counter(count);
}

.work-process-two__single-icon .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border: 3px dashed var(--thm-base);
  border-radius: 50%;
  z-index: 1;
}

.work-process-two__single-icon .inner::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;
}

.work-process-two__single:hover .work-process-two__single-icon .inner::before {
  transform: scale(1.0);
  opacity: 1;
}

.work-process-two__single-icon .inner span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 70px;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

.work-process-two__single:hover .work-process-two__single-icon .inner span:before {
  color: #ffffff;
}

.work-process-two__single-content {
  position: relative;
  display: block;
  margin-top: 22px;
}

.work-process-two__single-content h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  font-family: var(--thm-font);
  margin-bottom: 5px;
}

.work-process-two__single-content h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.work-process-two__single-content h3 a:hover {
  color: var(--thm-base);
}

.work-process-two__single-content p {
  font-size: 14px;
  line-height: 24px;
}


/***
=====================================================
Pricing Table One
=====================================================
***/
.pricing-table-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.pricing-table-one .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
  z-index: 1;
}

.pricing-table-one .shape2 {
  position: absolute;
  bottom: -20px;
  right: 0;
  opacity: 0.15;
  z-index: 1;
}

.pricing-table-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-table-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.94);
  content: "";
  z-index: -1;
}

.pricing-table-one .sec-title.style2 .sec-title__tagline h6 {
  color: #ffffff;
}

.pricing-table-one .sec-title__title {
  color: #ffffff;
}


.pricing-table-one__inner {
  position: relative;
  display: block;
}

.pricing-table-one__single {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-table-one__single-left {
  position: relative;
  display: block;
  max-width: 280px;
  width: 100%;
  background: var(--thm-primary);
  padding: 34px 20px 32px;
}

.pricing-table-one__single-left::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #ffffff;
  content: "";
}

.pricing-table-one__single-left .top-content {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.pricing-table-one__single-left .top-content .title {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 7px;
  padding-bottom: 7px;
}

.pricing-table-one__single-left .top-content .title h3 {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.pricing-table-one__single-left .top-content .text-box {
  position: relative;
  display: block;
}

.pricing-table-one__single-left .top-content .text-box h2 {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
}

.pricing-table-one__single-left .top-content .text-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}

.pricing-table-one__single-left .img-box {
  position: relative;
  display: block;
}

.pricing-table-one__single-left .img-box img {
  width: auto;
  text-align: center;
  margin: 0 auto;
}

.pricing-table-one__single-left .bottom-content {
  position: relative;
  display: block;
  margin-top: 27px;
}

.pricing-table-one__single-left .bottom-content h2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.pricing-table-one__single-left .bottom-content h2 span {
  position: relative;
  display: inline-block;
  top: -7px;
  font-size: 26px;
}

.pricing-table-one__single-right {
  position: relative;
  display: block;
  max-width: 260px;
  width: 100%;
  background: #ffffff;
  padding: 40px 30px 33px;
}

.pricing-table-one__single-right ul {
  position: relative;
  display: block;
}

.pricing-table-one__single-right ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--thm-primary-rgb), 0.1);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.pricing-table-one__single-right ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.pricing-table-one__single-right ul li p {
  position: relative;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 15px;
}

.pricing-table-one__single-right ul li p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--thm-primary);
  border-radius: 50%;
  content: "";
}

.pricing-table-one__single-right-btn {
  position: relative;
  display: block;
  margin-top: 36px;
  line-height: 0;
}

.pricing-table-one__single-right-btn a {
  position: relative;
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font);
  border: 1px solid #e2dfda;
  padding: 9px 35px 9px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.pricing-table-one__single-right-btn a:hover {
  border-color: var(--thm-base);
  color: #ffffff;
}

.pricing-table-one__single-right-btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--thm-base);
  transition: all 400ms linear;
  transition-delay: 0.1s;
  content: "";
  z-index: -1;
}

.pricing-table-one__single-right-btn a:hover::before {
  width: 100%;
}


.pricing-table-one .owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  top: -125px;
  right: 40px;
  z-index: 5;
}

.pricing-table-one .owl-carousel .owl-nav button.owl-prev,
.pricing-table-one .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .5);
  font-size: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-table-one .owl-carousel .owl-nav button.owl-prev span:before,
.pricing-table-one .owl-carousel .owl-nav button.owl-next span:before {
  font-weight: 700;
}

.pricing-table-one .owl-carousel .owl-nav button.owl-prev:hover,
.pricing-table-one .owl-carousel .owl-nav button.owl-next:hover {
  border-color: #ffffff;
  color: #ffffff;
}


/***
=====================================================
Testimonilas Two
=====================================================
***/
.testimonilas-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonilas-two__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.1;
  z-index: -1;
}

.testimonilas-two__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 660px;
}

.testimonilas-two .shape1 {
  position: absolute;
  left: 0;
  bottom: 190px;
  opacity: 0.06;
  z-index: -1;
}

.testimonilas-two .sec-title {
  padding-bottom: 49px;
}

.testimonilas-two__inner {
  position: relative;
  display: block;
  max-width: 965px;
  width: 100%;
}

.testimonilas-two__single {
  position: relative;
  display: block;
  background: var(--thm-black);
  padding: 33px 30px 45px;
  z-index: 1;
}

.testimonilas-two__single:before {
  position: absolute;
  right: 155px;
  bottom: -35px;
  border-right: 35px solid var(--thm-black);
  border-bottom: 35px solid transparent;
  border-left: 35px solid transparent;
  content: "";
  z-index: 5;
  overflow: hidden;
  transition: all 0.4s linear;
}

.testimonilas-two__single:hover:before {
  border-right: 35px solid var(--thm-base);
}

.testimonilas-two__single:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--thm-base);
  border-radius: 0px;
  opacity: 0;
  content: "";
  z-index: -1;
}

.testimonilas-two__single:hover:after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.testimonilas-two__single-top {
  position: relative;
  display: block;
}

.testimonilas-two__single-top p {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.testimonilas-two__single-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 30px;
  margin-top: 23px;
}

.testimonilas-two__single-bottom .left-box {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonilas-two__single-bottom .left-box .img-box {
  position: relative;
  display: block;
}

.testimonilas-two__single-bottom .left-box .img-box .inner {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.testimonilas-two__single-bottom .left-box .img-box .inner img {
  width: 100%;
}

.testimonilas-two__single-bottom .left-box .img-box .icon-box {
  position: absolute;
  bottom: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 2px solid var(--thm-base);
  background: var(--thm-black);
  border-radius: 50%;
  transition: all 0.4s linear;
}

.testimonilas-two__single-bottom .left-box .img-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
}

.testimonilas-two__single-bottom .left-box .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonilas-two__single-bottom .left-box .text-box h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.testimonilas-two__single-bottom .left-box .text-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.testimonilas-two__single-bottom .right-box {
  position: relative;
  display: block;
}

.testimonilas-two__single-bottom .right-box .rating-box ul li span {
  color: rgba(255, 255, 255, .8);
}

.testimonilas-two__single-bottom .right-box p {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}


.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  padding-bottom: 50px;
}

.testimonial-two__carousel.owl-carousel .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  max-width: 240px;
  margin: 0 auto !important;
  background: rgba(var(--thm-black-rgb), 0.1);
  border-radius: 15px;
  height: 10px;
  line-height: 10px;
  overflow: hidden;
  margin-top: 50px !important;
}

.testimonial-two__carousel.owl-carousel .owl-dots button {
  position: relative;
  display: inline-block;
  background: transparent;
  width: 50%;
  height: 10px;
  float: left;
  background: transparent;
  border-radius: 15px;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-dots button.active,
.testimonial-two__carousel.owl-carousel .owl-dots button:hover {
  background: var(--thm-base);
}

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


/***
=======================================================
Blog Two
=======================================================
***/
.blog-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-two__single-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-two__single-img::before {
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  right: 0%;
  content: '';
  background-color: rgba(var(--thm-base-rgb), .70);
  transform: scaleY(1.0);
  opacity: 0;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  z-index: 1;
}

.blog-two__single:hover .blog-two__single-img::before {
  opacity: 0.70;
  transform: scaleY(1.0);
}

.blog-two__single-img img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
}

.blog-two__single:hover .blog-two__single-img img {
  transform: scale(1.1) rotate(1deg);
}

.blog-two__single-content {
  position: relative;
  display: block;
  padding-top: 40px;
  margin-top: -130px;
  margin-right: 35px;
  z-index: 6;
}

.blog-two__single-content .inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 78px 25px 35px;
}

.blog-two__single-content .date-box {
  position: absolute;
  top: 0;
  left: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 5px;
  text-align: center;
  z-index: 1;
}

.blog-two__single-content .date-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 5px;
  content: "";
  z-index: -1;
  transform: rotate(45deg);
}

.blog-two__single-content .date-box h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.blog-two__single-content .date-box h3 span {
  font-size: 14px;
}

.blog-two__single-content h2 {
  position: relative;
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
  padding-bottom: 27px;
}

.blog-two__single-content h2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: var(--thm-primary);
  content: "";
}

.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 .tagline {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--thm-black);
  padding: 2px 25px 4px;
}

.blog-two__single-content .tagline span {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  text-transform: capitalize;
}


/***
=====================================================
Features Two
=====================================================
***/
.features-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.features-two__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 350px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.4;
  z-index: -1;
}

.features-two .auto-container {
  max-width: 1460px;
  width: 100%;
}

.features-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.features-two__single-content {
  position: relative;
  display: block;
}

.features-two__single-content .count-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--thm-primary);
  color: #ffffff;
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  font-family: var(--thm-font);
  z-index: 2;
}

.features-two__single-content .inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(138, 141, 146, 0.2);
  padding: 40px 35px 30px;
}

.features-two__single-content .inner .icon-box {
  position: relative;
  display: block;
}

.features-two__single-content .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 60px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.features-two__single:hover .features-two__single-content .inner .icon-box span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.features-two__single-content .inner .content-box {
  position: relative;
  display: block;
}

.features-two__single-content .inner .content-box .title {
  position: relative;
  display: inline-block;
  margin-top: 13px;
  margin-bottom: 6px;
}

.features-two__single-content .inner .content-box .title::before {
  position: absolute;
  right: -40px;
  bottom: 13px;
  width: 30px;
  height: 3px;
  background: var(--thm-black);
  content: "";
}

.features-two__single-content .inner .content-box .title h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  text-transform: capitalize;
}

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

.features-two__single-content .inner .content-box .title h2 a:hover {
  color: var(--thm-base);
}

.features-two__single-content .inner .content-box p {
  margin: 0px;
}

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

.features-two__single-img:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: var(--thm-black);
  z-index: 1;
  opacity: 0.7;
  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;
}

.features-two__single:hover .features-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;
}

.features-two__single-img img {
  width: 100%;
  transition: all 700ms ease;
}

.features-two__single:hover .features-two__single-img img {
  transform: scaleY(1.1);
}

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

.about-three__bg {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0px;
  background-blend-mode: luminosity;
  background: #ffffff;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 810px;
  opacity: 0.06;
  z-index: -1;
}

.about-three__counter {
  position: relative;
  display: block;
  margin-right: -10px;
  padding-top: 10px;
}

.about-three__counter ul {
  position: relative;
  display: block;
}

.about-three__counter ul li {
  position: relative;
  display: block;
  text-align: right;
  border-bottom: 2px solid #dbe5e0;
  padding-bottom: 32px;
  margin-top: 31px;
}

.about-three__counter ul li:last-child {
  border: none;
}

.about-three__counter ul li h2 {
  color: var(--thm-primary);
  font-size: 42px;
  line-height: 52px;
  font-weight: 600;
  font-family: var(--thm-font);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

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

.about-three__counter ul li h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.about-three__counter ul li p {
  font-size: 14px;
  line-height: 26px;
}

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

.about-three__img-shape1 {
  position: absolute;
  top: 70px;
  left: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgb(0, 0, 0, 0.14);
  z-index: 2;
}

.about-three__img-shape1 img {
  width: auto;
}

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

.about-three__img .inner img {
  width: 100%;
}

.about-three__content {
  position: relative;
  display: block;
  margin-left: 50px;
  margin-top: 40px;
}

.about-three__content .sec-title-three {
  margin-bottom: 28px;
}

.about-three__content-text1 {
  position: relative;
  display: block;
}

.about-three__content-text1 p {
  margin: 0;
}

.about-three__content-text2 {
  position: relative;
  display: block;
  margin-top: 16px;
}

.about-three__content-text2 .single-box {
  position: relative;
  display: block;
}

.about-three__content-text2 .single-box ul {
  position: relative;
  display: block;
}

.about-three__content-text2 .single-box ul li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.about-three__content-text2 .single-box ul li:last-child {
  margin-bottom: 0;
}

.about-three__content-text2 .single-box ul li h4 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.about-three__content-text2 .single-box ul li h4 span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 16px;
  top: 2px;
  padding-right: 10px;
}

/***
=====================================================
Services Three
=====================================================
***/
.services-three {
  position: relative;
  display: block;
  padding: 120px 0px 240px;
  overflow: hidden;
  z-index: 1;
}

.services-three .shape2 {
  position: absolute;
  top: 10px;
  left: 0;
  opacity: 0.21;
  z-index: 1;
}

.services-three .shape3 {
  position: absolute;
  bottom: 30px;
  right: 0;
  opacity: 0.21;
  z-index: 1;
}

.services-three__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;
}

.services-three__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.92);
  content: "";
  z-index: -2;
}

.services-three__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.services-three__top .sec-title-three {
  margin-bottom: 0px;
  max-width: 490px;
  width: 100%;
  text-align: right;
}

.services-three .sec-title-three__tagline h6 {
  color: #ffffff;
}

.services-three__top .sec-title-three__tagline::before {
  background: #ffffff;
}

.services-three__top .sec-title-three__title {
  color: #ffffff;
}

.services-three__top-text {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
  padding-left: 35px;
  margin-left: 35px;
}

.services-three__top-text::before {
  position: absolute;
  top: -29px;
  left: 0;
  bottom: -18px;
  background: rgba(255, 255, 255, .2);
  width: 2px;
  content: "";
}

.services-three__top-text p {
  margin: 0;
}

.services-three__single {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 45px 30px 35px;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.services-three__single .shape1 {
  position: absolute;
  top: 0;
  left: -10px;
  width: 170px;
  height: 170px;
  background: #edf4f1;
  border-radius: 50%;
}

.services-three__single-icon {
  position: relative;
  display: block;
  width: 120px;
  margin-bottom: 32px;
}

.services-three__single-icon .icon {
  position: absolute;
  right: -5px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--thm-primary);
  border: 5px solid #ffffff;
  border-radius: 50%;
}

.services-three__single-icon .icon span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}

.services-three__single-icon .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--thm-black);
  border-radius: 50%;
}

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

.services-three__single:hover .services-three__single-icon .inner span::before {
  transform: scale(0.9);
}

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

.services-three__single-content .title {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 17px;
}

.services-three__single-content .title::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--thm-primary);
  content: "";
}

.services-three__single-content .title h2 {
  position: relative;
  font-size: 21px;
  line-height: 31px;
  font-weight: 400;
  text-transform: capitalize;
}

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

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

.services-three__single-content p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
}

.services-three__single-content .bottom-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.services-three__single-content .bottom-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.services-three__single-content .bottom-box .btn-box a {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-three__single-content .bottom-box .btn-box a:hover {
  color: var(--thm-base);
}

.services-three__single-content .bottom-box .btn-box a::before {
  position: absolute;
  bottom: 10px;
  right: -75px;
  width: 60px;
  height: 1px;
  background: #e8e6e5;
  content: "";
}

.services-three__single-content .bottom-box .count-box {
  position: relative;
  display: block;
  line-height: 0;
}

.services-three__single-content .bottom-box .count-box span {
  color: transparent;
  -webkit-text-stroke: 1px #c3c5c7;
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
}


/***
=====================================================
Counter One
=====================================================
***/
.counter-one {
  position: relative;
  display: block;
  margin-top: -160px;
  z-index: 5;
}

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

.counter-one__inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgb(0, 0, 0, 0.08);
  padding: 102px 0px 71px;
}

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

.counter-one__single {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.counter-one__box li.counter-one__single {
  position: relative;
  display: inline-block;
  margin-right: 50px;
  padding-right: 50px;
}

.counter-one__box li:last-child.counter-one__single {
  margin-right: 0px;
  padding-right: 0px;
}

.counter-one__single::before {
  position: absolute;
  top: -22px;
  right: 0;
  bottom: -21px;
  background: rgba(var(--thm-primary-rgb), 0.25);
  width: 2px;
  content: "";
}

.counter-one__single:last-child:before {
  display: none;
}

.counter-one__single-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__single-inner .icon-box {
  position: relative;
  display: block;
}

.counter-one__single-inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 65px;
  line-height: 65px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-inner .icon-box span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.counter-one__single-inner .content-box {
  position: relative;
  display: block;
  margin-left: 16px;
}

.counter-one__single-inner .content-box h2 {
  position: relative;
  color: var(--thm-black);
  font-size: 38px;
  line-height: 42px;
  font-weight: 600;
  font-family: var(--thm-font);
  letter-spacing: -0.09em;
}

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

.counter-one__single-inner .content-box h2 .plus {
  position: absolute;
  top: -6px;
  color: var(--thm-black);
  font-size: 23px;
}

.counter-one__single-inner .content-box h3 {
  color: var(--thm-gray);
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
}


/***
=====================================================
Faq Two
=====================================================
***/
.faq-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 235px 0px 120px;
  margin-top: -115px;
  overflow: hidden;
  z-index: 1;
}

.faq-two .shape1 {
  position: absolute;
  top: 0;
  right: 30px;
  opacity: 0.15;
  z-index: -1;
}

.faq-two__accordion {
  position: relative;
  display: block;
  margin-right: -20px;
}

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

.faq-two__accordion .accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
  border: 1px solid #e8e8e9;
  background: #ffffff;
}

.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;
  transition: all 500ms ease;
  padding-top: 24px;
  padding-left: 35px;
  padding-bottom: 23px;
  padding-right: 35px;
}

.faq-two__accordion .accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font);
  transition: all 500ms ease;
}

.faq-two__accordion .accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 50%;
  right: 35px;
  width: 20px;
  height: 20px;
  color: var(--thm-black);
  font-size: 18px;
  text-align: right;
  line-height: 20px;
  font-weight: 700;
  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: var(--thm-black);
  transform: translateY(-50%) rotate(0deg);
}

.faq-two__accordion .accordion-box .block .acc-btn .icon-outer i:before {
  font-weight: 700;
}

.faq-two__accordion .accordion-box .block .acc-btn.active .icon-outer i:before {
  position: relative;
  font-size: 18px;
  font-family: 'icomoon' !important;
  font-weight: 700;
  margin: 0px;
  content: "\e938";
}

.faq-two__accordion .accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 0px;
  padding-left: 35px;
  padding-bottom: 34px;
  padding-right: 40px;
  border-top: 0px solid #bdc0c2;
}

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

.faq-two__accordion .accordion-box .block .acc-content p {
  margin: 0;
  color: var(--thm-gray);
  font-weight: 400;
  font-size: 14px;
}

.faq-two__content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.faq-two__content-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.faq-two__content-img img {
  width: 100%;
}

.faq-two__content-bottom {
  position: relative;
  display: block;
  padding-top: 10px;
}

.faq-two__content-bottom-inner {
  position: relative;
  display: block;
  margin-top: 32px;
}

.faq-two__content-bottom .experience-box {
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  z-index: 1;
}

.faq-two__content-bottom .experience-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  content: "";
  z-index: -1;
  transform: rotate(45deg);
}

.faq-two__content-bottom .experience-box::after {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  background: #ffffff;
  content: "";
  z-index: -2;
  transform: rotate(45deg);
}

.faq-two__content-bottom .experience-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.faq-two__content-bottom .experience-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 55px;
}

.faq-two__content-bottom .experience-box .text-box {
  position: relative;
  display: block;
}

.faq-two__content-bottom .experience-box .text-box h3 {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.faq-two__content-bottom .experience-box .text-box h3 span {
  font-size: 30px;
}

.faq-two__content-bottom .experience-box .text-box h3 .plus {
  position: relative;
  margin-top: -2px;
  margin-left: -3px;
  font-size: 20px;
}

.faq-two__content-list {
  position: relative;
  display: block;
  max-width: 220px;
  float: left;
}

.faq-two__content-list.style2 {
  float: right;
}

.faq-two__content-list li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(var(--thm-primary-rgb), 0.1);
  padding-top: 21px;
  padding-bottom: 23px;
}

.faq-two__content-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-two__content-list li:first-child {
  padding-top: 0;
}

.faq-two__content-list li .icon-box {
  position: relative;
  display: block;
}

.faq-two__content-list li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 16px;
  line-height: 16px;
}

.faq-two__content-list li .text-box {
  position: relative;
  display: block;
  margin-left: 18px;
}

.faq-two__content-list li .text-box p {
  color: var(--thm-black);
  font-size: 13px;
  line-height: 23px;
  font-weight: 400;
}

/***
=====================================================
Team Two
=====================================================
***/
.team-two {
  position: relative;
  display: block;
  background: #f4f9f5;
  padding: 120px 0px 90px;
  overflow: hidden;
  z-index: 1;
}

.team-two .shape1 {
  position: absolute;
  top: 0;
  left: 50px;
  opacity: 0.15;
  z-index: -1;
}

.team-two .shape2 {
  position: absolute;
  bottom: -120px;
  right: -30px;
  opacity: 0.15;
  z-index: -1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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

.team-two__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: "";
}

.team-two__single:hover .team-two__single-img:before {
  opacity: 1;
}

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

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

.team-two__single-content {
  position: relative;
  display: block;
  text-align: right;
  padding: 42px 25px 23px;
  margin-top: -38px;
  z-index: 6;
}

.team-two__single-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -1px;
  clip-path: polygon(0 27%, 100% 0, 100% 100%, 0 100%);
  background: #ffffff;
  content: "";
  z-index: -1;
}

.team-two__single-content::after {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  bottom: 20px;
  background: var(--thm-primary);
  clip-path: polygon(0 31%, 100% 0, 100% 100%, 0 100%);
  content: "";
  z-index: -2;
}

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

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

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

.team-two__single-content p {
  color: var(--thm-primary);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
}


.team-two__single-img .social-links {
  position: absolute;
  bottom: 36px;
  right: 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: 40px;
  height: 50px;
  background: var(--thm-primary);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 1;
}

.team-two__single-img .social-links>li>a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-black);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  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>li>a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.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: -1px;
  color: #ffffff;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  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: -135px;
  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;
}

.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: 5px;
}

.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: block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  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: var(--thm-black);
  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-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 {
  position: relative;
  display: block;
}

.team-two__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: 400;
  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;
}

/***
=====================================================
Pricing Table Two
=====================================================
***/
.pricing-table-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 128px;
  z-index: 1;
}

.pricing-table-two .sec-title-three {
  margin-bottom: 71px;
}

.pricing-table-two__single {
  position: relative;
  display: block;
  padding-top: 18px;
  margin-bottom: 52px;
}

.pricing-table-two__single .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  z-index: 2;
}

.pricing-table-two__single .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  transform: rotate(45deg);
  content: "";
  z-index: -1;
}

.pricing-table-two__single .icon-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-black);
  border-radius: 0px;
  transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  z-index: -1;
}

.pricing-table-two__single:hover .icon-box:after {
  opacity: 1;
}

.pricing-table-two__single .icon-box img {
  width: auto;
}

.pricing-table-two__single-inner {
  position: relative;
  display: block;
  background: #f4f9f5;
  padding: 136px 30px 27px;
  overflow: hidden;
  z-index: 1;
}

.pricing-table-two__single-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--thm-primary);
  border-radius: 0px;
  opacity: 0;
  content: "";
  z-index: -1;
}

.pricing-table-two__single:hover .pricing-table-two__single-inner::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.pricing-table-two__single-inner .top-content {
  position: relative;
  display: block;
}

.pricing-table-two__single-inner .top-content h2 {
  color: var(--thm-black);
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 4px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-table-two__single:hover .pricing-table-two__single-inner .top-content h2 {
  color: #ffffff;
}

.pricing-table-two__single-inner .top-content h3 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 4px;
}

.pricing-table-two__single-inner .top-content h3 a {
  color: var(--thm-primary);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-table-two__single:hover .pricing-table-two__single-inner .top-content h3 a {
  color: #ffffff;
}

.pricing-table-two__single-inner .top-content p {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-table-two__single:hover .pricing-table-two__single-inner .top-content p {
  color: #ffffff;
}

.pricing-table-two__single-inner .bottom-content {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--thm-primary-rgb), 0.1);
  padding-top: 18px;
  margin-top: 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-table-two__single:hover .pricing-table-two__single-inner .bottom-content {
  border-color: rgba(255, 255, 255, .3);
}

.pricing-table-two__single-inner .bottom-content p {
  font-size: 14px;
  line-height: 26px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-table-two__single:hover .pricing-table-two__single-inner .bottom-content p {
  color: #ffffff;
}

.pricing-table-two__single .btn-box {
  position: relative;
  display: block;
}

.pricing-table-two__single .btn-box a {
  position: relative;
  display: block;
  background: var(--thm-primary);
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 50px;
  font-weight: 500;
  text-transform: capitalize;
  z-index: 1;
}

.pricing-table-two__single .btn-box a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--thm-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  content: "";
  z-index: -1;
}

.pricing-table-two__single:hover .btn-box a::before {
  width: 100%;
}


/***
=====================================================
Projects Three
=====================================================
***/
.projects-three {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.projects-three__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;
}

.projects-three__bg-two {
  position: absolute;
  top: -60px;
  left: 0;
  width: 500px;
  height: 780px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 1;
}

.projects-three__bg-two-content {
  position: absolute;
  left: 0;
  bottom: -70px;
  right: 0;
  text-align: center;
}

.projects-three__bg-two-content li {
  position: relative;
  display: inline-block;
  background: #ffffff;
  border-radius: 10px;
  padding: 50px 50px 42px;
  margin-right: 16px;
}

.projects-three__bg-two-content li:last-child {
  margin-right: 0;
}

.projects-three__bg-two-content li .icon-box {
  position: relative;
  display: block;
}

.projects-three__bg-two-content li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 60px;
}

.projects-three__bg-two-content li .title-box {
  position: relative;
  display: block;
  margin-top: 32px;
}

.projects-three__bg-two-content li .title-box h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
}

.projects-three__bg-two-content li .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-three__bg-two-content li .title-box h2 a:hover {
  color: var(--thm-base);
}

.projects-three__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.9);
  content: "";
  z-index: -2;
}

.projects-three__inner {
  position: relative;
  display: block;
  padding-left: 170px;
  width: 1550px;
}

.projects-three__inner .sec-title-three__tagline h6 {
  color: #ffffff;
}

.projects-three__inner .sec-title-three__tagline::before {
  background: #ffffff;
}

.projects-three__inner .sec-title-three__title {
  color: #ffffff
}

.projects-three__single {
  position: relative;
  display: block;
}

.projects-three__single.mt45 {
  margin-top: 45px;
}

.projects-three__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.projects-three__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-base-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.projects-three__single:hover .projects-three__single-img::before {
  opacity: 1;
}

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

.projects-three__single:hover .projects-three__single-img img {
  transform: scale(1);
}

.projects-three__single-img .overlay-content {
  position: absolute;
  top: 100px;
  left: 0;
  bottom: 100px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  width: max-content;
  text-align: center;
  padding: 0px 23px 0px 19px;
  z-index: 5;
  -webkit-transform: perspective(400px) rotateY(40deg) scaleY(0.7);
  -ms-transform: perspective(400px) rotateY(40deg) scaleY(0.7);
  transform: perspective(400px) rotateY(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;
}

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

.projects-three__single-img .overlay-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-primary-rgb), 0.9);
  clip-path: polygon(0 0, 100% 5%, 100% 94%, 0% 100%);
  content: "";
}

.projects-three__single-img .overlay-content h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  width: max-content;
  text-align: center;
}

.projects-three__single-img .overlay-content h2 a {
  color: #ffffff;
}

.projects-three__carousel.owl-carousel .owl-nav.disabled {
  display: block;
}

.projects-three .owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  top: -120px;
  right: 27%;
  z-index: 5;
}

.projects-three .owl-carousel .owl-nav button.owl-prev,
.projects-three .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 0%;
  background-color: #ffffff;
  color: var(--thm-black);
  font-size: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-three .owl-carousel .owl-nav button.owl-prev span:before,
.projects-three .owl-carousel .owl-nav button.owl-next span:before {
  font-weight: 700;
}

.projects-three .owl-carousel .owl-nav button.owl-prev:hover,
.projects-three .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--thm-primary);
  color: #ffffff;
}

.projects-three-brand {
  position: relative;
  display: block;
  padding: 144px 0 0px;
  z-index: 2;
}

.projects-three-brand .auto-container {
  max-width: 1530px;
  width: 100%;
}

.projects-three-brand .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;
  transition: .5s ease;
}

.projects-three-brand .swiper-slide img {
  transition: .5s ease;
  transform: scale(1.01);
  opacity: 0.7;
  width: auto;
}

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


/***
=====================================================
Testimonials Three
=====================================================
***/
.testimonials-three {
  position: relative;
  display: block;
  background: #f4f9f5;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonials-three .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: -1;
}

.testimonials-three__left {
  position: relative;
  display: block;
  margin-right: -30px;
}

.testimonials-three__left .sec-title-three {
  margin-bottom: 22px;
}

.testimonials-three__left-text {
  position: relative;
  display: block;
}

.testimonials-three__left-text p {
  margin: 0;
}

.testimonials-three__left-list {
  position: relative;
  display: block;
  margin-top: 19px;
}

.testimonials-three__left-list li {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--thm-primary);
  border-radius: 10px;
  padding: 20px 20px 20px;
  max-width: 300px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 15px;
}

.testimonials-three__left-list li:last-child {
  margin-bottom: 0;
}

.testimonials-three__left-list li .shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: -1;
}

.testimonials-three__left-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
}

.testimonials-three__left-list li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 16px;
}

.testimonials-three__left-list li .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonials-three__left-list li .text-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.testimonials-three__right-content {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  float: right;
}

.testimonials-three__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(139, 130, 125, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.testimonials-three__single-inner {
  position: relative;
  display: block;
  padding: 32px 50px 0px;
  padding-right: 45px;
}

.testimonials-three__single-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.testimonials-three__single-top .name {
  position: relative;
  display: block;
}

.testimonials-three__single-top .name h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
}

.testimonials-three__single-top .rating-box {
  position: relative;
  display: block;
}

.testimonials-three__single-top .rating-box ul li span {
  color: var(--thm-primary);
}

.testimonials-three__single-middle {
  position: relative;
  display: block;
  margin-top: 17px;
}

.testimonials-three__single-middle .text-box {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.testimonials-three__single-middle .text-box p {
  margin: 0;
}

.testimonials-three__single-middle .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 50%;
  margin-bottom: 56px;
  z-index: 1;
}

.testimonials-three__single-middle .img-box::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -20px;
  right: -15px;
  background: var(--thm-black);
  content: "";
  z-index: -1;
  border-radius: 50%;
}

.testimonials-three__single-middle .img-box .icon-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(139, 130, 125, 0.2);
  border-radius: 50%;
  z-index: 2;
  right: -50px;
  margin: 0 auto;
}

.testimonials-three__single-middle .img-box .icon-box span:before {
  color: var(--thm-primary);
  font-size: 25px;
}

.testimonials-three__single-middle .img-box .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  z-index: 1;
}

.testimonials-three__single-middle .img-box .inner::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border: 5px dotted #ffffff;
  border-radius: 50%;
  content: "";
}

.testimonials-three__single-middle .img-box .inner img {
  width: 100%;
}

.testimonials-three__single-bottom {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 18px 50px 18px;
  text-align: center;
}

.testimonials-three__single-bottom p {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.testimonials-three__right {
  position: relative;
  display: block;
}

.testimonials-three__thumb-outer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 130px;
  width: 100%;
  background: var(--thm-black);
  padding: 20px 15px 20px;
  z-index: 5555;
  height: 495px;
}

.gallery-thumbs {
  position: absolute;
  height: 495px;
}


.gallery-thumbs .swiper-slide {
  height: 100px !important;
  cursor: pointer;
}


.testimonials-three__img {
  position: relative;
  display: block;
}

.testimonials-three__img .inner {
  position: relative;
  display: block;
}

.testimonials-three__img .inner img {
  width: 100%;
}

#testimonials-three__thumb .swiper-slide {
  position: relative;
  display: block;
  width: 100px;
  height: 100px !important;
}



/***
=====================================================
Blog Three
=====================================================
***/
.blog-three {
  position: relative;
  display: block;
  background: #ffffff;
  overflow: hidden;
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-three .shape1 {
  position: absolute;
  top: -200px;
  right: 15px;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  z-index: -1;
}

.blog-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}


.blog-three__single-img {
  position: relative;
  display: block;
}

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

.blog-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: "";
}

.blog-three__single:hover .blog-three__single-img .inner::before {
  opacity: 1;
}

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

.blog-three__single:hover .blog-three__single-img .inner img {
  transform: scale(1);
}

.blog-three__single-content {
  position: relative;
  display: block;
  padding-top: 32px;
  margin-left: 30px;
  margin-top: -152px;
  z-index: 5;
}

.blog-three__single-content .img-box {
  position: absolute;
  top: 0;
  left: 25px;
  width: 65px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.blog-three__single-content .img-box img {
  width: 100%;
}

.blog-three__single-content .date-box {
  position: absolute;
  top: 18px;
  left: 60px;
  background: var(--thm-primary);
  padding: 5px 15px 4px;
  border-radius: 12px;
  z-index: 6;
}

.blog-three__single-content .date-box p {
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-three__single-content-inner {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(139, 130, 125, 0.15);
  padding: 56px 25px 31px;
  z-index: 1;
}

.blog-three__single-content-inner h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

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

.blog-three__single-content-inner h2 a:hover {
  color: var(--thm-primary);
}

.blog-three__single-content-inner .meta-box {
  position: relative;
  display: block;
  border-top: 1px solid #e8e6e5;
  margin-top: 22px;
  padding-top: 20px;
}

.blog-three__single-content-inner .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 30px;
}

.blog-three__single-content-inner .meta-box li:last-child {
  margin-right: 0px;
}

.blog-three__single-content-inner .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-three__single-content-inner .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
  top: 1px;
}

.blog-three__single-content-inner .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 10px;
  margin-top: 0;
}

.blog-three__single-content-inner .meta-box li .text p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin: 0;
}

.blog-three__single-content-inner .meta-box li .text p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-three__single-content-inner .meta-box li .text p a:hover {
  color: var(--thm-base);
}


/***
=====================================================
Free Quote One
=====================================================
***/
.free-quote-one {
  position: relative;
  display: block;
  background: #f4f9f5;
  padding: 0px 0px 147px;
  overflow: hidden;
  z-index: 1;
}

.free-quote-one .shape1 {
  position: absolute;
  top: -125px;
  left: 0;
  z-index: -1;
}

.free-quote-one .shape2 {
  position: absolute;
  top: 0px;
  right: 10px;
  opacity: 0.15;
  z-index: -1;
}

.free-quote-one__img {
  position: relative;
  display: block;
  margin-left: -305px;
}

.free-quote-one__img1 {
  position: relative;
  display: block;
}

.free-quote-one__img1 img {
  width: auto;
}

.free-quote-one__img2 {
  position: absolute;
  right: 0;
  bottom: -120px;
  z-index: 1;
}

.free-quote-one__img2::before {
  position: absolute;
  top: 50px;
  left: 50px;
  bottom: 46px;
  right: 50px;
  border: 20px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.free-quote-one__img2::after {
  position: absolute;
  top: 70px;
  left: 71px;
  bottom: 67px;
  right: 70px;
  background: rgba(var(--thm-black-rgb), 0.6);
  content: "";
  z-index: 0;
  transform: rotate(45deg);
}

.free-quote-one .video-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.free-quote-one__video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: transparent;
  border: 2px dotted #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
}

.free-quote-one__img-content {
  position: absolute;
  top: 90px;
  right: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 225px;
  height: 225px;
  background: var(--thm-primary);
  border-radius: 50%;
  z-index: 5;
}

.free-quote-one__img-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 5px dashed #ffffff;
  border-radius: 50%;
  content: "";
}

.free-quote-one__img-content h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  text-transform: capitalize;
}

.free-quote-one__content {
  position: relative;
  display: block;
  padding-top: 120px;
}

.free-quote-one__content .sec-title-three {
  margin-bottom: 29px;
}


.free-quote-one__content-form {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  margin-top: 29px;
}

.free-quote-one__content-form .input-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.free-quote-one__content-form .input-box input[type="text"],
.free-quote-one__content-form .input-box input[type="email"],
.free-quote-one__content-form .input-box textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 55px;
  border: none;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 10px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  letter-spacing: -0.02em;
  outline: none;
}

.free-quote-one__content-form form input[type="text"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form form input[type="text"]:-moz-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form form input[type="text"]::-moz-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form form input[type="text"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form form input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form form input[type="email"]:-moz-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form form input[type="email"]::-moz-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form form input[type="email"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.free-quote-one__content-form .input-box .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 55px;
}

.free-quote-one__content-form .input-box .nice-select {
  background: #ffffff;
  width: 100%;
  height: 55px;
  line-height: 55px;
  border: none;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 10px;
  letter-spacing: -0.02em;
}

.free-quote-one__content-form .input-box .nice-select:after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--thm-gray);
  border-right: 2px solid var(--thm-gray);
  right: 30px;
  margin-top: 0px;
  top: 21px;
  z-index: 10;
}

.free-quote-one__content-form .nice-select .list {
  background-color: var(--thm-primary);
}

.free-quote-one__content-form .nice-select .option {
  color: #ffffff;
}

.free-quote-one__content-form .nice-select .option:hover {
  color: var(--thm-primary);
}

.free-quote-one__content-form-btn {
  position: relative;
  display: block;
  width: 100%;
}

.free-quote-one__content-form-btn .thm-btn {
  width: 100%;
}

.free-quote-one__price-range {
  position: relative;
  display: block;
  margin-top: 48px;
}

.free-quote-one__price-range .title {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.free-quote-one__price-range .title h4 {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.free-quote-one__price-range .noUi-horizontal {
  height: 10px;
  background-color: rgba(var(--thm-black-rgb), 0.15);
  border: none;
  box-shadow: none;
}

.free-quote-one__price-range .noUi-handle {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background-color: var(--thm-black);
  border: 1px solid #ffffff;
  outline: none;
  box-shadow: none;
}

.free-quote-one__price-range .noUi-horizontal .noUi-handle {
  top: -3px;
  right: -8px;
}

.free-quote-one__price-range .noUi-handle::before,
.free-quote-one__price-range .noUi-handle::after {
  display: none;
}

.free-quote-one__price-range .noUi-connect {
  background-color: var(--thm-primary);
}

.free-quote-one__price-range .form-group {
  position: relative;
  display: block;
}

.free-quote-one__price-range .right {
  position: absolute;
  top: 6px;
  right: 0;
  display: flex;
  align-items: center;
}

.free-quote-one__price-range .right .line {
  position: relative;
  display: inline-block;
  padding-left: 7px;
  padding-right: 7px;
}

/***
=====================================================
Footer One Two
=====================================================
***/
.footer-one--two {
  position: relative;
  display: block;
  background: #123316;
}

.footer-one--two .footer-widget__subscribe-input-box input[type="email"] {
  background: #123316;
}


/***
=====================================================
Team Two About
=====================================================
***/
.team-two--about {
  position: relative;
  display: block;
  background: #ffffff;
}


/***
=====================================================
Blog Two Services
=====================================================
***/
.blog-two--services {
  padding-top: 0;
}


/***
=====================================================
Team One Two
=====================================================
***/
.team-one--two {
  position: relative;
  display: block;
  padding-top: 120px;
  z-index: 1;
}

.team-one--two .shape3 {
  position: absolute;
  top: 120px;
  right: 0;
  opacity: 0.18;
  z-index: -1;
}

/***
=====================================================
Projects One Portfolio
=====================================================
***/
.projects-one--portfolio {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

.projects-one--portfolio .projects-one__single.mt40 {
  margin-top: 40px;
}


/***
=====================================================
Projects One Portfolio
=====================================================
***/
.projects-three--portfolio2 {
  position: relative;
  display: block;
}

.projects-three--portfolio2 .auto-container {
  max-width: 1410px;
  width: 100%;
}

.projects-three--portfolio2 .projects-three__inner {
  padding-left: 0px;
  width: 100%;
}

.projects-three--portfolio2.projects-three .owl-theme .owl-nav {
  position: relative;
  margin-top: 0;
  top: 0px;
  right: 0;
  z-index: 5;
  padding-top: 60px;
}

.projects-three--portfolio2.projects-three .owl-carousel .owl-nav button.owl-prev,
.projects-three--portfolio2.projects-three .owl-carousel .owl-nav button.owl-next {
  background-color: #fafcfe;
  color: var(--thm-black);
}

.projects-three--portfolio2.projects-three .owl-carousel .owl-nav button.owl-prev:hover,
.projects-three--portfolio2.projects-three .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--thm-primary);
  color: #ffffff;
}

/***
=====================================================
Faq Two Faq
=====================================================
***/
.faq-two.faq-two--faq {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  margin-top: 0px;
}


/***
=====================================================
Team Details
=====================================================
***/
.team-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 5;
}

.team-details__content {
  position: relative;
  display: block;
  margin-right: 40px;
}

.team-details__content .title-box {
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.team-details__content .title-box h2 {
  color: var(--thm-black);
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-font);
  margin-bottom: 12px;
}

.team-details__content .title-box p {
  font-size: 18px;
}

.team-details__content-text1 {
  margin-bottom: 29px;
}

.team-details__content-text2 {
  margin-bottom: 52px;
}

.team-details__progress {
  position: relative;
  display: block;
}

.team-details__progress-single {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.team-details__progress-single.mb0 {
  margin-bottom: 0px;
}

.team-details__progress-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: none;
  margin-bottom: 8px;
}

.team-details__progress-single .bar {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(var(--thm-black-rgb), 0.2);
  border-radius: 10px;
}

.team-details__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 6px;
  background: var(--thm-black);
  border-radius: 10px;
  -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: -32px;
  right: 0px;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  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;
  font-family: var(--thm-font-2);
  opacity: 1;
}

.contact-one__form--team-details {
  position: relative;
  display: block;
  margin-right: 0px;
  margin-top: 85px;
}

.contact-one__form--team-details.contact-one__form .input-box input[type="text"],
.contact-one__form--team-details.contact-one__form .input-box input[type="email"],
.contact-one__form--team-details.contact-one__form .input-box textarea {
  background: transparent;
  border: 1px solid #dbdddc;
}

.contact-one__form--team-details.contact-one__form .input-box .nice-select {
  background: transparent;
  border: 1px solid #dbdddc;
}


.team-details__right {
  position: relative;
  display: block;
  margin-left: -30px;
  margin-right: -30px;
}

.team-details__right-single {
  position: relative;
  display: block;
}

.team-details__right-single.mb40 {
  margin-bottom: 40px;
}

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

.team-details__right-single-img img {
  width: 100%;
}

.team-details__right-single .contact-info {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(190, 190, 190, 0.14);
  padding: 40px 35px 40px;
  margin-top: -60px;
  margin-left: 35px;
  margin-right: 35px;
  z-index: 2;
}

.team-details__right-single .contact-info ul {
  position: relative;
  display: block;
}

.team-details__right-single .contact-info ul li {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.team-details__right-single .contact-info ul li:last-child {
  margin-bottom: 0;
}

.team-details__right-single .contact-info ul li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.team-details__right-single .contact-info ul li .inner .icon-box {
  position: relative;
  display: block;
}

.team-details__right-single .contact-info ul li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 25px;
}

.team-details__right-single .contact-info ul li .inner .content-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.team-details__right-single .contact-info ul li .inner .content-box p {
  color: var(--thm-black);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.team-details__right-single .contact-info ul li .inner .content-box p a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__right-single .contact-info ul li .inner .content-box p a:hover {
  color: var(--thm-primary);
}

.team-details__right-single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(190, 190, 190, 0.14);
  padding: 20px 70px 30px;
  margin-top: -45px;
  margin-left: 35px;
  margin-right: 35px;
  z-index: 5;
}

.team-details__right-single-content .title {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.team-details__right-single-content .title p {
  color: var(--thm-black);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-details__right-single-content .social-links {
  position: relative;
  display: block;
}

.team-details__right-single-content .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.team-details__right-single-content .social-links li:last-child {
  margin-right: 0;
}

.team-details__right-single-content .social-links li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c3c5c7;
  z-index: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__right-single-content .social-links li a:hover {
  border-color: var(--thm-primary);
}

.team-details__right-single-content .social-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-primary);
  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;
  z-index: -1;
}

.team-details__right-single-content .social-links li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-details__right-single-content .social-links li a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 14px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__right-single-content .social-links li a:hover span::before {
  color: #ffffff;
}


/***
=============================================
Blog Page
=============================================
***/

.blog-page {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0px 120px;
}

.blog-page__content {
  position: relative;
  display: block;
}

.blog-page__single {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.blog-page__single-img {
  position: relative;
  display: block;
}

.blog-page__single-img .date-box {
  position: absolute;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  right: 70px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background: var(--thm-primary);
  z-index: 3;
}

.blog-page__single-img .date-box h4 {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  font-family: var(--thm-font);
}

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

.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.5);
  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: 27px;
}

.blog-page__single-content .meta-box {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.blog-page__single-content .meta-box li {
  position: relative;
  display: inline-block;
  margin-right: 35px;
}

.blog-page__single-content .meta-box li:last-child {
  margin-right: 0;
}


.blog-page__single-content .meta-box li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__single-content .meta-box li a:hover {
  color: var(--thm-primary);
}

.blog-page__single-content ul li a i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 15px;
  line-height: 15px;
  padding-right: 10px;
}

.blog-page__single-content h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  text-transform: none;
  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-primary);
}

.blog-page__single-content .text1 {
  position: relative;
  margin-bottom: 10px;
}

.blog-page__single-content .text2 {
  position: relative;
}

.blog-page__single-content .btn-box {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.blog-page__single-content .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 23px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__single-content .btn-box a:hover {
  color: var(--thm-primary);
}


/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

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

.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::before {
  position: absolute;
  left: 0;
  bottom: 9px;
  height: 2px;
  width: 30px;
  background: var(--thm-primary);
  content: "";
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  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: 14px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px 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: #f1f3f8;
  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-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;
}

.sidebar__category-list 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__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-black);
  color: #ffffff;
}

.sidebar__category-list 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;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, .05);
  color: #ffffff;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: #f1f3f8;
}

.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: 0;
  height: 100%;
  background-color: rgba(var(--thm-black-rgb), .80);
  border-radius: 0%;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(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: 20px;
  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-primary);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  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: #7d7d7d;
  font-size: 15px;
  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;
}

.sidebar__tags-list li a:hover {
  color: #ffffff;
  background: var(--thm-primary);
}


.sidebar__single-button-box {
  position: relative;
  display: block;
  background-color: #f1f3f8;
  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: 17px;
  line-height: 26px;
  font-weight: 700;
  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-black);
}

.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__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: var(--thm-black);
  content: "";
  z-index: -2;
  mix-blend-mode: multiply;
}

.sidebar__suppot-title {
  color: #ffffff;
  font-size: 48px;
  line-height: 58px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.sidebar__suppot-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  margin: 0;
  padding-top: 25px;
  padding-bottom: 38px;
}

.sidebar__support-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}




/***
=====================================================
Blog Details
=====================================================
***/
.blog-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-details__content {
  position: relative;
  display: block;
}

.blog-details__content .blog-page__single {
  margin-bottom: 54px;
}

.blog-details__content-img1 {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-details__content-img1::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: "";
}

.blog-details__content-img1:hover::before {
  opacity: 1;
}

.blog-details__content-img1 img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-details__content-img1:hover img {
  transform: scale(1);
}

.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: 19px;
}

.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: 31px;
}

.blog-details__content-text2 .text1 {
  margin: 0;
}

.blog-details__content-text2-list {
  position: relative;
  display: block;
  margin-top: 20px;
}

.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-primary);
  border: 1px solid var(--thm-primary);
  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: #f1f3f8;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: #ffffff;
  background-color: var(--thm-primary);
}

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

.blog-details__social-list a:hover:before {
  transform: scaleX(1);
}

.author-one {
  background-color: #f1f3f8;
  padding: 32px 30px 30px;
  display: -webkit-box;
  display: flex;
  margin-bottom: 51px;
}

.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;
  padding-left: 16px;
}

.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: 12px;
  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: 12px;
  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;
}


/***
=====================================================
Contact Page
=====================================================
***/
.contact-page {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  z-index: 1;
}

.contact-page::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background: #f2f7f7;
  content: "";
  z-index: -1;
}

.contact-one__form--contact {
  position: relative;
  display: block;
  margin-top: 120px;
}

.contact-page__img {
  position: relative;
  display: block;
  margin-left: -15px;
  margin-right: -200px;
}

.contact-page__img img {
  width: 100%;
}

.contact-one__form .input-box textarea {
  width: 100%;
  height: 190px;
  background-color: #ffffff;
  border: none;
  color: #79817c;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
  resize: none;
}


/***
=====================================================
Contact Page Bottom
=====================================================
***/
.contact-page-bottom {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.contact-page-bottom-map {
  position: relative;
  display: block;
}

.contact-page__google-map {
  position: relative;
  display: block;
  border: none;
  height: 669px;
  width: 100%;
}

.contact-page-bottom__content {
  position: relative;
  display: block;
  margin-top: 119px;
}

.contact-page-bottom__content-img {
  position: relative;
  display: block;
}

.contact-page-bottom__content-img img {
  width: 100%;
}

.contact-page-bottom__content-img .contact-info {
  position: absolute;
  top: 25px;
  left: 35px;
  bottom: 25px;
  right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(190, 190, 190, 0.14);
  z-index: 2;
}

.contact-page-bottom__content-img .contact-info ul {
  position: relative;
  display: block;
}

.contact-page-bottom__content-img .contact-info ul li {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.contact-page-bottom__content-img .contact-info ul li:last-child {
  margin-bottom: 0;
}

.contact-page-bottom__content-img .contact-info ul li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-page-bottom__content-img .contact-info ul li .inner .icon-box {
  position: relative;
  display: block;
}

.contact-page-bottom__content-img .contact-info ul li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 25px;
}

.contact-page-bottom__content-img .contact-info ul li .inner .content-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.contact-page-bottom__content-img .contact-info ul li .inner .content-box p {
  color: var(--thm-black);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.contact-page-bottom__content-img .contact-info ul li .inner .content-box p a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page-bottom__content-img .contact-info ul li .inner .content-box p a:hover {
  color: var(--thm-primary);
}


/***
=============================================
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: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-family: var(--thm-font);
}

.services-details__content .text-box1 .text1 {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.services-details__content .text-box1 .text2 {
  position: relative;
  display: block;
}

.services-details__content .text-box1 ul {
  position: relative;
  display: block;
  margin-top: 45px;
}

.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: #f2f2f2;
}

.services-details__content .text-box1 ul li .icon span::before {
  position: relative;
  display: inline-block;
  color: #8a8d97;
  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: 30px;
}

.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: 54px;
}

.services-details__content-img2 img {
  width: 100%;
}

.services-details__content .text-box3 {
  position: relative;
  display: block;
  margin-top: 30px;
}

.services-details__content .text-box3 .text1 {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.services-details__content .text-box3 .text2 {
  position: relative;
  display: block;
}

.services-details__content .text-box4 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 34px;
}

.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: 29px;
}

.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: 39px;
}

.services-details__content .text-box5 p {
  margin: 0;
}

.faq-two__accordion--services {
  position: relative;
  display: block;
  margin-right: 0px;
  margin-top: 39px;
}

.faq-two__accordion--services.faq-two__accordion .accordion-box .block .acc-content p {
  font-size: 16px;
}

.faq-two__accordion--services.faq-two__accordion .accordion-box .block .acc-btn h3 {
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
}


/***
=====================================================
Blog Grid Page
=====================================================
***/
.blog-grid-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 140px 0px 120px;
  z-index: 1;
}

.blog-grid-page .blog-one__single {
  margin-bottom: 50px;
}

/***
=====================================================
Testimonials Three About
=====================================================
***/
.testimonials-three--about {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonials-three--about::before {
  position: absolute;
  top: -115px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f4f9f5;
  content: "";
  z-index: -1;
}

/***
=====================================================
Testimonials Three Team
=====================================================
***/
.testimonials-three--team {
  position: relative;
  display: block;
}






















/***
=====================================================
End Css 
=====================================================
***/