/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --thm-font: 'Roboto', sans-serif;
  --thm-font-2: 'Rajdhani', sans-serif;
  --thm-reey-font: 'reeyregular';
  --thm-gray: #636363;
  --thm-gray-rgb: 99, 99, 99;
  --thm-base: #d4f843;
  --thm-base-rgb: 212, 248, 67;
  --thm-black: #181818;
  --thm-black-rgb: 24, 24, 24;
  --thm-black2: #080e25;
  --thm-black2-rgb: 8, 14, 37;
  --thm-primary: #f5f6f0;
  --thm-primary-rgb: 245, 246, 240;
}

.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: 26px;
  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: 1350px;
  }
}

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

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

.sec-title__tagline h6 {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.sec-title__tagline h6::before {
  position: absolute;
  top: 3px;
  left: -8px;
  width: 22px;
  height: 22px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.sec-title__title {
  color: var(--thm-black);
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  text-transform: capitalize;
}


/***
=============================================
   Thm Btn
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 25px;
  padding: 1px 35px 0px;
  line-height: 50px;
  color: var(--thm-black);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  overflow: hidden;
  font-family: var(--thm-font);
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:before {
  position: absolute;
  left: 0;
  top: -50px;
  bottom: 100%;
  right: 0;
  content: "";
  background: var(--thm-black);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  border-radius: 0%;
  transition-duration: 400ms;
  z-index: 1;
}

.thm-btn:hover:before {
  bottom: 0;
  top: 0;
}

.thm-btn:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 0px;
  opacity: 1;
  transform: scaleY(1.0);
  transition-duration: 400ms;
  background: var(--thm-base);
  z-index: -1;
}

.thm-btn:hover:after {
  transform: scaleY(0);
  transition-duration: 1500ms;
}

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

.thm-btn i::before {
  position: relative;
  display: inline-block;
  font-size: 13px;
  top: 1px;
  font-weight: 700;
  z-index: 5;
}

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

/***
=============================================
   Thm Btn Style2
=============================================
***/
.thm-btn.style2 {
  border-radius: 2px;
}

.style2.thm-btn:before {
  border-radius: 2px;
}




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

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

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

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 14px;
  width: auto;
  height: auto;
  text-transform: uppercase;
  border-radius: 0%;
  border: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--thm-black);
  background: transparent;
}



.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-base);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.search-popup__content .thm-btn::before {
  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: var(--thm-black);
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  margin-left: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

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

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

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

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

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

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

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

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

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


/* Preloader Css*/
.handle-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thm-black2);
  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-black2);
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  z-index: 10;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-base);
  border: none;
  outline: none;
  color: var(--thm-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

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


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

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

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

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

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

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

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


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

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

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

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

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



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



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

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

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

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

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


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


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

@media (min-width: 1200px) {

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

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

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

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

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

.main-menu .main-menu__list>li.dropdown>a:before {
  position: absolute;
  top: 0px;
  right: 0px;
  font-family: 'icomoon' !important;
  content: "\e906";
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

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


.main-menu .main-menu__list>li.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-base);
}

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

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

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

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

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

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

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: var(--thm-black);
  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: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.main-header-one__top {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 0px 9px;
  z-index: 99;
}

.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;
  line-height: 0;
}

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

.main-header__contact-info li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 2px;
  width: 1px;
  background: rgba(210, 210, 210, 0.5);
  content: "";
}

.main-header__contact-info li:last-child:before {
  display: none;
}

.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: #ffffff;
  font-size: 20px;
  top: -1px;
}

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

.main-header__contact-info li .inner .text-box p {
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
}

.main-header__contact-info li .inner .text-box p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header__contact-info li .inner .text-box p a:hover {
  color: var(--thm-base);
}

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

.main-header__language-switcher {
  position: relative;
  display: block;
}

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

.main-header__language-switcher .inner .icon-box {
  position: relative;
  display: block;
}

.main-header__language-switcher .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  top: -2px;
}

.main-header-one__top-social-links {
  position: relative;
  display: block;
  padding-left: 18px;
}

.main-header-one__top-social-links::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: rgba(210, 210, 210, 0.5);
  content: "";
}

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

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

.main-header-one__top-social-links li a {
  position: relative;
  display: block;
  z-index: 1;
}

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

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

.main-header-one__bottom {
  position: relative;
  display: block;
  background: transparent;
  margin-top: 20px;
}

.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;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0px 60px 0px;
  border-radius: 38px;
}


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

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

.header-search-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.main-header-one__bottom-right .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-left: 20px;
}

.main-header-one__bottom-right .btn-box .thm-btn:hover {
  color: var(--thm-black);
}

.main-header-one__bottom-right .btn-box .thm-btn:before {
  background: #ffffff;
}


.stricky-header.stricky-header--one .main-menu__wrapper {
  background: var(--thm-black2);
}

.stricky-header.stricky-header--one .main-header-one__bottom-middle {
  border: 0px solid rgba(255, 255, 255, 0.2);
  padding: 0px 0px 0px;
  border-radius: 0px;
}

/***
=============================================
Main Header Two
=============================================
***/
.main-header-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  z-index: 55;
}

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

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

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

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

.main-header-two .main-menu .main-menu__list>li,
.stricky-header.stricky-header--two .main-menu__list>li {
  padding-top: 33px;
  padding-bottom: 32px;
}

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

.main-header-two__right .main-header__language-switcher .inner .icon-box span::before {
  color: var(--thm-base);
}

.main-header-two__right .header-search-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

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

.main-header-two__right .header-search-box a {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  border: 0px solid rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__right .btn-box {
  line-height: 0;
  margin-left: 30px;
}

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

/***
=============================================
Main Header Three
=============================================
***/
.main-header-two--three {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 9px;
}

.main-header-two--three .main-menu .main-menu__list>li>a {
  color: var(--thm-black);
}

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

.main-header-two--three .main-menu .main-menu__list>li.dropdown>a:before {
  color: var(--thm-black);
}

.main-header-two--three .main-header-two__right .main-header__language-switcher .inner .icon-box span::before {
  color: var(--thm-gray);
}

.main-header-two--three #polyglotLanguageSwitcher a {
  color: var(--thm-gray);
}

.main-header-two--three #polyglotLanguageSwitcher span.trigger:before {
  color: var(--thm-gray);
}

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

.main-header-two--three .main-header-two__right .header-search-box::before {
  background: #CCCCCC;
}

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

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

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

.main-slider-one .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(10, 24, 74, 0.60);
  content: "";
  z-index: -1;
}

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

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

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

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

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

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

.main-slider-one__content .text p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.main-slider-one__content-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 47px;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

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

.main-slider-one__content-btn .btn-one {
  position: relative;
  display: block;
  line-height: 0;
}

.main-slider-one__content-btn .btn-two {
  position: relative;
  display: block;
  margin-left: 15px;
  line-height: 0;
}

.main-slider-one__content-btn .btn-two .thm-btn:after {
  background: #ffffff;
}


.main-slider__nav {
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0;
  max-width: 100%;
  padding-left: 70px;
  padding-right: 70px;
  transform: translateY(-50%);
  z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.30);
  font-size: 100px;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider__nav .swiper-button-prev {
  float: left;
  left: 0;
}

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

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: #ffffff;
}

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

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

.main-slider__nav .swiper-button-prev i::before {
  position: relative;
  display: inline-block;
  font-size: 100px;
  font-weight: 400;
}

.main-slider__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 100px;
  font-weight: 400;
  transform: rotate(180deg);
}

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

.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;
  background: var(--thm-gray);
  background-blend-mode: luminosity;
  -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;
  content: "";
  background: linear-gradient(89.18deg, rgba(43, 54, 0, 0.91) 44.11%, rgba(59, 73, 0, 0) 91.33%);
  z-index: -1;
}

.main-slider-two .shape1 {
  position: absolute;
  left: 545px;
  bottom: 30px;
  opacity: 0.1;
  z-index: 1;
}

.main-slider-two .container {
  position: relative;
  padding: 316px 15px 225px;
}

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

.main-slider-two__content .title {
  position: relative;
  display: block;
  margin-bottom: 25px;
  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-two .swiper-slide-active .main-slider-two__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: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

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

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

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

.main-slider-two__content .text p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
}

.main-slider-two__content-btn {
  position: relative;
  display: flex;
  align-items: center;
  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-two .swiper-slide-active .main-slider-two__content-btn {
  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-two__content-btn .btn-one {
  position: relative;
  display: block;
  line-height: 0;
}

.main-slider-two__content-btn .btn-two {
  position: relative;
  display: block;
  line-height: 0;
  margin-left: 30px;
}

.main-slider-two__content-btn .btn-two .icon-box {
  position: relative;
  display: block;
}

.main-slider-two__icon {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  top: 0px;
  padding-right: 9px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-two__icon i::before {
  position: relative;
  display: inline-block;
  top: 4px;
}

.main-slider-two__content-btn .btn-two:hover .main-slider-two__icon {
  color: var(--thm-base);
}

.main-slider-two__icon span {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-family: var(--thm-font);
}


.main-slider-two__nav {
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0;
  max-width: 100%;
  padding-left: 120px;
  padding-right: 120px;
  transform: translateY(-50%);
  z-index: 100;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.30);
  font-size: 24px;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  border: 2px solid rgba(255, 255, 255, 1.0);
}

.main-slider-two__nav .swiper-button-prev {
  float: left;
  left: 0;
}

.main-slider-two__nav .swiper-button-next {
  float: right;
  right: 0px;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  color: #ffffff;
}

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

.main-slider-two__nav .swiper-button-prev {
  margin-bottom: 0px;
}

.main-slider-two__nav .swiper-button-prev i::before {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
}

.main-slider-two__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  transform: rotate(180deg);
}


/***
=============================================
Banner One
=============================================
***/
.banner-one {
  position: relative;
  display: block;
  background: #f5f6f0;
  z-index: 1;
}

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

.banner-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 170px 0px 90px;
  overflow: hidden;
  z-index: 99;
}

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

.banner-one__content h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 21px;
}

.banner-one__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.banner-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 47px;
}

.banner-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 675px;
  width: 100%;
}

.banner-one__img .row {
  --bs-gutter-x: 20px;
}

.banner-one__img-left {
  position: relative;
  display: block;
  margin-right: -20px;
}

.banner-one__img-left-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 120px;
}

.banner-one__img-left-img img {
  width: 100%;
}


.banner-one__img-right {
  position: relative;
  display: block;
  margin-left: 19px;
}

.banner-one__img-right-single {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.banner-one__img-right-single .img-box {
  position: relative;
  display: block;
  border-radius: 70px;
  overflow: hidden;
}

.banner-one__img-right-single .img-box img {
  width: 100%;
}


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

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

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

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

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

.page-header__inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 30px;
  transform: rotate(90deg);
}

.page-header__inner h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  text-transform: capitalize;
  margin-bottom: 0px;
}


.page-header__inner .thm-breadcrumb {
  position: relative;
  display: block;
  margin-top: 13px;
}

.page-header__inner .thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

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

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



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

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

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

.about-one__left-img::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(17deg);
  z-index: 1;
}

.about-one__left-img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

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

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

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

.about-one__middle .sec-title {
  padding-bottom: 28px;
}

.about-one__middle-text {
  position: relative;
  display: block;
}

.about-one__middle-text p {
  font-size: 18px;
  line-height: 28px;
}

.about-one__middle-client-info {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #E1E1E1;
  border-radius: 10px;
  padding: 25px 20px 25px;
  margin-top: 32px;
  z-index: 1;
}

.about-one__middle-client-info .icon-box {
  position: absolute;
  right: 35px;
  bottom: 25px;
  z-index: -1;
}

.about-one__middle-client-info .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #eeeeee;
  font-size: 65px;
}

.about-one__middle-client-info .img-box {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

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

.about-one__middle-client-info .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.about-one__middle-client-info .content-box h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 3px;
}

.about-one__middle-client-info .content-box h3 span {
  color: var(--thm-gray);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--thm-font);
}

.about-one__middle-client-info .content-box p {
  margin: 0;
}

.about-one__middle-list {
  position: relative;
  display: block;
  margin-top: 39px;
}

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

.about-one__middle-list-single.style2 {
  margin-left: -10px;
}

.about-one__middle-list-single ul {
  position: relative;
  display: block;
}

.about-one__middle-list-single ul li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.about-one__middle-list-single ul li:last-child {
  margin-bottom: 0;
}

.about-one__middle-list-single ul li p {
  margin: 0;
}

.about-one__middle-list-single ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 17px;
  font-weight: 700;
  padding-right: 3px;
  top: 1px;
}

.about-one__middle-btn {
  position: relative;
  display: block;
  padding-top: 14px;
  line-height: 0;
}

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

.about-one__right-text {
  position: relative;
  display: block;
}

.about-one__right-text p {
  margin: 0;
}

.about-one__right-img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 34px;
}

.about-one__right-img::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.about-one__right-img:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.about-one__right-img:hover img {
  transform: scale(1);
}


/***
=============================================
Brand One
=============================================
***/
.brand-one {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 110px 0 98px;
  z-index: 1;
}

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

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: .5s ease;
  overflow: hidden;
  cursor: pointer;
}

.brand-one .swiper-slide .img-box {
  position: relative;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.brand-one .swiper-slide:hover .img-box {
  transform: translateY(-100%);
}

.brand-one .swiper-slide .img-box img {
  opacity: 1.0;
  width: auto;
}

.brand-one .swiper-slide .img-box2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(100%);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.brand-one .swiper-slide:hover .img-box2 {
  transform: translateY(0);
}


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

.services-one__single {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 47px 50px 46px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 5px;
  background-color: var(--thm-black2);
  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;
}

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

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

.services-one__single-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.services-one__single-inner .text-box h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 9px;
}

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

.services-one__single:hover .services-one__single-inner .text-box h2 a {
  color: #ffffff;
}

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

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

.services-one__single-inner .text-box p {
  margin: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__single:hover .services-one__single-inner .text-box p {
  color: #999999;
}

.services-one__single-inner .text-box .btn-box {
  position: relative;
  display: block;
  margin-top: 19px;
}

.services-one__single-inner .text-box .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__single:hover .services-one__single-inner .text-box .btn-box a {
  color: #ffffff;
}

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

.services-one__single-inner .text-box .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 10px;
  font-weight: 700;
  padding-left: 1px;
  top: -1px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__single:hover .services-one__single-inner .text-box .btn-box a span:before {
  color: #ffffff;
}

.services-one__single:hover .services-one__single-inner .text-box .btn-box a:hover span:before {
  color: var(--thm-base);
}

.services-one__single-inner .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 130px;
  height: 120px;
}

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

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


/***
=====================================================
Counter One
=====================================================
***/
.counter-one {
  position: relative;
  display: block;
  padding: 0px 0px 60px;
  z-index: 5;
}

.counter-one__inner {
  position: relative;
  display: block;
  border-top: 1px solid #e1e1e1;
  padding-top: 117px;
}

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

.counter-one__single {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.counter-one__single::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: 0px;
  background: #e1e1e1;
  width: 1px;
  content: "";
}

.counter-one__box li.counter-one__single {
  position: relative;
  display: inline-block;
  margin-right: 46px;
  padding-right: 55px;
}

.counter-one__box li:last-child.counter-one__single {
  margin-right: 0px;
  padding-right: 0px;
}

.counter-one__single:last-child:before {
  display: none;
}

.counter-one__single-inner {
  position: relative;
  display: block;
}

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

.counter-one__single-inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 60px;
  line-height: 60px;
  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: flex;
  align-items: center;
}

.counter-one__single-inner .content-box .left-text {
  position: relative;
  display: block;
}

.counter-one__single-inner .content-box .left-text h2 {
  position: relative;
  color: var(--thm-black);
  font-size: 80px;
  line-height: 0.8em;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.counter-one__single-inner .content-box .left-text h2 .letter {
  position: relative;
  display: inline-block;
  left: -10px;
}

.counter-one__single-inner .odometer.odometer-auto-theme,
.counter-one__single-inner .odometer.odometer-theme-default {
  font-family: var(--thm-font-2);
  line-height: 0.8em;
}

.counter-one__single-inner .content-box .right-text {
  position: relative;
  display: block;
  margin-left: 18px;
}

.counter-one__single-inner .content-box .right-text h3 {
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  text-transform: capitalize;
}


/***
=====================================================
Feature One
=====================================================
***/
.feature-one {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 110px 0px 80px;
  z-index: 1;
}

.feature-one .shape1 {
  position: absolute;
  top: 10px;
  left: 70px;
  opacity: 0.2;
  z-index: -1;
}

.feature-one .shape1 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.feature-one .shape2 {
  position: absolute;
  left: 100px;
  bottom: 75px;
  opacity: 0.2;
  z-index: -1;
}

.feature-one .shape3 {
  position: absolute;
  left: 720px;
  bottom: 235px;
  opacity: 0.3;
  z-index: -1;
}

.feature-one .shape3 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.feature-one .shape4 {
  position: absolute;
  top: 95px;
  right: 95px;
  opacity: 0.3;
  z-index: -1;
}

.feature-one .shape5 {
  position: absolute;
  bottom: 170px;
  right: 130px;
  opacity: 0.2;
  z-index: -1;
}

.feature-one__content {
  position: relative;
  display: block;
  max-width: 510px;
  width: 100%;
  margin-top: 92px;
}

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

.feature-one__content .sec-title__title {
  color: #ffffff;
}

.feature-one__content .sec-title__tagline h6 {
  color: var(--thm-base);
}

.feature-one__content .sec-title__tagline h6::before {
  background: rgba(255, 255, 255, .3);
}

.feature-one__content-text {
  position: relative;
  display: block;
}

.feature-one__content-text p {
  color: #999999;
  margin: 0;
}

.feature-one__content-list {
  position: relative;
  display: block;
  margin-top: 31px;
}

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

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

.feature-one__content-list li p {
  color: #999999;
  margin: 0;
}

.feature-one__content-list li p span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 18px;
  padding-right: 3px;
  top: 1px;
}

.feature-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 47px;
}

.feature-one__content .btn-box .thm-btn:before {
  background: #ffffff;
}

.feature-one__content .btn-box .thm-btn:hover {
  color: var(--thm-black);
}

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

.feature-one__right-single {
  position: relative;
  display: block;
  background: #f5f6f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 35px 35px 32px;
  z-index: 1;
}

.feature-one__right-single.mt30 {
  margin-top: 30px;
}

.feature-one__right-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 3px;
  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: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.feature-one__right-single:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.feature-one__right-single-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;
  opacity: 0.1;
  z-index: -1;
}

.feature-one__right-single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
}

.feature-one__right-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 50px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.feature-one__right-single:hover .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.feature-one__right-single .text-box {
  position: relative;
  display: block;
}

.feature-one__right-single .text-box h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.feature-one__right-single .text-box h2 a {
  color: var(--thm-black);
}

.feature-one__right-single .text-box p {
  margin: 0;
}


/***
=============================================
Price One
=============================================
***/
.price-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 80px;
  z-index: 1;
}

.price-one__single {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 50px 70px 50px;
  margin-bottom: 30px;
  z-index: 1;
}

.price-one__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.price-one__single-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-one__single-left {
  position: relative;
  display: block;
}

.price-one__single-left .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
}

.price-one__single-left .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 45px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.price-one__single:hover .price-one__single-left .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.price-one__single-left .content-box {
  position: relative;
  display: block;
}

.price-one__single-left .content-box h3 {
  color: var(--thm-gray);
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 7px;
}

.price-one__single-left .content-box h2 {
  color: #000000;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
}

.price-one__single-right {
  position: relative;
  display: block;
  padding-left: 80px;
}

.price-one__single-right::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  background: #e4e5de;
  border-radius: 5px;
  content: "";
}

.price-one__single-right-list {
  position: relative;
  display: block;
}

.price-one__single-right-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.price-one__single-right-list li:last-child {
  margin-bottom: 0;
}

.price-one__single-right-list li p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.price-one__single-right-list li p span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 18px;
  top: 1px;
  padding-right: 6px;
}

.price-one__single-right-btn {
  position: relative;
  display: block;
  margin-top: 32px;
  line-height: 0;
}

.price-one__single-right-btn .thm-btn {
  color: #ffffff;
}

.price-one__single-right-btn .thm-btn::after {
  background: var(--thm-black);
}

.price-one__single-right-btn .thm-btn::before {
  background: var(--thm-base);
}




/***
=============================================
Company Strategy One
=============================================
***/
.company-strategy-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 10px 0px 125px;
  z-index: 1;
}

.company-strategy-one__img {
  position: relative;
  display: block;
  max-width: 670px;
  width: 100%;
}

.company-strategy-one__img .shape1 {
  position: absolute;
  left: 110px;
  bottom: -85px;
  z-index: -1;
}

.company-strategy-one__img1 {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 410px;
  width: 100%;
}

.company-strategy-one__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(20deg);
  z-index: 1;
}

.company-strategy-one__img1:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.company-strategy-one__img1 img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

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

.company-strategy-one__img2 {
  position: absolute;
  top: -10px;
  right: 0;
  overflow: hidden;
  z-index: 2;
}

.company-strategy-one__img2::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.company-strategy-one__img2:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.company-strategy-one__img2 img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.company-strategy-one__img2:hover img {
  transform: scale(1);
}

.company-strategy-one__img3 {
  position: absolute;
  right: 25px;
  bottom: -105px;
  z-index: 2;
}

.company-strategy-one__img3 .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.company-strategy-one__img3::before {
  position: absolute;
  top: 15px;
  right: -25px;
  bottom: 15px;
  width: 6px;
  background: var(--thm-base);
  content: "";
}

.company-strategy-one__img3 .inner::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.company-strategy-one__img3:hover .inner::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.company-strategy-one__img3:hover .inner img {
  transform: scale(1);
}

.company-strategy-one__content {
  position: relative;
  display: block;
}

.company-strategy-one__content .sec-title {
  padding-bottom: 28px;
}

.company-strategy-one__content-text {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.company-strategy-one__content-text p {
  font-size: 18px;
  line-height: 28px;
}

.company-strategy-one__content-text2 {
  position: relative;
  display: block;
}

.company-strategy-one__content-text2 p {
  margin: 0px;
}

.company-strategy-one__progress {
  position: relative;
  display: block;
  margin-top: 42px;
}

.company-strategy-one__progress-single {
  position: relative;
  display: block;
  margin-bottom: 54px;
}

.company-strategy-one__progress-single.mar0 {
  margin-bottom: 0px;
}

.company-strategy-one__progress-single .top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}

.company-strategy-one__progress-single .top .count-text {
  position: relative;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  padding-left: 5px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  font-family: var(--thm-font);
}

.company-strategy-one__progress-single p {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.company-strategy-one__progress-single .bar {
  position: relative;
  width: 100%;
  height: 0px;
  background: transparent;
  margin-bottom: 0px;
}

.company-strategy-one__progress-single .bar::before {
  position: absolute;
  left: 0;
  bottom: -15px;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--thm-gray);
  content: "";
}

.company-strategy-one__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  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;
  z-index: 1;
}


/***
=============================================
Testimonial One
=============================================
***/
.testimonial-one {
  position: relative;
  display: block;
}

.testimonial-one__inner {
  position: relative;
  display: block;
  padding: 110px 190px 110px;
  background: var(--thm-base);
  margin-bottom: -290px;
  z-index: 5;
}

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

.testimonial-one__single {
  position: relative;
  display: block;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

.testimonial-one__single .icon-box {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 51px;
}

.testimonial-one__single .icon-box span {
  position: relative;
  display: inline-block;
  font-size: 100px;
}

.testimonial-one__single .text-box {
  position: relative;
  display: block;
  border-bottom: 2px solid rgba(174, 212, 19, 0.8);
  padding-bottom: 40px;
}

.testimonial-one__single .text-box h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  font-family: var(--thm-font);
}

.testimonial-one__single .client-info {
  position: relative;
  display: block;
  max-width: 330px;
  width: 100%;
  background: #ffffff;
  border-radius: 50px;
  margin: 35px auto 0px;
  padding: 10px 10px 10px;
}

.testimonial-one__single .client-info .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__single .client-info .img-box {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

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

.testimonial-one__single .client-info .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.testimonial-one__single .client-info .content-box h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
}

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


.testimonial-one .owl-theme .owl-nav {
  position: absolute;
  top: 49%;
  left: 0%;
  right: 0;
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  transform: translateY(-50%);
  z-index: 5;
}

.testimonial-one .owl-carousel .owl-nav button.owl-prev,
.testimonial-one .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: block;
  background: transparent;
  color: #AED413;
  font-size: 50px;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-one .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-one .owl-carousel .owl-nav button.owl-next:hover {
  color: var(--thm-black);
}

.testimonial-one .owl-carousel .owl-nav button.owl-prev {
  float: left;
  left: -85px;
}

.testimonial-one .owl-carousel .owl-nav button.owl-next {
  float: right;
  right: -85px;
}

/***
=============================================
Team One
=============================================
***/
.team-one {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 400px 0px 80px;
  z-index: 1;
}

.team-one .sec-title__tagline h6 {
  color: var(--thm-base);
}

.team-one .sec-title__title {
  color: #ffffff;
}

.team-one .sec-title__tagline h6::before {
  background: rgba(255, 255, 255, .3);
}

.team-one .auto-container {
  max-width: 1750px;
  width: 100%;
}

.team-one__outer {
  flex: 0 0 auto;
  width: 20%;
}

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

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

.team-one__single-img:before {
  background: #ffffff;
  position: absolute;
  height: 0;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  content: "";
  z-index: 1;
}

.team-one__single:hover .team-one__single-img:before {
  height: 100%;
  opacity: 0.3;
}

.team-one__single-img:after {
  position: absolute;
  content: "";
  background: #ffffff;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -moz-transition: all 600ms ease-out 0s;
  -webkit-transition: all 600ms ease-out 0s;
  -ms-transition: all 600ms ease-out 0s;
  -o-transition: all 600ms ease-out 0s;
  transition: all 600ms ease-out 0s;
}

.team-one__single:hover .team-one__single-img:after {
  height: 0;
  opacity: 0.2;
}

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

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

.team-one__single-content {
  position: relative;
  display: block;
  padding-top: 25px;
}

.team-one__single-content h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}

.team-one__single-content h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.team-one__single-content p {
  color: var(--thm-base);
  font-weight: 500;
  text-transform: capitalize;
}

.team-one__single-content .social-links {
  position: relative;
  display: inline-block;
  line-height: 0;
  background: #F5F6F0;
  padding: 15px 20px 15px;
  margin-top: 19px;
  z-index: 1;
}

.team-one__single-content .social-links:before {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: var(--thm-base);
  transition: .6s;
  content: "";
  z-index: -1;
}

.team-one__single:hover .team-one__single-content .social-links:before {
  width: 100%;
  left: 0;
}

.team-one__single-content .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.team-one__single-content .social-links li:last-child {
  margin-right: 0;
}

.team-one__single-content .social-links li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 16px;
}


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

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

.contact-one__img1 {
  position: relative;
  display: block;
  float: right;
  z-index: 1;
}

.contact-one__img1 .shape1 {
  position: absolute;
  right: -30px;
  bottom: -45px;
  z-index: -1;
}

.contact-one__img1::before {
  position: absolute;
  top: 0;
  left: -30px;
  width: 10px;
  height: 175px;
  background: var(--thm-base);
  content: "";
}

.contact-one__img1 .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.contact-one__img1 .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.contact-one__img1:hover .inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.contact-one__img1:hover .inner img {
  transform: scale(1);
}

.contact-one__img2 {
  position: absolute;
  left: 0;
  bottom: -45px;
  overflow: hidden;
  z-index: 5;
}

.contact-one__img2::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.contact-one__img2:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.contact-one__img2:hover img {
  transform: scale(1);
}

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

.contact-one__form .sec-title {
  padding-bottom: 47px;
}

.contact-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.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: var(--thm-primary);
  width: 100%;
  height: 60px;
  border: none;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 30px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.contact-one__form .input-box textarea {
  width: 100%;
  height: 150px;
  padding-top: 18px;
  outline: none;
  resize: none;
}

.contact-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form input[type="text"]:-moz-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form input[type="text"]::-moz-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form input[type="email"]:-moz-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form input[type="email"]::-moz-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form textarea::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form textarea:-moz-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form textarea::-moz-placeholder {
  color: var(--thm-gray);
}

.contact-one__form form textarea:-ms-input-placeholder {
  color: var(--thm-gray);
}

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

/***
=============================================
Blog One
=============================================
***/
.blog-one {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 110px 0px 170px;
  margin-bottom: -90px;
  z-index: 1;
}

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

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

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

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

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

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

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

.blog-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 35px 30px 32px;
  margin-left: 90px;
  margin-top: -115px;
  z-index: 5;
}

.blog-one__single-content p {
  color: var(--thm-black);
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.blog-one__single-content p span {
  color: var(--thm-gray);
}

.blog-one__single-content h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  font-family: var(--thm-font);
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 22px;
}

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

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

.blog-one__single-content .btn-box {
  position: relative;
  display: inline-block;
  margin-top: 17px;
}

.blog-one__single-content .btn-box a {
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.blog-one__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
}

/***
=============================================
Subscribe One
=============================================
***/
.subscribe-one {
  position: relative;
  display: block;
  margin-bottom: -75px;
  z-index: 5;
}

.subscribe-one__inner {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 40px 73px 40px;
  z-index: 1;
}

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

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

.subscribe-one__content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 85px;
}

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

.subscribe-one__content .text-box h2 {
  color: var(--thm-black);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
}

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

.subscribe-one__form form {
  position: relative;
  display: block;
}

.subscribe-one__form form input[type=text] {
  position: relative;
  display: block;
  background: transparent;
  color: var(--thm-black);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  height: 50px;
  padding-left: 0px;
  padding-right: 40px;
  transition: all 500ms ease 0s;
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(161, 198, 10, 0.5);
  max-width: 100%;
  width: 100%;
  outline: none;
}

.subscribe-one__form form button {
  position: absolute;
  top: 0;
  right: -15px;
  color: var(--thm-black);
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  transition: all 500ms ease 0s;
  width: 50px;
  padding: 0;
  border: none;
  background: none;
}

.subscribe-one__form form button span::before {
  font-weight: 700;
}

.subscribe-one__form-checkbox {
  position: relative;
  display: block;
  margin-top: 9px;
}

.subscribe-one__form-checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #636363;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--thm-font);
  cursor: pointer;
}

.subscribe-one__form-checkbox input[type="checkbox"] {
  display: none;
}

.subscribe-one__form-checkbox input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid rgba(161, 198, 10, 0.5);
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.subscribe-one__form-checkbox label span:before {
  position: absolute;
  top: 2px;
  left: 3px;
  display: block;
  border-bottom: 2px solid rgba(161, 198, 10, 0.5);
  border-right: 2px solid rgba(161, 198, 10, 0.5);
  content: '';
  width: 5px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.subscribe-one__form-checkbox input[type="checkbox"]:checked+label span {
  border: 1px solid rgba(161, 198, 10, 0.5);
}

.subscribe-one__form-checkbox input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}


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

.footer-one .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: -1;
}

.footer-one .shape2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}

.footer-one .shape3 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}

.footer-one .shape4 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}


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

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

.footer-widget__single-about {
  position: relative;
  display: block;
  max-width: 315px;
  width: 100%;
}

.footer-widget__single-about .logo-box {
  position: relative;
  display: inline-block;
  margin-bottom: 34px;
}

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

.footer-widget__single-about-text {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 27px;
}

.footer-widget__single-about-text p {
  color: #999999;
}

.footer-widget__single-about .contact-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 27px;
}

.footer-widget__single-about .contact-info .icon-box {
  position: relative;
  display: block;
}

.footer-widget__single-about .contact-info .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 50px;
}

.footer-widget__single-about .contact-info .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.footer-widget__single-about .contact-info .text-box p {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-widget__single-about .contact-info .text-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}

.footer-widget__single-about .contact-info .text-box h3 a {
  color: #ffffff;
}

.footer-widget__single-about .contact-info .text-box h3 a:hover {
  color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


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

.footer-one__right-single .title h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  text-transform: capitalize;
}

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

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

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

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

.footer-one__right-single-services-list li a {
  position: relative;
  display: block;
  color: #999999;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__right-single-services-list li a:hover {
  color: var(--thm-base);
  padding-left: 3px;
}

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

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

.footer-one__right-single-contact-box p {
  color: #999999;
  margin: 0;
}

.footer-one__right-single-contact-box p+p {
  margin-top: 16px;
}

.footer-one__right-single-contact-box p a {
  color: #999999;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__right-single-contact-box p a:hover {
  color: var(--thm-base);
}

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

.footer-one__right-single-contact .bottom-content h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 19px;
}

.footer-one__right-single-contact .bottom-content p {
  color: #999999;
}


.footer-one__right-single-project {
  position: relative;
  display: block;
  margin-left: -3px;
}

.footer-one__right-single-project-box {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
  padding-top: 6px;
  overflow: hidden;
}

.footer-one__right-single-project-box li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.footer-one__right-single-project-box li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.footer-one__right-single-project-box li .img-box: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: "";
}

.footer-one__right-single-project-box li .img-box:hover:before {
  opacity: 1;
}

.footer-one__right-single-project-box li .img-box img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.footer-one__right-single-project-box li .img-box:hover img {
  transform: scale(1);
}

.footer-one__right-single-project-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: perspective(400px) translateY(20px);
  transform-origin: top;
  transition: all 0.1s ease-in-out 0s;
  z-index: 5;
}

.footer-one__right-single-project-box li .img-box:hover .footer-one__right-single-project-link {
  opacity: 1;
  transform: perspective(400px) translateY(0);
  transition: all 0.5s ease-in-out 0.5s;
}

.footer-one__right-single-project-link a {
  position: relative;
  display: block;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

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

.footer-one__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0px 30px;
}

.footer-one__bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-one__bottom .bottom-inner .copyright p {
  color: #999999;
  margin: 0;
  text-transform: capitalize;
}

.footer-one__bottom .bottom-inner .copyright p a {
  color: #999999;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__bottom .bottom-inner .copyright p a:hover {
  color: var(--thm-base);
}

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

.footer-one__bottom .bottom-inner .social-links ul {
  position: relative;
  display: block;
}

.footer-one__bottom .bottom-inner .social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

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

.footer-one__bottom .bottom-inner .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.footer-one__bottom .bottom-inner .social-links ul li a:hover {
  color: var(--thm-black);
}

.footer-one__bottom .bottom-inner .social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 10px;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

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

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

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

.footer-one__bottom-menu li::before {
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 7px;
  width: 1px;
  background: #999999;
  content: "";
}

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

.footer-one__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: #999999;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__bottom-menu li a:hover {
  color: var(--thm-base);
}


/***
=============================================
Feature Two
=============================================
***/
.feature-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 80px;
  z-index: 1;
}

.feature-two__single {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 35px 35px 32px;
  margin-bottom: 30px;
  border-radius: 3px;
  overflow: hidden;
  z-index: 1;
}

.feature-two__single .shape2 {
  position: absolute;
  top: 35px;
  right: 55px;
  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;
}

.feature-two__single:hover .shape2 {
  transform: scale(1.0);
  opacity: 1;
}

.feature-two__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 3px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.feature-two__single:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.feature-two__single-icon {
  position: relative;
  display: block;
  margin-bottom: 25px;
  z-index: 1;
}

.feature-two__single-icon .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}

.feature-two__single-icon span::before {
  position: relative;
  display: inline-block;
  margin-top: 7px;
  margin-left: 25px;
  color: var(--thm-black);
  font-size: 55px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-two__single:hover .feature-two__single-icon span::before {
  transform: scale(0.9);
}

.feature-two__single-content {
  position: relative;
  display: block;
}

.feature-two__single-content h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 9px;
}

.feature-two__single-content h3 a {
  color: var(--thm-black);
}

.feature-two__single-content p {
  margin: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-two__single:hover .feature-two__single-content p {
  color: var(--thm-black);
}


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

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

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

.about-two__img1 {
  position: relative;
  display: block;
  float: right;
  z-index: 1;
}

.about-two__img1:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(23, 29, 0, 0.2), rgba(23, 29, 0, 0.2));
  content: "";
  z-index: 1;
}

.about-two__img1 .shape1 {
  position: absolute;
  right: -30px;
  bottom: -40px;
  z-index: -1;
}

.about-two__img1::before {
  position: absolute;
  top: 0;
  left: -30px;
  width: 10px;
  height: 175px;
  background: var(--thm-base);
  content: "";
}

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

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

.about-two__img1:hover .inner img {
  transform: scale(1);
}

.about-two__img2 {
  position: absolute;
  left: 0;
  bottom: -50px;
  overflow: hidden;
  z-index: 2;
}

.about-two__img2::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.about-two__img2:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.about-two__img2:hover img {
  transform: scale(1);
}

.about-two__content {
  position: relative;
  display: block;
  padding-left: 40px;
}

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

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

.about-two__content-text p {
  font-size: 18px;
  line-height: 28px;
}

.about-two__counter {
  position: relative;
  display: block;
  margin-top: 30px;
  padding-bottom: 5px;
}

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

.about-two__counter-single h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
}

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

.about-two__counter-single h2 .percent {
  position: relative;
  display: inline-block;
  top: 1px;
  left: -11px;
}

.about-two__counter-single h2 .k {
  position: relative;
  display: inline-block;
  left: -11px;
}

.about-two__counter-single h2 .plus {
  position: relative;
  display: inline-block;
  top: 2px;
  left: -21px;
}

.about-two__counter-single h3 {
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
}

.about-two__content-list {
  position: relative;
  display: block;
  border-top: 1px solid #E1E1E1;
  padding-top: 39px;
}

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

.about-two__content-list-single li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.about-two__content-list-single li:last-child {
  margin-bottom: 0;
}

.about-two__content-list-single li p {
  margin: 0;
}

.about-two__content-list-single li p span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 17px;
  font-weight: 700;
  top: 1px;
  padding-right: 3px;
}

.about-two__content-btn {
  position: relative;
  display: block;
  padding-top: 12px;
  line-height: 0;
}


/***
=====================================================
Service Two
=====================================================
***/
.service-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 80px;
  z-index: 1;
}

.service-two__single {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 40px 40px 37px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.service-two__single::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-base);
  border-radius: 5px;
  opacity: 0;
  content: "";
  z-index: -1;
}

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

.service-two__single-inner {
  position: relative;
  display: block;
  padding-left: 110px;
}

.service-two__single-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.service-two__single-icon .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 70px;
  height: 70px;
}

.service-two__single-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 50px;
  margin-left: 25px;
  margin-top: 10px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.service-two__single:hover .service-two__single-icon span::before {
  transform: scale(0.9);
}

.service-two__single-content {
  position: relative;
  display: block;
}

.service-two__single-content h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}

.service-two__single-content h2 a {
  color: var(--thm-black);
}

.service-two__single-content p {
  margin: 0;
}

.service-two__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 14px;
}

.service-two__single-content .btn-box a {
  color: var(--thm-black);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

.service-two__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 10px;
  font-weight: 700;
  padding-left: 1px;
  top: -1px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


/***
=====================================================
Cta One
=====================================================
***/
.cta-one {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 67px 0px 70px;
  z-index: 1;
}

.cta-one .shape1 {
  position: absolute;
  top: 0;
  left: 100px;
  z-index: -1;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-one__inner .title-box {
  position: relative;
  display: block;
}

.cta-one__inner .title-box h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  text-transform: capitalize;
}

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

.cta-one__inner .btn-box .thm-btn {
  color: #ffffff;
}

.cta-one__inner .btn-box .thm-btn::after {
  background: var(--thm-black);
}

.cta-one__inner .btn-box .thm-btn::before {
  background: #ffffff;
}

.cta-one__inner .btn-box .thm-btn:hover {
  color: var(--thm-black);
}


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

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

.why-choose-one::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 200px;
  width: 610px;
  background: var(--thm-base);
  content: "";
  z-index: -1;
}

.why-choose-one__content {
  position: relative;
  display: block;
  max-width: 535px;
  width: 100%;
}

.why-choose-one__content .sec-title {
  padding-bottom: 28px;
}

.why-choose-one__content-text {
  position: relative;
  display: block;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 27px;
}

.why-choose-one__content-text p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}

.why-choose-one__content-list {
  position: relative;
  display: block;
  margin-top: 30px;
}

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

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

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

.why-choose-one__content-list ul li .inner {
  position: relative;
  display: block;
  padding-left: 105px;
}

.why-choose-one__content-list ul li .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  z-index: 1;
}

.why-choose-one__content-list ul li .inner .icon-box .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.why-choose-one__content-list ul li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 50px;
  margin-top: 10px;
  margin-left: 25px;
}

.why-choose-one__content-list ul li .inner .content-box {
  position: relative;
  display: block;
}

.why-choose-one__content-list ul li .inner .content-box h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

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

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

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

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

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

/***
=====================================================
Projects One
=====================================================
***/
.projects-one {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 110px 0px 60px;
  z-index: 1;
}

.projects-one .shape1 {
  position: absolute;
  top: 100px;
  left: 90px;
  z-index: -1;
}

.projects-one .shape2 {
  position: absolute;
  left: 90px;
  bottom: 410px;
  z-index: -1;
}

.projects-one .shape3 {
  position: absolute;
  top: 100px;
  right: 125px;
  z-index: -1;
}

.projects-one .shape3 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.projects-one .shape4 {
  position: absolute;
  bottom: 290px;
  right: 0px;
  z-index: -1;
}

.projects-one .shape5 {
  position: absolute;
  bottom: 550px;
  right: 165px;
  z-index: -1;
}


.projects-one .sec-title__tagline h6 {
  color: var(--thm-base);
}

.projects-one .sec-title__tagline h6::before {
  background: rgba(255, 255, 255, .3);
}

.projects-one .sec-title__title {
  color: #ffffff;
}

.projects-one__img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.projects-one__img img {
  width: 100%;
}

.projects-one__content {
  position: relative;
  display: block;
  margin-left: -110px;
  margin-top: 34px;
  z-index: 5;
}

.projects-one__content-inner {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 59px 60px 110px;
  padding-right: 50px;
}

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

.projects-one__content-single .title-box {
  position: relative;
  display: block;
}

.projects-one__content-single .title-box p {
  margin: 0;
}

.projects-one__content-single .title-box h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-top: 7px;
}

.projects-one__content-single-list {
  position: relative;
  display: block;
  margin-top: 23px;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 32px;
}

.projects-one__content-single-list li {
  position: relative;
  display: inline-block;
  margin-right: 38px;
}

.projects-one__content-single-list li:last-child {
  margin-right: 0;
}

.projects-one__content-single-list li p {
  margin: 0;
}

.projects-one__content-single-list li h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--thm-font);
  margin-top: 5px;
}

.projects-one__content-single .text-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.projects-one__content-single .text-box p {
  margin: 0;
}

.projects-one__content-single .btn-box {
  position: relative;
  display: block;
  margin-top: 37px;
  line-height: 0;
}

.projects-one .owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  bottom: 2px;
  right: 139px;
  z-index: 5;
}

.projects-one .owl-carousel .owl-nav button.owl-prev,
.projects-one .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 50%;
  background-color: transparent;
  color: #999999;
  border: none;
  font-size: 35px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-one .owl-carousel .owl-nav button.owl-next {
  transform: rotate(-180deg);
}

.projects-one .owl-carousel .owl-nav button.owl-prev span:before,
.projects-one .owl-carousel .owl-nav button.owl-next span:before {
  font-weight: 700;
}

.projects-one .owl-carousel .owl-nav button.owl-prev:hover,
.projects-one .owl-carousel .owl-nav button.owl-next:hover {
  color: var(--thm-gray);
}

/***
=====================================================
Counter Two
=====================================================
***/
.counter-one--two {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
}

.counter-one--two .counter-one__inner {
  border-top: 0px solid #e1e1e1;
  padding-top: 117px;
}

.counter-one--two .counter-one__single-inner .icon-box span:before {
  color: var(--thm-base);
}

.counter-one--two .counter-one__single-inner .content-box .left-text h2 {
  color: #ffffff;
}

.counter-one--two .counter-one__single-inner .content-box .right-text h3 {
  color: #999999;
}

.counter-one--two .counter-one__single::before {
  background: rgba(255, 255, 255, 0.15);
}

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

.faq-one__img {
  position: relative;
  display: block;
  max-width: 565px;
  width: 100%;
}

.faq-one__img .sec-title {
  padding-bottom: 51px;
}

.faq-one__img1 {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-one__img1 .shape1 {
  position: absolute;
  left: -30px;
  bottom: -40px;
  z-index: -1;
}

.faq-one__img1 .inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.faq-one__img1 .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.faq-one__img1:hover .inner::before {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.faq-one__img1:hover .inner img {
  transform: scale(1);
}

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

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

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
  background: var(--thm-primary);
}

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

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

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

.accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  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: 30px;
  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: "\e92b";
}

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

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

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


/*** 
============================================
	Testimonials Two
============================================
***/
.testimonials-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 165px;
  z-index: 2;
}

.testimonials-two__inner {
  position: relative;
  display: block;
}

.testimonials-two__inner .sec-title {
  padding-bottom: 0px;
  margin-bottom: -138px;
  z-index: 5;
}

.testimonials-two__img-box {
  position: absolute;
  top: -36px;
  right: 0;
  z-index: 5;
}

.testimonials-two__img-list {
  position: relative;
  display: block;
}

.testimonials-two__img-list li {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.testimonials-two__img-list li.ml85 {
  margin-left: 85px;
}

.testimonials-two__img-list li.pb20 {
  padding-bottom: 20px;
}

.testimonials-two__img-list li:last-child {
  margin-bottom: 0;
}

.testimonials-two__img-list-single {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-two__img-list-single img {
  width: 100%;
}

.testimonials-two__content {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonials-two__content .shape1 {
  position: absolute;
  top: -52px;
  right: 155px;
  z-index: -1;
}

.testimonials-two__content-single {
  position: relative;
  display: block;
  max-width: 1115px;
  width: 100%;
}

.testimonials-two__content-single-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.testimonials-two__content-single-inner .content-box {
  position: relative;
  display: block;
  max-width: 560px;
  width: 100%;
  flex: 1;
}

.testimonials-two__content-single-inner .content-box p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

.testimonials-two__content-single-inner .content-box .client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.testimonials-two__content-single-inner .content-box .client-info .img-box {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  margin-left: 0;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-two__content-single-inner .content-box .client-info .img-box img {
  width: 100%;
}

.testimonials-two__content-single-inner .content-box .client-info .title-box {
  position: relative;
  display: block;
  margin-left: 25px;
  flex: 1;
}

.testimonials-two__content-single-inner .content-box .client-info .title-box h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 5px;
}

.testimonials-two__content-single-inner .content-box .client-info .title-box p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.testimonials-two__content-single-inner .img-box {
  position: relative;
  display: block;
  margin-left: 75px;
  z-index: 1;
}

.testimonials-two__content-single-inner .img-box .inner {
  position: relative;
  display: block;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-two__content-single-inner .img-box .inner img {
  width: 100%;
}


.testimonials-two__nav {
  position: absolute;
  display: flex;
  align-items: center;
  margin-top: 0;
  bottom: 5px;
  z-index: 5;
  left: 318px;
}

#testimonials-two__swiper-button-next,
#testimonials-two__swiper-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--thm-gray);
  border: 2px solid #E1E1E1;
  font-size: 25px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#testimonials-two__swiper-button-next {
  margin-right: 30px;
}

#testimonials-two__swiper-button-prev {
  transform: rotate(-180deg);
}

#testimonials-two__swiper-button-next i:before,
#testimonials-two__swiper-button-prev i:before {
  font-weight: 400;
}

#testimonials-two__swiper-button-next:hover,
#testimonials-two__swiper-button-prev:hover {
  color: var(--thm-gray);
}

.testimonials-two__nav .swiper-button-next:after,
.testimonials-two__nav .swiper-button-prev:after {
  display: none;
}

/***
=====================================================
Video One
=====================================================
***/
.video-one {
  position: relative;
  display: block;
  padding: 230px 0px 224px;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-black);
  background-blend-mode: luminosity;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.video-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(23, 29, 0, 0.7), rgba(23, 29, 0, 0.7));
  content: "";
  z-index: -2;
}

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

.video-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.video-one__icon a:hover {
  color: #ffffff;
  background: var(--thm-black2);
}

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

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

.video-one__inner .title-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.video-one__inner .title-box p {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

/***
=====================================================
Brand Two
=====================================================
***/
.brand-two {
  position: relative;
  display: block;
  padding: 110px 0px 110px;
  z-index: 1;
}

.brand-two .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: .5s ease;
  overflow: hidden;
}

.brand-two .swiper-slide .img-box {
  position: relative;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.brand-two .swiper-slide:hover .img-box {
  transform: translateY(-100%);
}

.brand-two .swiper-slide .img-box img {
  opacity: 1.0;
  width: auto;
}

.brand-two .swiper-slide .img-box2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(100%);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.brand-two .swiper-slide:hover .img-box2 {
  transform: translateY(0);
}


/***
=====================================================
Appointment One
=====================================================
***/
.appointment-one {
  position: relative;
  display: block;
  z-index: 1;
}

.appointment-one__inner {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 40px 40px 40px;
  overflow: hidden;
  z-index: 1;
}

.appointment-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 495px;
  width: 100%;
  z-index: 1;
}

.appointment-one__img::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(23, 29, 0, 0.1), rgba(23, 29, 0, 0.1));
  content: "";
  z-index: 1;
}

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

.appointment-one__img:hover img {
  transform: scale(1);
}


.appointment-one__form {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-left: 33px;
}

.appointment-one__form .sec-title {
  padding-bottom: 23px;
}

.appointment-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 43px;
}

.appointment-one__form .input-box input[type="text"],
.appointment-one__form .input-box input[type="email"],
.appointment-one__form .input-box textarea {
  position: relative;
  display: block;
  background: var(--thm-primary);
  width: 100%;
  height: 55px;
  border: none;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 0px;
  padding-right: 20px;
  border-radius: 0px;
  border-bottom: 1px solid #E1E1E1;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.appointment-one__form .input-box textarea {
  width: 100%;
  height: 125px;
  padding-top: 15px;
  outline: none;
  resize: none;
}

.appointment-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form input[type="text"]:-moz-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form input[type="text"]::-moz-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form input[type="email"]:-moz-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form input[type="email"]::-moz-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form textarea::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form textarea:-moz-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form textarea::-moz-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form form textarea:-ms-input-placeholder {
  color: var(--thm-gray);
}

.appointment-one__form-btn {
  position: relative;
  display: block;
  margin-top: 7px;
}


/***
=====================================================
Subscribe Two
=====================================================
***/
.subscribe-one--two {
  position: relative;
  display: block;
  margin-bottom: 0;
}

.subscribe-one--two .subscribe-one__inner {
  background: #ffffff;
}

.subscribe-one--two .subscribe-one__content .icon-box span::before {
  color: var(--thm-base);
}

.subscribe-one--two .subscribe-one__form form input[type=text] {
  color: var(--thm-gray);
  border-bottom: 1px solid #E1E1E1;
}

.subscribe-one--two .subscribe-one__form-checkbox input[type="checkbox"]:checked+label span {
  border: 1px solid var(--thm-gray);
}

.subscribe-one--two .subscribe-one__form-checkbox label span:before {
  border-bottom: 2px solid rgba(var(--thm-gray-rgb), 0.5);
  border-right: 2px solid rgba(var(--thm-gray-rgb), 0.5);
}


/***
=====================================================
Footer One
=====================================================
***/
.footer-one--two {
  position: relative;
  display: block;
  padding: 110px 0px 0px;
  background: transparent;
  z-index: 1;
}

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

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

.footer-one--two .footer {
  overflow: hidden;
}

.subscribe-one--two {
  padding-bottom: 100px;
}

.footer-one--two .footer-widget__single-about {
  max-width: 425px;
  width: 100%;
}

.footer-widget__single-about .social-links {
  position: relative;
  display: block;
  margin-top: 35px;
}

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

.footer-widget__single-about .social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.footer-widget__single-about .social-links ul li:last-child {
  margin-right: 0;
}

.footer-widget__single-about .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.footer-widget__single-about .social-links ul li a:hover {
  color: var(--thm-black);
}

.footer-widget__single-about .social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 2px;
  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-widget__single-about .social-links ul li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-widget__single-about-menu {
  position: relative;
  display: block;
  margin-top: 39px;
}

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

.footer-widget__single-about-menu ul li {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  padding-right: 5px;
}

.footer-widget__single-about-menu ul li::before {
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  width: 1px;
  background: #999999;
  content: "";
}

.footer-widget__single-about-menu ul li:last-child:before {
  display: none;
}

.footer-widget__single-about-menu ul li a {
  position: relative;
  display: block;
  color: #999999;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__single-about-menu ul li a:hover {
  color: var(--thm-base);
}

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

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

.footer-one__right-single-post-single.mb0 {
  margin-bottom: 0;
}

.footer-one__right-single-post-single span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 10px;
}

.footer-one__right-single-post-single p {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.footer-one__right-single-post-single p a {
  color: #999999;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__right-single-post-single p a:hover {
  color: var(--thm-base);
}


.footer-one--two .footer-one__right-single-services {
  margin-left: -25px;
}

.footer-one--two .footer-one__right-single-post {
  margin-left: -20px;
}

.footer-one--two .footer-one__right-single-contact {
  margin-left: -25px;
}


/***
=============================================
Feature Three
=============================================
***/
.feature-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 80px;
  z-index: 1;
}

.feature-three__single {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 37px 40px 37px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-three__single-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 120px;
  height: 110px;
  z-index: 1;
}

.feature-three__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 70px;
  top: -5px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__single-icon span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.feature-three__single-content {
  position: relative;
  display: block;
  max-width: 240px;
  width: 100%;
}

.feature-three__single-content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.feature-three__single-content h3 a {
  color: #ffffff;
}

.feature-three__single-content p {
  color: #999999;
}


/***
=============================================
About Three
=============================================
***/
.about-three {
  position: relative;
  display: block;
  padding: 40px 0px 110px;
  z-index: 1;
}

.about-three::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 245px;
  width: 655px;
  background: #f5f6f0;
  content: "";
  z-index: -1;
}

.about-three__img {
  position: relative;
  display: block;
  margin-right: 50px;
  margin-top: 30px;
  z-index: 1;
}

.about-three__img::before {
  position: absolute;
  top: -30px;
  right: 0;
  width: 330px;
  height: 10px;
  background: var(--thm-base);
  content: "";
  z-index: 1;
}

.about-three__img-inner {
  position: relative;
  display: block;
}

.about-three__img-inner img {
  width: 100%;
}


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

.about-three__content .sec-title {
  padding-bottom: 21px;
}

.about-three__content-text {
  position: relative;
  display: block;
}

.about-three__content-text p {
  font-size: 18px;
  line-height: 28px;
}

.about-three__content-text2 {
  position: relative;
  display: block;
  background: var(--thm-black2);
  border-radius: 10px;
  overflow: hidden;
  padding: 43px 40px 41px;
  margin-top: 32px;
  z-index: 1;
}

.about-three__content-text2 .icon-box {
  position: absolute;
  bottom: 25px;
  right: 35px;
  z-index: -1;
}

.about-three__content-text2 .icon-box span:before {
  position: relative;
  display: inline-block;
  color: rgba(238, 238, 238, 0.2);
  font-size: 85px;
}

.about-three__content-text2 h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
}

.about-three__content-list {
  position: relative;
  display: block;
  margin-top: 34px;
}

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

.about-three__content-list-single.style2 {
  margin-left: -10px;
}

.about-three__content-list-single ul {
  position: relative;
  display: block;
}

.about-three__content-list-single ul li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.about-three__content-list-single ul li:last-child {
  margin-bottom: 0;
}

.about-three__content-list-single ul li p {
  margin: 0;
}

.about-three__content-list-single ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 17px;
  font-weight: 700;
  padding-right: 3px;
  top: 1px;
}

.about-three__btn {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 7px;
}


/***
=============================================
Service Three
=============================================
***/
.service-three {
  position: relative;
  display: block;
  background: #f5f6f0;
  padding: 110px 0px 110px;
  z-index: 1;
}

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

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

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

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

.service-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-black2-rgb), 0.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

.service-three__single:hover .service-three__single-img .inner:before {
  opacity: 1;
}

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

.service-three__single:hover .service-three__single-img .inner img {
  transform: scale(1);
}

.service-three__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 30px 30px 29px;
  margin-top: -115px;
  margin-left: 90px;
  z-index: 5;
}

.service-three__single-content .top-content {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-three__single-content .top-content .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 70px;
  height: 70px;
}

.service-three__single-content .top-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  margin-right: -40px;
  font-size: 50px;
}

.service-three__single-content .top-content .title-box {
  position: relative;
  display: block;
  margin-left: 35px;
}

.service-three__single-content .top-content .title-box h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  font-family: var(--thm-font);
}

.service-three__single-content .top-content .title-box h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-three__single-content .top-content .title-box h2 a:hover {
  color: var(--thm-base);
}

.service-three__single-content .text-box {
  position: relative;
  display: block;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 17px;
}

.service-three__single-content .text-box p {
  margin: 0;
}

.service-three__single-content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 20px;
}

.service-three__single-content .btn-box a {
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-three__single-content .btn-box a:hover {
  color: var(--thm-base);
}

.service-three__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  top: 0px;
}


.service-three .owl-theme .owl-nav {
  position: absolute;
  top: 33%;
  left: 0%;
  right: 0;
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  transform: translateY(-50%);
  z-index: 5;
}

.service-three .owl-carousel .owl-nav button.owl-prev,
.service-three .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(153, 153, 153, 0.1);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 20px;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.service-three .owl-carousel .owl-nav button.owl-prev:hover,
.service-three .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--thm-base);
  color: var(--thm-black);
}

.service-three .owl-carousel .owl-nav button.owl-prev {
  float: left;
  left: -120px;
}

.service-three .owl-carousel .owl-nav button.owl-next {
  float: right;
  transform: rotate(180deg);
  right: -120px;
}


/***
=============================================
Appointment Two
=============================================
***/
.appointment-two {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 110px 0px 0px;
  z-index: 1;
}

.appointment-two .sec-title {
  z-index: 5;
}

.appointment-two .shape1 {
  position: absolute;
  top: 115px;
  left: 110px;
  opacity: 0.2;
  z-index: -1;
}

.appointment-two .shape2 {
  position: absolute;
  left: 110px;
  bottom: 150px;
  opacity: 0.2;
  z-index: -1;
}

.appointment-two .shape2 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.appointment-two .shape3 {
  position: absolute;
  top: 100px;
  left: 54%;
  opacity: 0.3;
  z-index: -1;
}

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

.appointment-two .sec-title__tagline h6 {
  color: var(--thm-base);
}

.appointment-two .sec-title__tagline h6::before {
  background: rgba(255, 255, 255, .3);
}

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

.appointment-two__inner {
  position: relative;
  display: block;
  max-width: 900px;
  width: 100%;
  background: var(--thm-base);
  padding: 60px 60px 60px;
  z-index: 1;
}

.appointment-two__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.appointment-two__form .input-box input[type="text"],
.appointment-two__form .input-box input[type="email"],
.appointment-two__form .input-box textarea {
  position: relative;
  display: block;
  background: #AED413;
  width: 100%;
  height: 60px;
  border: none;
  color: var(--thm-black);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 30px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.appointment-two__form .input-box textarea {
  width: 100%;
  height: 150px;
  padding-top: 18px;
  outline: none;
  resize: none;
}

.appointment-two__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form input[type="text"]:-moz-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form input[type="text"]::-moz-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form input[type="text"]:-ms-input-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form input[type="email"]:-moz-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form input[type="email"]::-moz-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form input[type="email"]:-ms-input-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form textarea::-webkit-input-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form textarea:-moz-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form textarea::-moz-placeholder {
  color: var(--thm-black);
}

.appointment-two__form form textarea:-ms-input-placeholder {
  color: var(--thm-black);
}

.contact-two__form-btn {
  position: relative;
  display: block;
  margin-right: 20px;
}

.contact-two__form-btn .thm-btn {
  color: #ffffff;
}

.contact-two__form-btn .thm-btn:hover {
  color: var(--thm-black);
}

.contact-two__form-btn .thm-btn::after {
  background: var(--thm-black);
}

.contact-two__form-btn .thm-btn::before {
  background: #ffffff;
}

.contact-two__form-bottom {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-two__form-bottom .contact-info {
  position: relative;
  display: block;
  padding-left: 20px;
}

.contact-two__form-bottom .contact-info::before {
  position: absolute;
  top: 7px;
  left: 0;
  bottom: 7px;
  width: 1px;
  background: rgba(161, 198, 10, 0.5);
  content: "";
}

.contact-two__form-bottom .contact-info p {
  color: var(--thm-black);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

.contact-two__form-bottom .contact-info h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-top: 3px;
}

.contact-two__form-bottom .contact-info h3 a {
  color: var(--thm-black);
}


/***
=============================================
Price Two
=============================================
***/
.price-two {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 110px 0px 80px;
  z-index: 1;
}

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

.price-two__single {
  position: relative;
  display: block;
  background: var(--thm-primary);
  border: 20px solid #ffffff;
  padding: 40px 40px 40px;
  margin-bottom: 30px;
  z-index: 1;
}

.price-two__single::after {
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  border: 20px solid var(--thm-black);
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0;
  content: "";
}

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

.price-two__single::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-base);
  border-radius: 0px;
  opacity: 0;
  content: "";
  z-index: -1;
}

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

.price-two__single-inner {
  position: relative;
  display: block;
}

.price-two__single-inner .table-header {
  position: relative;
  display: block;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 22px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header {
  border-color: #A1C60A;
}

.price-two__single-inner .table-header .title-box {
  position: relative;
  display: inline-block;
  background: var(--thm-base);
  padding: 2px 15px 2px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 9px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header .title-box {
  background: var(--thm-black);
}

.price-two__single-inner .table-header .title-box span {
  color: var(--thm-black);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header .title-box span {
  color: #ffffff;
}

.price-two__single-inner .table-header h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
}

.price-two__single-inner .table-header p {
  color: #999999;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-header p {
  color: rgba(var(--thm-black-rgb), 0.8);
}

.price-two__single-inner .table-content {
  position: relative;
  display: block;
  margin-top: 23px;
}

.price-two__single-inner .table-content ul {
  position: relative;
  display: block;
}

.price-two__single-inner .table-content ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.price-two__single-inner .table-content ul li:last-child {
  margin-bottom: 0;
}

.price-two__single-inner .table-content ul li .icon-box {
  position: relative;
  display: block;
}

.price-two__single-inner .table-content ul li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-content ul li .icon-box span:before {
  color: rgba(var(--thm-black-rgb), 0.8);
}

.price-two__single-inner .table-content ul li .text-box {
  position: relative;
  display: block;
  margin-left: 7px;
}

.price-two__single-inner .table-content ul li .text-box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.price-two__single:hover .price-two__single-inner .table-content ul li .text-box p {
  color: rgba(var(--thm-black-rgb), 0.8);
}

.price-two__single-inner .table-footer {
  position: relative;
  display: block;
  margin-top: 32px;
}

.price-two__single-inner .table-footer .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.price-two__single-inner .table-footer .btn-box .thm-btn {
  color: #ffffff;
}

.price-two__single-inner .table-footer .btn-box .thm-btn:hover {
  color: var(--thm-black);
}

.price-two__single-inner .table-footer .btn-box .thm-btn::before {
  background: #ffffff;
}

.price-two__single-inner .table-footer .btn-box .thm-btn::after {
  background: var(--thm-black);
}

/***
=============================================
Why Choose Two
=============================================
***/
.why-choose-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.why-choose-two__img {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 600px;
  width: 100%;
}

.why-choose-two__img1 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  float: left;
  z-index: 1;
}

.why-choose-two__img1 img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s ease 0s;
}

.why-choose-two__img1:hover img {
  transform: scale(1.1);
}

.why-choose-two__img1::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.why-choose-two__img1:hover::before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.why-choose-two__img2 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  float: left;
  margin-left: 10px;
  z-index: 1;
}

.why-choose-two__img2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.why-choose-two__img2:hover::before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.why-choose-two__img2 img {
  width: 100%;
  transform: scale(1);
  transition: all 0.7s ease 0s;
}

.why-choose-two__img2:hover img {
  transform: scale(1.1);
}

.why-choose-two__content {
  position: relative;
  display: block;
  max-width: 530px;
  width: 100%;
}

.why-choose-two__content .sec-title {
  padding-bottom: 38px;
}

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

.why-choose-two__content-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}


.why-choose-two__progress {
  position: relative;
  display: block;
  margin-top: 42px;
}

.why-choose-two__progress-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.why-choose-two__progress-single .progress-box {
  position: relative;
  display: block;
  line-height: 0;
}

.why-choose-two__progress-single .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

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

.why-choose-two__progress-single .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--thm-font-2);
}

.why-choose-two__progress-single .progress-box .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 22px;
  font-weight: 700;
}

.why-choose-two__progress-single .title-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

.why-choose-two__progress-single .title-box h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.why-choose-two__content-text2 {
  position: relative;
  display: block;
  padding-top: 9px;
}

.why-choose-two__content-text2 p {
  margin: 0;
}

.why-choose-two__content-btn {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 42px;
}

.why-choose-two__content-btn .thm-btn {
  color: #ffffff;
}

.why-choose-two__content-btn .thm-btn:hover {
  color: var(--thm-black);
}

.why-choose-two__content-btn .thm-btn::before {
  background: var(--thm-base);
}

.why-choose-two__content-btn .thm-btn::after {
  background: var(--thm-black);
}

/***
=============================================
Projects Two
=============================================
***/
.projects-two {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 110px 0px 240px;
  z-index: 1;
}

.projects-two .sec-title__tagline h6 {
  color: var(--thm-base);
}

.projects-two .sec-title__tagline h6::before {
  background: rgba(255, 255, 255, .3);
}

.projects-two .container-fluid {
  padding-right: var(--bs-gutter-x, .0rem);
  padding-left: var(--bs-gutter-x, .0rem);
}

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

.projects-two__inner {
  position: relative;
  display: block;
}

.projects-two__single {
  position: relative;
  display: block;
}

.projects-two__single-inner {
  position: relative;
  display: block;
}

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

.projects-two__single-img img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.projects-two__single:hover .projects-two__single-img img {
  transform: scale(1.2) rotate(1deg);
}

.projects-two__single-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #ffffff;
  opacity: 0.3;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.projects-two__single:hover .projects-two__single-img:before {
  opacity: 0.30;
  transform: scaleY(1.0);
}

.projects-two__single-img:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #ffffff;
  opacity: 0.3;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.projects-two__single:hover .projects-two__single-img:after {
  opacity: 0.30;
  transform: scaleY(1.0);
}

.projects-two__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: scale(0);
  transition: all 700ms ease 200ms;
  z-index: 5;
}

.projects-two__single:hover .projects-two__link {
  opacity: 1;
  transform: scale(1.0);
  transition: all 600ms ease 700ms;
}

.projects-two__link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--thm-base);
  border-radius: 50%;
  font-size: 15px;
  color: var(--thm-black);
  font-weight: 700;
  text-align: center;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

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

/***
=============================================
Cta One
=============================================
***/
.cta-one--two {
  position: relative;
  display: block;
  background: transparent;
  padding: 0px 0px 0px;
}

.cta-one--two .cta-one__inner {
  position: relative;
  background: var(--thm-base);
  padding: 89px 80px 85px;
  margin-top: -133px;
  z-index: 5;
}

.cta-one--two .cta-one__inner .shape2 {
  position: absolute;
  top: 0;
  left: 110px;
  z-index: -1;
}

/***
=============================================
Faq One Two
=============================================
***/
.faq-one--two {
  position: relative;
  display: block;
  padding-bottom: 110px;
  background: #ffffff;
}

.faq-one--two .accordion-box .block {
  background: transparent;
  border: 1px solid #E1E1E1;
}

.faq-one--two .accordion-box .block .acc-btn .icon-outer {
  color: var(--thm-gray);
}

.faq-one--two .faq-one__img .sec-title {
  padding-bottom: 61px;
}


/***
=============================================
Testimonials Three
=============================================
***/
.testimonials-three {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 110px 0px 110px;
  z-index: 1;
}

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

.testimonials-three__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 365px;
  height: 365px;
  border: 35px solid #ffffff;
  background: var(--thm-base);
  border-radius: 50%;
}

.testimonials-three__icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 145px;
}

.testimonials-three__content {
  position: relative;
  display: block;
  max-width: 795px;
  width: 100%;
  margin-left: 50px;
  overflow: hidden;
  flex: 1;
}

.testimonials-three__content-inner {
  position: relative;
  display: block;
}

.testimonials-three__single {
  position: relative;
  display: block;
  max-width: 795px;
  width: 100%;
}

.testimonials-three__single .client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-three__single .client-info .img-box {
  position: relative;
  display: block;
  width: 80px;
}

.testimonials-three__single .client-info .img-box img {
  width: 100%;
}

.testimonials-three__single .client-info .title-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonials-three__single .client-info .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.testimonials-three__single .client-info .title-box p {
  text-transform: capitalize;
  margin: 0;
}

.testimonials-three__single .text-box {
  position: relative;
  display: block;
  margin-top: 31px;
}

.testimonials-three__single .text-box h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  font-family: var(--thm-font);
}

.testimonials-three__single .rating-box {
  position: relative;
  display: block;
  margin-top: 32px;
}

.testimonials-three__single .rating-box ul li span {
  color: #ffa818;
}


.testimonials-three__carousel.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0px;
  position: absolute;
  left: 344px;
  top: 27px;
}

.testimonials-three__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e1e1e1;
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonials-three__carousel.owl-carousel .owl-dot.active {
  background-color: #999999;
}

.testimonials-three__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

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


/***
=============================================
Blog Two
=============================================
***/
.blog-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 72px;
  z-index: 1;
}

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

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

.blog-two__single-img .overlay-text {
  position: absolute;
  left: 10px;
  bottom: -15px;
  z-index: 5;
}

.blog-two__single-img .overlay-text span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  background: var(--thm-base);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  padding: 5px 20px 4px;
}

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

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

.blog-two__single:hover .blog-two__single-img-inner:before {
  opacity: 1;
}

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

.blog-two__single:hover .blog-two__single-img-inner img {
  transform: scale(1);
}

.blog-two__single-content {
  position: relative;
  display: block;
  padding: 35px 10px 0px;
  padding-right: 0px;
}

.blog-two__single-content p {
  color: var(--thm-black);
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.blog-two__single-content p span {
  color: var(--thm-gray);
}

.blog-two__single-content h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  font-family: var(--thm-font);
  margin-bottom: 17px;
}

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

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

.blog-two__single-content .btn-box {
  position: relative;
  display: block;
  border-top: 1px solid #E1E1E1;
  padding-top: 17px;
}

.blog-two__single-content .btn-box a {
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-two__single-content .btn-box a:hover {
  color: var(--thm-base);
}

.blog-two__single-content .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
}


/***
=====================================================
Footer Three
=====================================================
***/
.footer-one--three {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
  z-index: 1;
}

.footer-one--three__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.05;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.footer-one--three .shape5 {
  position: absolute;
  top: 80px;
  left: 100px;
  opacity: 0.2;
  z-index: -1;
}

.footer-one--three .shape6 {
  position: absolute;
  right: 110px;
  bottom: 245px;
  opacity: 0.2;
  z-index: -1;
}


.footer-one--three .brand-one {
  padding: 65px 0 63px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
}

.footer-one--three .footer {
  padding-top: 110px;
}

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

.team-one--about.team-one .sec-title__tagline h6 {
  color: var(--thm-black);
}

.team-one--about.team-one .sec-title__title {
  color: var(--thm-black);
}

.team-one--about.team-one .sec-title__tagline h6::before {
  background: var(--thm-base);
}

.team-one--about .team-one__single-content h2 a {
  color: var(--thm-black);
}

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

.team-one--about .team-one__single-content p {
  color: var(--thm-gray);
}


/***
=============================================
Working Process One
=============================================
***/
.working-process-one {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 110px 0px 80px;
  z-index: 1;
}

.working-process-one .shape2 {
  position: absolute;
  top: 90px;
  left: 110px;
  opacity: 0.3;
  z-index: -1;
}

.working-process-one .shape3 {
  position: absolute;
  left: 120px;
  bottom: 115px;
  opacity: 0.3;
  z-index: -1;
}

.working-process-one .shape3 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.working-process-one .shape4 {
  position: absolute;
  top: 100px;
  right: 110px;
  opacity: 0.3;
  z-index: -1;
}

.working-process-one .shape5 {
  position: absolute;
  right: 90px;
  bottom: 110px;
  opacity: 0.3;
  z-index: -1;
}

.working-process-one__pattern {
  position: absolute;
  top: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.08;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.working-process-one .sec-title__tagline h6 {
  color: var(--thm-base);
}

.working-process-one .sec-title__tagline h6::before {
  background: rgba(255, 255, 255, .3);
}

.working-process-one .sec-title__title {
  color: #ffffff;
}

.working-process-one__single {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 35px 20px 32px;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.working-process-one__single.mt30 {
  margin-top: 30px;
}

.working-process-one__single .number-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E4E6DF;
  font-weight: 600;
  font-size: 80px;
  line-height: 90px;
  font-family: var(--thm-font-2);
  z-index: -1;
}

.working-process-one__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  z-index: 1;
}

.working-process-one__single-icon span::before {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  color: var(--thm-black);
  font-size: 50px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
  margin-right: -35px;
}

.working-process-one__single:hover .working-process-one__single-icon span::before {
  transform: scale(0.9);
}

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

.working-process-one__single-content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  margin-top: 27px;
  margin-bottom: 9px;
}

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

.working-process-one__single-content h3 a:hover {
  color: var(--thm-black);
}

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

/***
=============================================
Testimonials Two About
=============================================
***/
.testimonials-two--about {
  position: relative;
  display: block;
}

/***
=============================================
Brand Two About
=============================================
***/
.brand-two--about {
  position: relative;
  display: block;
  background: var(--thm-primary);
  z-index: 1;
}

.brand-two--about__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.25;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

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

/***
=============================================
Appointment One Services
=============================================
***/
.appointment-one--services {
  position: relative;
  display: block;
  margin-top: 110px;
}

/***
=============================================
Service Details
=============================================
***/
.service-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

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

.service-details__sidebar-single {
  position: relative;
  display: block;
}

.service-details__sidebar-single+.service-details__sidebar-single {
  margin-top: 30px;
}

.service-details__sidebar-services {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 42px 40px 50px;
  z-index: 1;
}

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

.service-details__sidebar-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.service-details__sidebar-single .title-box h2 {
  position: relative;
  display: inline-block;
  padding-left: 7px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  z-index: 1;
}

.service-details__sidebar-single .title-box h2::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.service-details__sidebar-services-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-details__sidebar-services-box li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.service-details__sidebar-services-box li:last-child {
  margin-bottom: 0;
}

.service-details__sidebar-services-box li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--thm-gray);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  background: #ffffff;
  padding: 8px 0px 8px;
  padding-left: 20px;
  padding-right: 10px;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.service-details__sidebar-services-box li a:hover,
.service-details__sidebar-services-box li a.active {
  color: var(--thm-black);
}

.service-details__sidebar-services-box li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  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;
}

.service-details__sidebar-services-box li a:hover::before,
.service-details__sidebar-services-box li a.active::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__sidebar-services-box li a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: transparent;
  color: var(--thm-gray);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.service-details__sidebar-services-box li a:hover span,
.service-details__sidebar-services-box li a.active span {
  color: var(--thm-base);
}

.service-details__sidebar-services-box li a span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: var(--thm-black);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-details__sidebar-services-box li a:hover span::after,
.service-details__sidebar-services-box li a.active span::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.service-details__sidebar-contact {
  position: relative;
  display: block;
  z-index: 1;
}

.service-details__sidebar-contact-box {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 60px 10px 60px;
  z-index: 1;
}

.service-details__sidebar-contact-pattern {
  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;
}

.service-details__sidebar-contact-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.service-details__sidebar-contact-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 50px;
}

.service-details__sidebar-contact-box h2 {
  color: #000000;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  text-transform: capitalize;
}

.service-details__sidebar-contact-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 31px;
}

.service-details__sidebar-contact-box .btn-box .thm-btn {
  color: #ffffff;
}

.service-details__sidebar-contact-box .btn-box .thm-btn:hover {
  color: var(--thm-black);
}

.service-details__sidebar-contact-box .btn-box .thm-btn:after {
  background: var(--thm-black);
}

.service-details__sidebar-contact-box .btn-box .thm-btn::before {
  background: #ffffff;
}


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

.service-details__content-img1 {
  position: relative;
  display: block;
}

.service-details__content-img1 img {
  width: 100%;
}

.service-details__content .text-box1 {
  position: relative;
  display: block;
  margin-top: 40px;
}

.service-details__content .text-box1 h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.service-details__content .text-box1 .text1 {
  margin-bottom: 23px;
}

.service-details__content .text-box1 .text2 {
  margin: 0;
}

.service-details__content .text-box2 {
  position: relative;
  display: block;
  margin-top: 27px;
}

.service-details__content .text-box2 .title-box {
  position: relative;
  display: block;
}

.service-details__content .text-box2 .title-box h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
}

.service-details__content .text-box2 .working-process-one__single {
  background: transparent;
  padding: 35px 0px 2px;
  margin-bottom: 30px;
  border-radius: 0px;
}

.service-details__content .text-box3 {
  position: relative;
  display: block;
}

.service-details__content .text-box3 h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.service-details__content .text-box3 p {
  margin: 0;
}

.service-details__content-img2 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.service-details__content-img2 .single-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.service-details__content-img2 .single-box .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-details__content-img2 .single-box .img-box img {
  width: 100%;
}


.service-details__content .text-box4 {
  position: relative;
  display: block;
  padding-top: 9px;
}

.service-details__content .text-box4 .text1 {
  margin: 0;
  margin-bottom: 27px;
}

.service-details__content .text-box4 h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.service-details__content .text-box4 .text2 {
  margin: 0;
}

.service-details__content .text-box5 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.service-details__content .text-box5 .img-box {
  position: relative;
  display: block;
}

.service-details__content .text-box5 .img-box img {
  width: 100%;
}

.service-details__content .text-box5 .content-box {
  position: relative;
  display: block;
  margin-top: 8px;
}

.service-details__content .text-box5 .content-box ul {
  position: relative;
  display: block;
}

.service-details__content .text-box5 .content-box ul li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.service-details__content .text-box5 .content-box ul li:last-child {
  margin-bottom: 0;
}

.service-details__content .text-box5 .content-box ul li p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.service-details__content .text-box5 .content-box ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 700;
  padding-right: 3px;
}

.service-details__content .text-box6 {
  position: relative;
  display: block;
  margin-top: 40px;
}

.service-details__content .text-box6 h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.service-details__content .text-box6 p {
  margin: 0;
}

.service-details__content .text-box6 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 37px;
}

.service-details__content .text-box6 .img-box img {
  width: 100%;
}

/***
=============================================
Counter Three
=============================================
***/
.counter-one--two.style3 {
  position: relative;
  display: block;
  background: var(--thm-black2);
  z-index: 1;
}

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

.counter-one--two.style3 .counter-one__inner {
  border-top: 0px solid #e1e1e1;
  padding-top: 117px;
  padding-bottom: 60px;
}

/***
=============================================
project Three
=============================================
***/
.project-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 102px 0px 40px;
  z-index: 1;
}

.project-three__menu-box {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 47px;
}

.project-three__menu-box .project-filter {
  position: relative;
  display: block;
  z-index: 1;
}

.project-three__menu-box .project-filter li {
  position: relative;
  display: inline-block;
  margin-right: 40px;
}

.project-three__menu-box .project-filter li:last-child {
  margin-right: 0;
}

.project-three__menu-box .project-filter li .filter-text {
  position: relative;
  display: block;
  padding-left: 5px;
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.project-three__menu-box .project-filter li .filter-text::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0);
  transition: all 200ms ease;
  z-index: -1;
}

.project-three__menu-box .project-filter li:hover .filter-text::before,
.project-three__menu-box .project-filter li.active .filter-text::before {
  transform: scale(1);
  opacity: 1;
  transition-delay: 200ms;
}

.project-three__menu-box .project-filter li:hover .filter-text,
.project-three__menu-box .project-filter li.active .filter-text {
  color: var(--thm-black);
}

.project-three__menu-box .project-filter li .count {
  display: none;
}

.project-three__single {
  position: relative;
  display: block;
  margin-bottom: 59px;
}

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

.project-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-black2-rgb), 0.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

.project-three__single:hover .project-three__single-img::before {
  opacity: 1;
  opacity: 0.6;
}

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

.project-three__single:hover .project-three__single-img img {
  transform: scale(1);
}

.project-three__single-content {
  position: relative;
  display: block;
  margin-top: 19px;
}

.project-three__single-content p {
  margin: 0;
}

.project-three__single-content h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  margin-top: 7px;
  z-index: 1;
}

.project-three__single-content h2 a {
  color: var(--thm-black);
}

.project-three__single-content h2 a span {
  position: relative;
  display: inline-block;
}

.project-three__single-content h2 a span::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 6px;
  right: 0px;
  height: 2px;
  background: var(--thm-black);
  z-index: -1;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.project-three__single .project-three__single-content h2 a:hover span::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}


/***
=============================================
Case Details
=============================================
***/
.case-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 37px;
  z-index: 1;
}

.case-details__text-box1 {
  position: relative;
  display: block;
}

.case-details__text-box1 .sec-title {
  padding-bottom: 28px;
}

.case-details__text-box1 p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.case-details__img-box1 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.case-details__img-box1 .single-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.case-details__img-box1 .single-img img {
  width: 100%;
}

.case-details__text-box2 {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 30px 60px 28px;
  margin-top: 30px;
}

.case-details__text-box2 ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.case-details__text-box2 ul li {
  position: relative;
  display: inline-block;
  padding-right: 55px;
  margin-left: 55px;
}

.case-details__text-box2 ul li:first-child {
  margin-left: 0;
}

.case-details__text-box2 ul li:last-child {
  padding-right: 0;
}

.case-details__text-box2 ul li::before {
  position: absolute;
  top: -10px;
  right: 0;
  bottom: -8px;
  width: 1px;
  background: #A1C60A;
  opacity: 0.7;
  content: "";
}

.case-details__text-box2 ul li:last-child:before {
  display: none;
}

.case-details__text-box2 ul li p {
  color: var(--thm-black);
  margin: 0;
  margin-bottom: 7px;
}

.case-details__text-box2 ul li h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
}

.case-details__text-box3 {
  position: relative;
  display: block;
  margin-top: 40px;
}

.case-details__text-box3 h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.case-details__text-box3 .text1 {
  margin-bottom: 28px;
}

.case-details__text-box3 .text2 {
  margin: 0;
}

.case-details__text-box4 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.case-details__text-box4-left {
  position: relative;
  display: block;
}

.case-details__text-box4-left .title-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.case-details__text-box4-left .title-box h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
}

.case-details__text-box4-right {
  position: relative;
  display: block;
}

.case-details__text-box4-right .text-box {
  position: relative;
  display: block;
}

.case-details__text-box4-right .text-box h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 19px;
}

.case-details__text-box4-right .text-box .text1 {
  margin: 0;
}

.case-details__text-box4-right .text-box .text2 {
  margin-top: 21px;
}

.case-details__text-box4-right .img-box {
  position: relative;
  display: block;
  margin-top: 27px;
}

.case-details__text-box4-right .img-box img {
  width: 100%;
}

.case-details__text-box5 {
  position: relative;
  display: block;
  padding-top: 10px;
}

.case-details__text-box5 h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.case-details__text-box5 p {
  margin: 0;
}

/***
=============================================
Cta Three
=============================================
***/
.cta-one--two.style3 {
  position: relative;
  display: block;
}

.cta-one--two.style3 .cta-one__inner {
  margin-top: 0px;
}

/***
=============================================
Project Three Case
=============================================
***/
.project-three--case {
  position: relative;
  display: block;
  padding: 110px 0px 40px;
}

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

.faq-one--pricing .border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 1320px;
  background: #E1E1E1;
  margin: 0 auto;
}

/***
=============================================
Faq Page
=============================================
***/
.faq-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 104px 0px 110px;
  z-index: 1;
}

.faq-page__search {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.faq-page__search .title-box {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.faq-page__search .title-box h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
}

.faq-page__search-form {
  position: relative;
  display: block;
}

.faq-page__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: #ffffff;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  padding-left: 30px;
  height: 80px;
  width: 100%;
  padding-right: 85px;
  border-radius: 3px;
  border: 1px solid #e1e1e1;
}

.faq-page__search-form::-webkit-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.faq-page__search-form::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.faq-page__search-form::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.faq-page__search-form::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.faq-page__search-form::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.faq-page__search-form::-ms-input-placeholder {
  color: var(--thm-gray);
}

.faq-page__search-form::-ms-input-placeholder {
  color: var(--thm-gray);
}

.faq-page__search-form button[type="submit"] {
  background-color: var(--thm-base);
  color: var(--thm-black);
  font-size: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 70px;
  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;
}

.faq-page__search-form:hover button[type="submit"] {
  background-color: var(--thm-black);
  color: #ffffff;
}

.faq-page__tab-button {
  position: relative;
  display: block;
  background: var(--thm-black2);
  padding: 32px 30px 32px;
  z-index: 1;
}

.faq-page__tab-button-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.faq-page__tab-button .title-box {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.faq-page__tab-button .title-box h2 {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  padding-left: 5px;
  z-index: 1;
}

.faq-page__tab-button .title-box h2::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  z-index: -1;
}


.faq-page__tab-button .tab-buttons {
  position: relative;
  display: block;
}

.faq-page__tab-button .tab-buttons .tab-btn {
  position: relative;
  display: block;
  color: #999999;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--thm-font);
  border-radius: 0px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.faq-page__tab-button .tab-buttons li.tab-btn {
  border-bottom: 1px solid rgba(245, 246, 240, 0.2);
  padding-bottom: 18px;
  margin-top: 18px;
}

.faq-page__tab-button .tab-buttons li:last-child.tab-btn {
  border-bottom: none;
  padding-bottom: 0px;
}

.faq-page__tab-button .tab-buttons li:first-child.tab-btn {
  margin-top: 0;
}

.faq-page__tab-button .tab-buttons .tab-btn:hover,
.faq-page__tab-button .tab-buttons .tab-btn.active-btn {
  color: #ffffff;
}

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

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

.tabs-content__inner .accordion-box .block .acc-content p {
  max-width: 580px;
  width: 100%;
}

.faq-page .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -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;
}

.faq-page .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}


/***
=============================================
Testimonials Three Faq
=============================================
***/
.testimonials-three--faq {
  position: relative;
  display: block;
  background: #ffffff;
}

.testimonials-three--faq .testimonials-three__icon {
  border: 35px solid #f5f6f0;
}


/***
=============================================
Blog Page
=============================================
***/
.blog-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.blog-page__content {
  position: relative;
  display: block;
}

.blog-page__content-single {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.blog-page__content-single-img {
  position: relative;
  display: block;
}

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

.blog-page__content-single-img .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.blog-page__content-single:hover .blog-page__content-single-img .inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

.blog-page__content-single:hover .blog-page__content-single-img .inner img {
  transform: scale(1);
}

.blog-page__content-single-content {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 40px 40px 37px;
  margin-left: 90px;
  margin-top: -125px;
  z-index: 5;
}

.blog-page__content-single-content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}

.blog-page__content-single-content p span {
  color: var(--thm-black);
}

.blog-page__content-single-content h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  font-family: var(--thm-font);
  margin-top: 10px;
  margin-bottom: 20px;
}

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

.blog-page__content-single-content h2 a:hover {
  color: var(--thm-black);
}

.blog-page__content-single-content .btn-box {
  position: relative;
  display: block;
  border-top: 1px solid #E1E1E1;
  padding-top: 22px;
}

.blog-page__content-single-content .btn-box a {
  color: var(--thm-gray);
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page__content-single-content .btn-box a:hover {
  color: var(--thm-black);
}

.blog-page__content-single-content .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  top: -1px;
}

.blog-page__content-single.video {
  position: relative;
  display: block;
}

.blog-page__content-single.video .blog-page__content-single-img .inner::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #0a184a;
  opacity: 0.5;
  content: "";
}

.blog-page-video__icon {
  position: absolute;
  top: -130px;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.blog-page-video__icon a {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--thm-base);
  text-align: center;
  color: var(--thm-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-page-video__icon a:hover {
  color: #ffffff;
  background: var(--thm-black2);
}

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

.blog-page-video__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 37%;
  left: 50px;
  right: 50px;
  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: row;
  justify-content: space-between;
  align-items: center;
  transform: scaleX(1.0) translateX(0px);
  z-index: 999;
}

.blog-page__content-single-img-carousel.owl-theme .owl-prev span,
.blog-page__content-single-img-carousel.owl-theme .owl-next span {
  display: block;
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-prev,
.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  height: 60px;
  width: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
  margin: 0;
  padding: 0;
  transform: translateY(0px);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 99;
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-next {
  transform: rotate(180deg);
}

.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-prev:hover,
.blog-page__content-single-img-carousel.owl-theme .owl-nav .owl-next:hover {
  color: var(--thm-base);
  border-color: var(--thm-base);
  z-index: 99;
}

.blog-page__content-single.style2 .blog-page__content-single-img .inner::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.4);
  content: "";
  z-index: 1;
}

/***
=============================================
Sidebar
=============================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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

.sidebar-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.sidebar-single .title-box h2 {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  z-index: 1;
}

.sidebar-single .title-box h2::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  z-index: -1;
}


.sidebar__search {
  position: relative;
  display: block;
  background-color: var(--thm-primary);
  padding: 42px 40px 50px;
  z-index: 1;
}

.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: 400;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 40px;
  border-radius: 0px;
}

.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: transparent;
  color: var(--thm-black);
  font-size: 17px;
  position: absolute;
  top: 0px;
  right: 30px;
  bottom: 0px;
  width: 0px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  color: var(--thm-base);
}


.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--thm-primary);
  padding: 42px 40px 50px;
  z-index: 1;
}

.sidebar__category-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar__category-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

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

.sidebar__category-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--thm-gray);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  background: #ffffff;
  padding: 8px 0px 8px;
  padding-left: 20px;
  padding-right: 10px;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.sidebar__category-list li a:hover,
.sidebar__category-list li a.active {
  color: var(--thm-black);
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  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;
}

.sidebar__category-list li a:hover::before,
.sidebar__category-list li a.active::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.sidebar__category-list li a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: transparent;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li a.active span {
  color: var(--thm-base);
}

.sidebar__category-list li a span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: var(--thm-black);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.sidebar__category-list li a:hover span::after,
.sidebar__category-list li a.active span::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}


.sidebar__recent-post {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 42px 40px 50px;
  z-index: 1;
}

.sidebar__recent-pos-list {
  position: relative;
  display: block;
}

.sidebar__recent-pos-list li {
  position: relative;
  display: block;
  border-bottom: 1px solid #E1E1E1;
  margin-top: 25px;
  padding-bottom: 25px;
}

.sidebar__recent-pos-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar__recent-pos-list li:first-child {
  margin-top: 0;
}

.sidebar__recent-pos-list li .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar__recent-pos-list li .inner .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar__recent-pos-list li .inner .img-box img {
  width: 100%;
}

.sidebar__recent-pos-list li .inner .content-box {
  position: relative;
  display: block;
  margin-left: 25px;
  flex: 1;
}

.sidebar__recent-pos-list li .inner .content-box p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
}

.sidebar__recent-pos-list li .inner .content-box h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-top: 5px;
}

.sidebar__recent-pos-list li .inner .content-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__recent-pos-list li .inner .content-box h3 a:hover {
  color: var(--thm-base);
}


.sidebar__tags {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 42px 40px 40px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  padding: 6px 22px;
  border-radius: 0px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: var(--thm-black);
  background: var(--thm-base);
}


.sidebar__contact {
  position: relative;
  display: block;
  z-index: 1;
}

.sidebar__contact-box {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 60px 10px 60px;
  z-index: 1;
}

.sidebar__contact-pattern {
  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;
}

.sidebar__contact-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.sidebar__contact-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 50px;
}

.sidebar__contact-box h2 {
  color: #000000;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  text-transform: capitalize;
}

.sidebar__contact-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 31px;
}

.sidebar__contact-box .btn-box .thm-btn {
  color: #ffffff;
}

.sidebar__contact-box .btn-box .thm-btn:hover {
  color: var(--thm-black);
}

.sidebar__contact-box .btn-box .thm-btn:after {
  background: var(--thm-black);
}

.sidebar__contact-box .btn-box .thm-btn::before {
  background: #ffffff;
}


/***
=============================================
Blog Details
=============================================
***/
.blog-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 0px;
  z-index: 1;
}

.blog-details__content {
  position: relative;
  display: block;
}

.blog-details__content-img1 {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-details__content-img1 img {
  width: 100%;
}

.blog-details__content-text-box1 {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__content-text-box1 .text1 {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.blog-details__content-text-box1 .text1 span {
  color: var(--thm-black);
}

.blog-details__content-text-box1 h2 {
  position: relative;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  font-family: var(--thm-font);
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 19px;
}

.blog-details__content-text-box1 .text2 {
  margin: 0;
  margin-top: 19px;
}

.blog-details__content-text-box1 .text3 {
  margin: 0;
  margin-top: 26px;
}

.blog-details__content-text-box2 {
  position: relative;
  display: block;
  margin-top: 40px;
}

.blog-details__content-text-box2 h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  font-family: var(--thm-font);
  margin-bottom: 20px;
}

.blog-details__content-text-box2 .text1 {
  margin: 0;
  margin-bottom: 30px;
}

.blog-details__content-text-box2 .text2 {
  margin: 0;
}

.blog-details__content-img2 {
  position: relative;
  display: block;
  margin-top: 37px;
  margin-bottom: 39px;
}

.blog-details__content-img2 img {
  width: 100%;
}

.blog-details__content-text-box3 {
  position: relative;
  display: block;
}

.blog-details__content-text-box3 .text1 {
  margin: 0;
  margin-bottom: 26px;
}

.blog-details__content-text-box3 .text2 {
  margin: 0;
}

.blog-details__content-blockquote {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 43px 40px 42px;
  margin-top: 42px;
}

.blog-details__content-blockquote .inner {
  position: relative;
  display: block;
  padding-left: 115px;
}

.blog-details__content-blockquote .inner .icon-box {
  position: absolute;
  top: 7px;
  left: 0;
}

.blog-details__content-blockquote .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 60px;
}

.blog-details__content-blockquote .inner .text-box {
  position: relative;
  display: block;
}

.blog-details__content-blockquote .inner .text-box p {
  color: var(--thm-black);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}

.blog-details__content-blockquote .inner .text-box h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
}

.blog-details__content-text-box4 {
  position: relative;
  display: block;
  margin-top: 39px;
}

.blog-details__content-text-box4 .text1 {
  margin: 0;
}

.blog-details__content-text-box4 h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  font-family: var(--thm-font);
  margin-top: 39px;
  margin-bottom: 19px;
}

.blog-details__content-text-box4 .text2 {
  margin: 0;
  margin-bottom: 26px;
}

.blog-details__content-text-box4 .text3 {
  margin: 0;
}

.blog-details__content-text-box5 {
  position: relative;
  display: block;
  margin-top: 42px;
}

.blog-details__content-text-box5 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-details__content-text-box5 .img-box img {
  width: 100%;
}

.blog-details__content-text-box5 .text-box {
  position: relative;
  display: block;
}

.blog-details__content-text-box5 .text-box .text1 {
  margin: 0;
  margin-bottom: 28px;
}

.blog-details__content-text-box5 .text-box .text2 {
  margin: 0;
}

.blog-details__content-text-box6 {
  position: relative;
  display: block;
  margin-top: 38px;
}

.blog-details__content-text-box6 p {
  margin: 0;
}

.blog-details__content-text-box7 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  margin-top: 37px;
  padding: 15px 0px 15px;
}

.blog-details__content-text-box7 .tag-box {
  position: relative;
  display: block;
}

.blog-details__content-text-box7 .tag-box a {
  color: var(--thm-gray);
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  background: var(--thm-primary);
  padding: 10px 20px 9px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text-box7 .tag-box a:hover {
  background: var(--thm-base);
  color: var(--thm-black);
}

.blog-details__content-text-box7 .tag-box a+a {
  margin-left: 6px;
}

.blog-details__content-text-box7 .social-links {
  position: relative;
  display: block;
}

.blog-details__content-text-box7 .social-links ul {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--thm-base);
  padding: 12px 20px 12px;
  line-height: 0;
}

.blog-details__content-text-box7 .social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 16px;
}

.blog-details__content-text-box7 .social-links ul li:last-child {
  margin-right: 0;
}

.blog-details__content-text-box7 .social-links ul li a {
  position: relative;
  display: block;
  color: var(--thm-black);
}

.blog-details__content-text-box7 .social-links ul li a span::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
}

/***
=====================================================
  Comments
=====================================================
***/
.comment-one {
  position: relative;
  display: block;
  margin-top: 60px;
}

.comment-one__title {
  color: var(--thm-black);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 31px;
}

.comment-one__single {
  position: relative;
  display: -webkit-box;
  display: flex;
  align-items: center;
  margin-bottom: 78px;
}

.comment-one__single.mb0 {
  margin-bottom: 0;
  margin-left: 110px;
}

.comment-one__image {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-one__image img {
  width: auto;
}

.comment-one__content {
  position: relative;
  margin-left: 30px;
  flex: 1;
}

.comment-one__content .top-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.comment-one__content .top-box .text-box {
  position: relative;
  display: block;
}

.comment-one__content .top-box .text-box h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 4px;
}

.comment-one__content .top-box .text-box p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
}

.comment-one__content .top-box .btn-box {
  position: relative;
  display: block;
}

.comment-one__btn {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-one__btn:hover {
  color: var(--thm-black);
}

.comment-one__btn span:before {
  position: relative;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
}

.comment-one__content p {
  margin: 0;
}




.comment-form {
  position: relative;
  display: block;
  margin-top: 59px;
}

.comment-form__title {
  color: var(--thm-black);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

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

.comment-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-one__form .input-box input[type="text"],
.comment-one__form .input-box input[type="email"],
.comment-one__form .input-box textarea {
  position: relative;
  display: block;
  background: var(--thm-primary);
  width: 100%;
  height: 60px;
  border: none;
  color: var(--thm-gray);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 30px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.comment-one__form .input-box textarea {
  width: 100%;
  height: 160px;
  padding-top: 18px;
  border-radius: 20px;
  outline: none;
  resize: none;
}

.comment-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form input[type="text"]:-moz-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form input[type="text"]::-moz-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form input[type="email"]:-moz-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form input[type="email"]::-moz-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form textarea::-webkit-input-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form textarea:-moz-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form textarea::-moz-placeholder {
  color: var(--thm-gray);
}

.comment-one__form form textarea:-ms-input-placeholder {
  color: var(--thm-gray);
}


.comment-form__checkbox {
  position: relative;
  display: block;
  margin-top: -10px;
}

.comment-form__checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  font-family: var(--thm-font);
  cursor: pointer;
}

.comment-form__checkbox input[type="checkbox"] {
  display: none;
}

.comment-form__checkbox input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 4px;
  left: 0px;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.comment-form__checkbox label span:before {
  position: absolute;
  top: 2px;
  left: 4px;
  display: block;
  border-bottom: 2px solid #DDDDDD;
  border-right: 2px solid #DDDDDD;
  content: '';
  width: 5px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.comment-form__checkbox input[type="checkbox"]:checked+label span {
  border: 1px solid #DDDDDD;
}

.comment-form__checkbox input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.comment-form__btn {
  position: relative;
  display: block;
  margin-top: 31px;
}

/***
=====================================================
End Css 
=====================================================
***/
.blog-one--blog {
  position: relative;
  display: block;
  background: #ffffff;
}

.blog-one--blog .blog-one__single-content {
  background: var(--thm-primary);
}

/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
  position: relative;
  display: block;
  z-index: 1;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 705px;
  width: 100%;
}

/***
=============================================
Client Support One
=============================================
***/
.client-support-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 80px;
  z-index: 1;
}

.client-support-one__single {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 35px 35px 37px;
  margin-bottom: 30px;
  z-index: 1;
}

.client-support-one__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.client-support-one__single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  z-index: 1;
}

.client-support-one__single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 50px;
  right: -20px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.client-support-one__single:hover .icon-box span::before {
  transform: scale(0.9);
}

.client-support-one__single .content-box {
  position: relative;
  display: block;
}

.client-support-one__single .content-box h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  text-transform: capitalize;
  margin-top: 25px;
  margin-bottom: 17px;
}

.client-support-one__single .content-box p {
  color: var(--thm-black);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.client-support-one__single .content-box p a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.client-support-one__single .content-box p a:hover {
  color: var(--thm-black);
}
































/***
=====================================================
End Css 
=====================================================
***/