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

/*==============================================
   # Common
===============================================*/
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  /* Natural State Shine Theme */
  --thm-font: "Heebo", sans-serif;
  --thm-font-two: "Roboto", sans-serif;
  --thm-gray: #333333; /* Text: Dark Charcoal */
  --thm-gray-rgb: 51, 51, 51;
  --thm-black: #333333; /* Text: Dark Charcoal */
  --thm-black-rgb: 51, 51, 51;
  --thm-bdr-radius: 5px;
  --thm-base: #00bfa6; /* Primary: Teal/Aqua */
  --thm-base-rgb: 0, 191, 166;
  --thm-secondary: #f5f5f5; /* Secondary: Warm Light Gray */
  --thm-secondary-rgb: 245, 245, 245;
  --thm-accent: #7bc043; /* Accent: Fresh Green */
  --thm-accent-rgb: 123, 192, 67;
}

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

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

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 29px;
  font-weight: 400;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
  border: none;
  transition: 0.4s;
  -webkit-transition: all 0.4s ease-in-out;
}

p {
  margin: 0;
  letter-spacing: 0.015em;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-black);
  font-family: var(--thm-font-two);
  font-weight: 700;
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  padding: 0px;
}

.pd-120-0-120 {
  padding: 120px 0 120px;
}

.pd-120-0-90 {
  padding: 120px 0 90px;
}

.fixed-bg {
  background-attachment: fixed !important;
}

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

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

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

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

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

.section-separator {
  border-color: var(--Washup-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*==============================================
   Thm Btn
===============================================*/
.thm-btn {
  position: relative;
  display: block;
  text-transform: capitalize;
  width: 190px;
  line-height: 60px;
  text-align: center;
  overflow: hidden;
  border-radius: var(--thm-bdr-radius);
}

.thm-btn span {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--thm-font-two);
  z-index: 1;
}

.thm-btn .liquid {
  position: absolute;
  top: -120px;
  left: 0;
  width: 190px;
  height: 200px;
  background: var(--thm-base);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.thm-btn:hover .liquid {
  top: -80px;
}

.thm-btn .liquid::before,
.thm-btn .liquid::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -75%);
  content: "";
}

.thm-btn .liquid::before {
  border-radius: 45%;
  background: rgba(255, 255, 255, 0.4);
  animation: animate 5s linear infinite;
}

.thm-btn .liquid::after {
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.1);
  animation: animate 10s linear infinite;
}

@keyframes animate {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}

/*==============================================
   Section Title
===============================================*/
.section-title {
  position: relative;
  display: block;
  margin-top: -7px;
  padding-bottom: 49px;
}

.section-title__tagline {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.015em;
  margin-bottom: 11px;
  font-family: var(--thm-font);
}

.section-title__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

/*==============================================
   Section Title Style2
===============================================*/
.section-title__style2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 39px;
}

.section-title__style2 .section-title {
  padding-bottom: 0px;
}

.section-title__style2 .text-box {
  position: relative;
  display: block;
  max-width: 485px;
  width: 100%;
}

.section-title__style2 .text-box p {
  margin: 0;
}

/*==============================================
   Color-Layout
===============================================*/
.switcher {
  position: fixed;
  top: 320px;
  z-index: 99;
  display: none;
}

.switcher .switch_btn {
  position: absolute;
  top: 0px;
  right: -60px;
  z-index: -1;
}

.switcher .switch_btn button {
  width: 60px;
  height: 60px;
  color: #fff;
  line-height: 60px;
  cursor: pointer;
  border-radius: 0;
  margin-left: 0;
  transition: all 500ms ease;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.09);
  outline: none;
  border: none;
}

.switcher .switch_menu {
  position: absolute;
  width: 250px;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  top: 0px;
  left: 60px;
  bottom: 0;
  margin: 0;
  padding: 15px 22px;
  bottom: 0;
  height: 60px;
  transform: translateX(0px);
}

.switcher_container {
  position: relative;
  display: block;
  line-height: 0;
  width: 205px;
  height: 60px;
}

.switcher #styleOptions li {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  float: left;
}

.switcher #styleOptions li:last-child {
  margin-right: 0;
}

.switcher #styleOptions li a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 0%;
  box-shadow: 0 0 0 0px #fff;
}

.switcher #styleOptions li a.blue-color {
  background: #1266e3;
}

.switcher #styleOptions li a.pink-color {
  background: #f41e54;
}

.switcher #styleOptions li a.violet-color {
  background: #5713a9;
}

.switcher #styleOptions li a.crimson-color {
  background: #d12326;
}

.switcher #styleOptions li a.orange-color {
  background: #ff5e14;
}

.switcher #styleOptions li a.green-color {
  background: #005608;
}

/*==============================================
   Mode Switcher
===============================================*/
.mode-switcher {
  position: relative;
  width: 4rem;
  height: 4rem;
  position: fixed;
  top: 25%;
  bottom: auto;
  left: auto;
  right: 0;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}

.mode-switcher.dark-mode {
  background-color: #ffffff;
}

.mode-switcher .switch-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
}

.mode-switcher .switch-inner.active {
  visibility: visible;
  opacity: 1;
}

.mode-switcher .icon {
  display: flex;
  font-size: 2rem;
  padding: 0 0.5rem;
}

.mode-switcher.dark-mode .icon {
  color: #060922;
}

/*==============================================
   Preloader
===============================================*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background: var(--thm-base);
}

.loader {
  background: -webkit-linear-gradient(0deg, #ffffff 0%, #777777 100%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
}

@media (max-width: 991.98px) {
  .loader {
    width: 100px;
    height: 100px;
  }
}

.loader:before,
.loader:after {
  content: "";
  background: var(--thm-base);
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  position: absolute;
  bottom: 45px;
  -webkit-clip-path: circle(50% at 50% 100%);
  clip-path: circle(50% at 50% 100%);
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}

@media (max-width: 991.98px) {
  .loader:before,
  .loader:after {
    bottom: 45px;
  }
}

.loader:after {
  -webkit-transform-origin: center top;
  transform-origin: center top;
  top: 45px;
  -webkit-clip-path: circle(50% at 50% 0);
  clip-path: circle(50% at 50% 0);
}

@media (max-width: 991.98px) {
  .loader:after {
    top: 45px;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/*==============================================
   Owl Dot Style1
===============================================*/
.owl-dot-style1.owl-carousel .owl-dots {
  position: absolute;
  bottom: -68px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
}

.owl-dot-style1.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--thm-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-dot-style1.owl-carousel .owl-dot.active {
  background-color: var(--thm-base);
}

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

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

/*==============================================
   Scroll To Top
===============================================*/
.scroll-to-top {
  display: inline-block !important;
  width: 45px !important;
  height: 45px !important;
  background: var(--thm-base) !important;
  color: #fff !important;
  position: fixed;
  bottom: 40px !important;
  right: 40px !important;
  z-index: 99 !important;
  text-align: center !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50% !important;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

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

.scroll-to-top:hover i {
  color: #fff;
}

/*==============================================
   Navigations One
===============================================*/
.main-header {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}

.main-header__top {
  position: relative;
  display: block;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f1f1;
  z-index: 5;
}

.main-header__top::before {
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  right: 50%;
  height: 63px;
  background: var(--thm-base);
  -moz-transform: skew(30deg, 0deg);
  -webkit-transform: skew(30deg, 0deg);
  -o-transform: skew(30deg, 0deg);
  -ms-transform: skew(30deg, 0deg);
  transform: skew(30deg, 0deg);
  content: "";
  z-index: -1;
  overflow: hidden;
}

.main-header__top-inner {
  position: relative;
  display: block;
  padding: 4.5px 0px 5.5px;
  z-index: 1;
}

.main-header__top-left {
  position: relative;
  display: block;
  float: left;
}

.main-header__top-address {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-address li {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 55px;
}

.main-header__top-address li + li {
  margin-left: 15px;
}

.main-header__top-address li .icon {
  position: relative;
  display: block;
}

.main-header__top-address li .icon span::before {
  color: #ffffff;
  font-size: 13px;
  line-height: 13px;
}

.main-header__top-address li .text {
  position: relative;
  display: block;
  margin-left: 10px;
}

.main-header__top-address li .text p {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.main-header__top-address li .text a {
  color: #ffffff;
  font-size: 14px;
}

.main-header__top-address li .text a:hover {
  color: #ffffff;
}

.main-header__top-right {
  position: relative;
  display: flex;
  float: right;
  align-items: center;
}

.main-header__top-right-search {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__top-right-search a {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  background: rgba(var(--thm-base-rgb), 0.19);
  text-align: center;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.main-header__top-right-search a:before {
  position: absolute;
  content: "";
  background-color: var(--thm-base);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.main-header__top-right-search a:hover:before {
  height: 100%;
}

.main-header__top-right-search a i:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  line-height: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header__top-right-search a:hover i:before {
  color: #ffffff;
}

.main-header__top-right-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 10px 0;
  padding-right: 15px;
}

.main-header__top-right-social a {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  background: rgba(var(--thm-base-rgb), 0.19);
  color: var(--thm-base);
  font-size: 15px;
  border-radius: 50%;
  text-align: center;
}

.main-header__top-right-social a:before {
  position: absolute;
  content: "";
  background-color: var(--thm-base);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.main-header__top-right-social a:hover:before {
  height: 100%;
}

.main-header__top-right-social a i::before {
  position: relative;
  display: inline-block;
  line-height: 35px;
}

.main-header__top-right-social a:hover {
  color: #ffffff;
}

.main-header__top-right-social a + a {
  margin-left: 10px;
}

.main-menu {
  position: relative;
  background: #ffffff;
}

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

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

.main-menu-wrapper__logo {
  position: relative;
  float: left;
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-menu-wrapper__right {
  position: relative;
  display: flex;
  float: right;
  align-items: center;
}

.main-menu-wrapper__main-menu {
  position: relative;
  display: block;
  margin-right: 50px;
}

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

a.sc-hLseeU {
  display: none;
}

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

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list ul {
    display: flex;
  }
}

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

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

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
  transition: all 500ms ease;
  font-family: var(--thm-font-two);
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--thm-base);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

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

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

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

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

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition:
    opacity 200ms ease,
    visibility 200ms ease,
    -webkit-transform 400ms ease;
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    -webkit-transform 400ms ease;
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 400ms ease;
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 400ms ease,
    -webkit-transform 400ms ease;
  z-index: 99;
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

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

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

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
  font-size: 16px;
  line-height: 30px;
  color: var(--thm-gray);
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 500;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 500ms;
}

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

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

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

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

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

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

.stricky-header .main-menu__inner {
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

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

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--thm-black);
  cursor: pointer;
}

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

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

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--thm-base);
  cursor: pointer;
  transition: 500ms;
}

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

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

/*==============================================
   Navigations Two
===============================================*/
.main-header-two {
  position: relative;
  display: block;
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: var(--Washup-base);
}

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

.main-header-two__top-left {
  position: relative;
  display: block;
  float: left;
  padding: 5px 0;
}

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

.main-header-two__top-address li {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 35px;
}

.main-header-two__top-address li + li {
  margin-left: 30px;
}

.main-header-two__top-address li .icon {
  display: flex;
  align-items: center;
}

.main-header-two__top-address li .icon span {
  font-size: 14px;
  color: var(--Washup-white);
}

.main-header-two__top-address li .text {
  margin-left: 10px;
}

.main-header-two__top-address li .text p {
  font-size: 14px;
  color: var(--Washup-white);
  font-weight: 500;
  margin: 0;
}

.main-header-two__top-address li .text a {
  font-size: 14px;
  color: var(--Washup-white);
  font-weight: 500;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-address li .text a:hover {
  color: var(--Washup-black);
}

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

.main-header-two__top-right-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-color: #006eb3;
  padding: 15px 30px;
}

.main-header-two__top-right-social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--Washup-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-right-social a:hover {
  color: var(--Washup-black);
}

.main-header-two__top-right-social a + a {
  margin-left: 25px;
}

.main-menu-two {
  padding: 0 0 0;
}

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

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

.main-menu-two__wrapper-logo {
  position: relative;
  display: block;
  float: left;
  padding: 36px 0;
  margin-right: 200px;
}

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

.main-menu-two__wrapper-right {
  position: relative;
  display: block;
  float: right;
  padding: 41px 0;
}

.main-menu-two__wrapper-search-cat {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__wrapper-search-cat:before {
  position: absolute;
  top: -7px;
  bottom: -8px;
  left: -40px;
  content: "";
  background-color: #c9d5db;
  width: 1px;
}

.main-menu-two__wrapper-search {
  font-size: 24px;
  color: var(--Washup-black);
  margin-right: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__wrapper-search:hover {
  color: var(--Washup-base);
}

.main-menu-two__wrapper-cart {
  font-size: 24px;
  color: var(--Washup-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__wrapper-cart:hover {
  color: var(--Washup-base);
}

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

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

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

.stricky-header.main-menu-two {
  background-color: var(--Washup-white);
  padding: 0 0 0;
}

/*==============================================
   Navigations Three
===============================================*/
.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-logo {
  position: relative;
  float: left;
  padding-top: 36px;
  padding-bottom: 36px;
}

.main-menu-three__wrapper-main-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 89%;
  float: left;
}

.main-menu-three__wrapper-right {
  position: relative;
  display: block;
  float: right;
  padding: 41px 0;
}

.main-menu-three__wrapper-search-cat {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__wrapper-search-cat:before {
  position: absolute;
  top: -7px;
  bottom: -8px;
  left: -40px;
  content: "";
  background-color: rgba(var(--Washup-white-rgb), 0.1);
  width: 1px;
}

.main-menu-three__wrapper-search {
  font-size: 24px;
  color: var(--Washup-white);
  margin-right: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__wrapper-search:hover {
  color: var(--Washup-base);
}

.main-menu-three__wrapper-cart {
  font-size: 24px;
  color: var(--Washup-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__wrapper-cart:hover {
  color: var(--Washup-base);
}

.main-menu-three .main-menu__list > li.current > a::before {
  background-color: var(--Washup-white);
}

.main-menu-three .main-menu__list > li:hover > a::before {
  background-color: var(--Washup-white);
}

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

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

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--thm-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-nav__content .Washup-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

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

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
}

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

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

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

.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--Washup-font);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-base);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

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

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

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

.mobile-nav__top .main-menu__login a {
  color: var(--Washup-text-dark);
}

.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__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #ffffff;
  transition: 500ms;
}

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

.mobile-nav__social a:hover {
  color: var(--Washup-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--Washup-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

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

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

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

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--thm-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*==============================================
   Search Popup
===============================================*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transition:
    transform 500ms ease,
    opacity 500ms ease;
}

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

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-base);
  opacity: 0.75;
  cursor: pointer;
  padding: 400px 0;
}

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

.search-popup__content form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  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: 80px;
}

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

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

.search-popup__content .thm-btn i {
  color: #ffffff;
  margin: 0;
}

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

.main-slider-one__single {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider-one__single .top-shape {
  position: absolute;
  top: 0;
  right: 0px;
  width: 15%;
  height: 50%;
  background: #ffffff;
  mix-blend-mode: overlay;
  -moz-transform: skew(30deg, 0deg) translateX(100%);
  -webkit-transform: skew(30deg, 0deg) translateX(100%);
  -o-transform: skew(30deg, 0deg) translateX(100%);
  -ms-transform: skew(30deg, 0deg) translateX(100%);
  transform: skew(30deg, 0deg) translateX(100%);
  opacity: 0;
  -webkit-transition: all 1800ms ease;
  -moz-transition: all 1800ms ease;
  -ms-transition: all 1800ms ease;
  -o-transition: all 1800ms ease;
  transition: all 1800ms ease;
  z-index: 10;
}

.main-slider-one .active .main-slider-one__single .top-shape {
  opacity: 1;
  -moz-transform: skew(30deg, 0deg) translate(0);
  -webkit-transform: skew(30deg, 0deg) translate(0);
  -o-transform: skew(30deg, 0deg) translate(0);
  -ms-transform: skew(30deg, 0deg) translate(0);
  transform: skew(30deg, 0deg) translate(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2300ms;
  -ms-transition-delay: 2300ms;
  -o-transition-delay: 2300ms;
  transition-delay: 2300ms;
}

.main-slider-one__single .bottom-shape {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 15%;
  height: 50%;
  background: #ffffff;
  mix-blend-mode: overlay;
  -moz-transform: skew(-30deg, 0deg) translateX(100%);
  -webkit-transform: skew(-30deg, 0deg) translateX(100%);
  -o-transform: skew(-30deg, 0deg) translateX(100%);
  -ms-transform: skew(-30deg, 0deg) translateX(100%);
  transform: skew(-30deg, 0deg) translateX(100%);
  opacity: 0;
  -webkit-transition: all 1800ms ease;
  -moz-transition: all 1800ms ease;
  -ms-transition: all 1800ms ease;
  -o-transition: all 1800ms ease;
  transition: all 1800ms ease;
  z-index: 10;
}

.main-slider-one .active .main-slider-one__single .bottom-shape {
  opacity: 1;
  -moz-transform: skew(-30deg, 0deg) translate(0);
  -webkit-transform: skew(-30deg, 0deg) translate(0);
  -o-transform: skew(-30deg, 0deg) translate(0);
  -ms-transform: skew(-30deg, 0deg) translate(0);
  transform: skew(-30deg, 0deg) translate(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2300ms;
  -ms-transition-delay: 2300ms;
  -o-transition-delay: 2300ms;
  transition-delay: 2300ms;
}

.main-slider-one__single .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-blend-mode: luminosity;
  background: var(--thm-black);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
  background-size: cover;
  z-index: 1;
}

.main-slider-one .active .main-slider-one__single .image-layer {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider-one__single .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.3);
  content: "";
  z-index: -1;
}

.main-slider-one__single .image-layer::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(0, 74, 148);
  background: linear-gradient(
    90deg,
    rgba(0, 74, 148, 1) 0%,
    rgba(0, 74, 148, 0) 60%
  );
  content: "";
  z-index: -2;
}

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

.main-slider-one__content .tagline {
  position: relative;
  display: block;
  margin-bottom: 14px;
  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: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.main-slider-one .active .main-slider-one__content .tagline {
  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: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.main-slider-one__content .tagline p {
  color: #ffffff;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
}

.main-slider-one__content .title {
  position: relative;
  display: block;
  margin-bottom: 7px;
  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: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

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

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

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

.main-slider-one .active .main-slider-one__content .text {
  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: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-one__content .text p {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0em;
}

.main-slider-one__content .btn-box {
  position: relative;
  display: block;
  margin-top: 46px;
  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: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

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

.main-slider-one__carousel.owl-carousel .owl-nav {
  display: block;
}

.main-slider-one__carousel.owl-theme .owl-nav {
  position: absolute;
  top: 39%;
  left: 0px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  line-height: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: scaleX(1) translateX(0px);
  z-index: 3;
}

.main-slider-one__carousel:hover.owl-theme .owl-nav {
  opacity: 1;
  left: 70px;
  transform: scaleX(1) translateX(0px);
}

.main-slider-one__carousel.owl-theme .owl-prev span,
.main-slider-one__carousel.owl-theme .owl-next span {
  display: block;
}

.main-slider-one__carousel.owl-theme .owl-nav .owl-prev,
.main-slider-one__carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  line-height: 66px;
  font-weight: 100;
  background: rgba(255, 255, 255, 0.3);
  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;
}

.main-slider-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-bottom: 10px;
}

.main-slider-one__carousel.owl-theme .owl-nav .owl-prev::before,
.main-slider-one__carousel.owl-theme .owl-nav .owl-next::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.8);
  opacity: 0;
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.main-slider-one__carousel.owl-theme .owl-nav .owl-prev:hover::before,
.main-slider-one__carousel.owl-theme .owl-nav .owl-next:hover:before {
  transform: scaleX(1);
  opacity: 1;
}

.main-slider-one__carousel.owl-theme .owl-prev span:before,
.main-slider-one__carousel.owl-theme .owl-next span:before {
  position: relative;
  display: inline-block;
  line-height: 70px;
  transition: all 100ms ease;
}

.main-slider-one__carousel.owl-theme .owl-nav .owl-next {
  transform: rotate(0deg);
}

.main-slider-one__carousel.owl-theme .owl-nav .owl-prev:hover,
.main-slider-one__carousel.owl-theme .owl-nav .owl-next:hover {
  color: var(--thm-black);
}

.main-slider-one__carousel.owl-theme .owl-next span:before {
  position: relative;
  top: 1px;
}

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

.main-slider-one--two .shape1 {
  position: absolute;
  top: -205px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 99;
}

.main-slider-one--two .shape1 img {
  width: auto;
}

.main-slider-one--two-img {
  position: absolute;
  right: 15%;
  bottom: 0;
  opacity: 0;
  transform: translateX(100%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 99;
}

.main-slider-one--two-img img {
  width: auto;
}

.main-slider-one--two .active .main-slider-one--two-img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 2500ms;
  -moz-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  transition-delay: 2500ms;
}

.main-slider-one--two .main-slider-one__single .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--thm-base);
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-blend-mode: color-burn;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
  background-size: cover;
  z-index: 1;
}

.main-slider-one--two .main-slider-one__content .btn-box .thm-btn .liquid {
  background: #ffffff;
}

.main-slider-one--two .main-slider-one__content .btn-box .thm-btn span {
  color: var(--thm-base);
}

.main-slider-one--two .main-slider-one__content .btn-box .liquid::before {
  background: rgba(var(--thm-base-rgb), 0.4);
}

.main-slider-one--two .main-slider-one__content .btn-box .liquid::after {
  background: rgba(var(--thm-base-rgb), 0.1);
}

.main-slider-one--two .main-slider-one__single .image-layer::before {
  background: none;
}

.main-slider-one--two .main-slider-one__single .image-layer::after {
  background: none;
}

.main-slider-one--two .main-slider-one__content .tagline {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateX(0deg) translateY(-120px);
  transform: perspective(400px) rotateX(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-one--two .active .main-slider-one__content .tagline {
  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: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.main-slider-one--two .main-slider-one__content .title {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

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

.main-slider-one--two .main-slider-one__content .text {
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-one--two .active .main-slider-one__content .text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-one--two .main-slider-one__content .btn-box {
  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: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-one--two .active .main-slider-one__content .btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.main-slider-two__carousel.owl-carousel .owl-nav {
  display: block;
}

.main-slider-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: 39%;
  left: 0px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  line-height: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: scaleX(1) translateX(0px);
  z-index: 3;
}

.main-slider-two__carousel:hover.owl-theme .owl-nav {
  opacity: 1;
  left: 70px;
  transform: scaleX(1) translateX(0px);
}

.main-slider-two__carousel.owl-theme .owl-prev span,
.main-slider-two__carousel.owl-theme .owl-next span {
  display: block;
}

.main-slider-two__carousel.owl-theme .owl-nav .owl-prev,
.main-slider-two__carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  line-height: 66px;
  font-weight: 100;
  background: rgba(255, 255, 255, 0.3);
  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;
}

.main-slider-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-bottom: 10px;
}

.main-slider-two__carousel.owl-theme .owl-nav .owl-prev::before,
.main-slider-two__carousel.owl-theme .owl-nav .owl-next::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.main-slider-two__carousel.owl-theme .owl-nav .owl-prev:hover::before,
.main-slider-two__carousel.owl-theme .owl-nav .owl-next:hover:before {
  transform: scaleX(1);
}

.main-slider-two__carousel.owl-theme .owl-prev span:before,
.main-slider-two__carousel.owl-theme .owl-next span:before {
  position: relative;
  display: inline-block;
  line-height: 70px;
  transition: all 100ms ease;
}

.main-slider-two__carousel.owl-theme .owl-nav .owl-next {
  transform: rotate(0deg);
}

.main-slider-two__carousel.owl-theme .owl-nav .owl-prev:hover,
.main-slider-two__carousel.owl-theme .owl-nav .owl-next:hover {
  color: var(--thm-black);
}

.main-slider-two__carousel.owl-theme .owl-next span:before {
  position: relative;
  top: 1px;
}

/*==============================================
   Main Slider Three
===============================================*/
.main-slider-three {
  position: relative;
  overflow: hidden;
}

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

.main-slider-three__single .shape1 {
  position: absolute;
  top: -270px;
  left: -200px;
  width: 300px;
  height: 700px;
  background: #000000;
  border-radius: 150px;
  mix-blend-mode: soft-light;
  transform: rotate(130deg);
  z-index: 2;
}

.main-slider-three__single .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
  z-index: 1;
}

.main-slider-three__single .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-base-rgb), 0.45);
  content: "";
  z-index: -1;
}

.main-slider-three .active .main-slider-three__single .image-layer {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

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

.main-slider-three__content .tagline {
  position: relative;
  display: block;
  margin-bottom: 14px;
  opacity: 0;
  transition: all 1000ms ease;
  transform: translateY(80px);
  z-index: 10;
}

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

.main-slider-three__content .tagline p {
  color: #ffffff;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
}

.main-slider-three__content .title {
  position: relative;
  display: block;
  margin-bottom: 7px;
  opacity: 0;
  transition: all 1500ms ease;
  transform: translateY(80px);
  z-index: 10;
}

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

.main-slider-three__content .title h2 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.2em;
  font-weight: 700;
}

.main-slider-three__content .text {
  position: relative;
  display: block;
  opacity: 0;
  transition: all 1500ms ease;
  transform: translateY(80px);
  z-index: 10;
}

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

.main-slider-three__content .text p {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0em;
}

.main-slider-three__content .btn-box {
  position: relative;
  display: block;
  margin-top: 46px;
  opacity: 0;
  transition: all 2000ms ease;
  transform: translateY(80px);
  z-index: 10;
}

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

.main-slider-three__content .btn-box .thm-btn {
  margin: 0 auto;
}

.bubble-section {
  position: relative;
}

.bubbleContainer {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

div[class^="bubble-"] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../images/icon/buble.png) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

.bubble-1 {
  bottom: 0px;
  left: 60%;
  -webkit-animation: bubble-movement 10s infinite ease-in -5.7s;
  animation: bubble-movement 10s infinite ease-in -5.7s;
}

.bubble-2 {
  bottom: 0px;
  left: 90%;
  -webkit-animation: bubble-movement 10s infinite ease-in -4.94s;
  animation: bubble-movement 10s infinite ease-in -4.94s;
}

.bubble-3 {
  bottom: 0px;
  left: 20%;
  -webkit-animation: bubble-movement 4s infinite ease-in -1.2s;
  animation: bubble-movement 4s infinite ease-in -1.2s;
}

.bubble-4 {
  bottom: 0px;
  left: 40%;
  -webkit-animation: bubble-movement 10s infinite ease-in -1.58s;
  animation: bubble-movement 10s infinite ease-in -1.58s;
}

.bubble-5 {
  bottom: 0px;
  left: 75%;
  -webkit-animation: bubble-movement 7s infinite ease-in -6.31s;
  animation: bubble-movement 7s infinite ease-in -6.31s;
}

.bubble-6 {
  bottom: 0px;
  left: 45%;
  -webkit-animation: bubble-movement 10s infinite ease-in -0.51s;
  animation: bubble-movement 10s infinite ease-in -0.51s;
}

.bubble-7 {
  bottom: 0px;
  left: 10%;
  -webkit-animation: bubble-movement 15s infinite ease-in -3.37s;
  animation: bubble-movement 15s infinite ease-in -3.37s;
}

.bubble-8 {
  bottom: 0px;
  left: 65%;
  -webkit-animation: bubble-movement 10s infinite ease-in -0.66s;
  animation: bubble-movement 10s infinite ease-in -0.66s;
}

.bubble-9 {
  bottom: 0px;
  left: 30%;
  -webkit-animation: bubble-movement 4s infinite ease-in -5.81s;
  animation: bubble-movement 4s infinite ease-in -5.81s;
}

.bubble-10 {
  bottom: 0px;
  left: 95%;
  -webkit-animation: bubble-movement 10s infinite ease-in -3.98s;
  animation: bubble-movement 10s infinite ease-in -3.98s;
}

.bubble-11 {
  bottom: 0px;
  left: 41%;
  -webkit-animation: bubble-movement 15s infinite ease-in -3.98s;
  animation: bubble-movement 15s infinite ease-in -3.98s;
}

.bubble-12 {
  bottom: 0px;
  left: 46%;
  -webkit-animation: bubble-movement 10s infinite ease-in -3.98s;
  animation: bubble-movement 10s infinite ease-in -3.98s;
}

.bubble-13 {
  bottom: 0px;
  left: 50%;
  -webkit-animation: bubble-movement 4s infinite ease-in -3.98s;
  animation: bubble-movement 4s infinite ease-in -3.98s;
}

.bubble-14 {
  bottom: 0px;
  left: 70%;
  -webkit-animation: bubble-movement 4s infinite ease-in -3.98s;
  animation: bubble-movement 4s infinite ease-in -3.98s;
}

.bubble-15 {
  bottom: 0px;
  left: 58%;
  -webkit-animation: bubble-movement 4s infinite ease-in -3.98s;
  animation: bubble-movement 4s infinite ease-in -3.98s;
}

.main-slider-three__carousel.owl-carousel .owl-nav {
  display: block;
}

.main-slider-three__carousel.owl-theme .owl-nav {
  position: absolute;
  top: 49%;
  left: 0px;
  right: 0px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.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;
  opacity: 0;
  transform: scaleX(1) translateX(0px);
  z-index: 999;
}

.main-slider-three:hover .main-slider-three__carousel.owl-theme .owl-nav {
  opacity: 1;
  left: 40px;
  right: 40px;
  transform: scaleX(1) translateX(0px);
  z-index: 99;
}

.main-slider-three__carousel.owl-theme .owl-prev span,
.main-slider-three__carousel.owl-theme .owl-next span {
  display: block;
}

.main-slider-three__carousel.owl-theme .owl-nav .owl-prev,
.main-slider-three__carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.5);
  border: 0px solid rgba(17, 14, 14, 0.3);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  text-align: center;
  color: var(--thm-base);
  font-size: 25px;
  line-height: 80px;
  font-weight: 400;
  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;
}

.main-slider-three__carousel.owl-theme .owl-prev span:before {
}

.main-slider .owl-theme .owl-nav .owl-next {
  transform: rotate(180deg);
}

.main-slider-three__carousel.owl-theme .owl-next span:before {
}

.main-slider-three__carousel.owl-theme .owl-nav .owl-prev:hover,
.main-slider-three__carousel.owl-theme .owl-nav .owl-next:hover {
  color: var(--thm-base);
  background: #ffffff;
  z-index: 99;
}

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

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

.page-header__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-black-rgb), 0.5);
  z-index: -1;
}

.page-header__wrapper {
  position: relative;
  display: block;
  z-index: 2;
}

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

.page-header__content h2 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  margin-bottom: 14px;
}

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

.page-header__menu ul {
  position: relative;
  display: block;
}

.page-header__menu ul li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  padding-left: 3px;
  padding-right: 7px;
  font-family: var(--thm-font);
}

.page-header__menu ul li:first-child {
  padding-left: 0;
}

.page-header__menu ul li:last-child {
  padding-right: 0;
}

.page-header__menu ul li::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: #ffffff;
  transform: rotate(20deg);
  content: "";
}

.page-header__menu ul li:last-child:before {
  display: none;
}

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

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

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

.about-one__img2 {
  position: absolute;
  top: 155px;
  right: 50px;
  z-index: -1;
}

.about-one__img {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  padding-right: 40px;
}

.about-one__img .experince-box {
  position: absolute;
  top: 100px;
  right: 0px;
  bottom: 100px;
  width: 75px;
  text-align: center;
  background-color: #ffffff;
  border-radius: var(--thm-bdr-radius);
  z-index: 5;
}

.about-one__img .experince-box h2 {
  color: var(--thm-base);
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
  text-transform: capitalize;
  letter-spacing: 0.015em;
  transform: rotate(-90deg) translateX(0%);
  transform-origin: 0 0;
  width: max-content;
  margin: 290px 22px;
  transition: all 500ms ease;
}

.about-one__img:hover .experince-box h2 {
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

.about-one__content .section-title {
  padding-bottom: 38px;
}

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

.about-one__content-text1 {
  color: #333333;
  font-weight: 600;
  margin-bottom: 14px;
}

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

.about-one__content-list {
  margin-top: 29px;
}

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

.about-one__content-list ul li {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.about-one__content-list ul li:last-child {
  margin-bottom: 0px;
}

.about-one__content-list ul li p {
  position: relative;
  padding-left: 20px;
}

.about-one__content-list ul li p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
}

.about-one__content-btn {
  position: relative;
  display: block;
  margin-top: 46px;
}

/***
=====================================================
    Services One Css
=====================================================
***/
.services-one {
  position: relative;
  display: block;
  background: #f1f5f9;
  z-index: 1;
}

.services-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: repeat;
  mix-blend-mode: luminosity;
  opacity: 0.04;
  z-index: -1;
}

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

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

.services-one__single-img .icon {
  position: absolute;
  left: 0;
  bottom: -35px;
  right: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0.5px 0.866px 5px 0px rgb(0, 0, 0, 0.2);
  margin: 0 auto;
  color: var(--thm-base);
  font-size: 35px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.services-one__single:hover .services-one__single-img .icon {
  color: #ffffff;
}

.services-one__single-img .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background: var(--thm-base);
}

.services-one__single:hover .services-one__single-img .icon::before {
  transform: scaleX(1);
}

.services-one__single-img .icon span::before {
  position: relative;
  display: inline-block;
  line-height: 70px;
}

.services-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.services-one__single-img-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--thm-base-rgb), 0.82);
  opacity: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.services-one__single:hover .services-one__single-img-inner::before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}

.services-one__single-img-inner img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.services-one__single:hover .services-one__single-img-inner img {
  transform: scale(1.1) rotate(2deg);
}

.services-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 52px 0px 26px;
}

.services-one__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0.015em;
  margin-bottom: 3px;
}

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

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

.services-one__single-content p {
  margin: 0px;
  padding: 0 40px;
}

/***
=====================================================
    Projects One Css
=====================================================
***/
.projects-one {
  position: relative;
  display: block;
  background: #ffffff;
}

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

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

.projects-one__single-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  background: rgba(var(--thm-base-rgb), 0.8);
  transition: all 0.4s ease-in-out 0s;
}

.projects-one__single:hover .projects-one__single-img::before {
  width: 100%;
  opacity: 0.8;
  visibility: visible;
}

.projects-one__single-img img {
  width: 100%;
  transition: all 0.8s ease 0s;
}

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

.projects-one__single-img .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: perspective(400px) scale(0.5);
  -ms-transform: perspective(400px) scale(0.5);
  transform: perspective(400px) scale(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  z-index: 5;
}

.projects-one__single:hover .projects-one__single-img .overlay-icon {
  opacity: 1;
  -webkit-transform: perspective(400px) scale(1);
  -ms-transform: perspective(400px) scale(1);
  transform: perspective(400px) scale(1);
}

.projects-one__single-img .overlay-icon a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: var(--thm-base);
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

.projects-one__single-img .overlay-icon a:hover {
  color: #ffffff;
}

.projects-one__single-img .overlay-icon a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  content: "";
  border-radius: 0%;
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.projects-one__single-img .overlay-icon a:hover:before {
  transform: scaleX(1);
}

.projects-one__single-img .overlay-icon a span::before {
  position: relative;
  display: inline-block;
  line-height: 50px;
}

/***
=====================================================
    Contact One Css
=====================================================
***/
.contact-one {
  position: relative;
  display: block;
  z-index: 1;
}

.contact-one__img {
  position: absolute;
  bottom: 0;
  right: 130px;
}

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

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

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

.contact-one__form-box .section-title {
  padding-bottom: 21px;
}

.contact-one__form-box .section-title__tagline {
  color: #ffffff;
}

.contact-one__form-box .section-title__title {
  color: #ffffff;
}

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

.contact-one__form-box .input-box input[type="text"],
.contact-one__form-box .input-box input[type="email"],
.contact-one__form-box .input-box textarea {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  height: 65px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: var(--thm-bdr-radius);
  transition: all 500ms ease;
  font-family: var(--thm-font-two);
  outline: none;
}

.contact-one__form-box form input[type="text"]::-webkit-input-placeholder {
  color: #ffffff;
}

.contact-one__form-box form input[type="text"]:-moz-placeholder {
  color: #ffffff;
}

.contact-one__form-box form input[type="text"]::-moz-placeholder {
  color: #ffffff;
}

.contact-one__form-box form input[type="text"]:-ms-input-placeholder {
  color: #ffffff;
}

.contact-one__form-box form input[type="email"]::-webkit-input-placeholder {
  color: #ffffff;
}

.contact-one__form-box form input[type="email"]:-moz-placeholder {
  color: #ffffff;
}

.contact-one__form-box form input[type="email"]::-moz-placeholder {
  color: #ffffff;
}

.contact-one__form-box form input[type="email"]:-ms-input-placeholder {
  color: #ffffff;
}

.contact-one__form-box form textarea::-webkit-input-placeholder {
  color: #ffffff;
}

.contact-one__form-box form textarea:-moz-placeholder {
  color: #ffffff;
}

.contact-one__form-box form textarea::-moz-placeholder {
  color: #ffffff;
}

.contact-one__form-box form textarea:-ms-input-placeholder {
  color: #ffffff;
}

.contact-one__form-box .input-box .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
}

.contact-one__form-box .input-box .nice-select {
  height: 65px;
  line-height: 65px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--thm-bdr-radius);
  font-family: var(--thm-font-two);
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  padding-left: 30px;
  padding-right: 20px;
}

.contact-one__form-box .input-box .nice-select:after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  right: 33px;
  margin-top: 0px;
  top: 24px;
  z-index: 10;
}

#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--thm-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--thm-base) none repeat scroll 0 0;
  border: 2px solid var(--thm-base);
  border-radius: 0;
  color: #ffffff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
  font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
  font-family: var(--thm-font);
}

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

.contact-one__form-box form .button-box button {
  position: relative;
  display: block;
  outline: none;
  border: none;
}

.contact-one__form-box form .button-box button.thm-btn {
  width: 220px;
}

.contact-one__form-box form .button-box button.thm-btn span {
  color: var(--thm-base);
}

.contact-one__form-box form .button-box button.thm-btn .liquid {
  top: -135px;
  width: 220px;
  background: #ffffff;
}

.contact-one__form-box form .button-box button.thm-btn .liquid::before {
  background: rgba(var(--thm-base-rgb), 0.4);
}

.contact-one__form-box form .button-box button.thm-btn .liquid::after {
  background: rgba(var(--thm-base-rgb), 0.1);
}

.contact-one__form-box form .button-box button.thm-btn:hover .liquid {
  top: -100px;
}

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

.team-one .pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.7;
}

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

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

.team-one__single-img img {
  width: 100%;
  transition: all 0.8s ease 0s;
}

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

.team-one__single .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.team-one__single .overlay-content:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(var(--thm-base-rgb), 0.65);
  content: "";
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.team-one__single:hover .overlay-content:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.team-one__single .overlay-content .title-box {
  position: relative;
  display: block;
  text-align: center;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.3s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.1s;
  transition-property: all;
}

.team-one__single:hover .overlay-content .title-box {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.8s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.team-one__single .overlay-content .title-box h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 0 0 0px;
  letter-spacing: 0.015em;
}

.team-one__single .overlay-content .title-box p {
  margin: 0;
  color: #ffffff;
}

.team-one__single .overlay-content .social-link {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  -webkit-transform: perspective(400px) rotate(0deg) scale(0);
  -ms-transform: perspective(400px) rotate(0deg) scale(0);
  transform: perspective(400px) rotate(0deg) scale(0);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__single:hover .overlay-content .social-link {
  -webkit-transform: perspective(400px) rotate(0deg) scale(1);
  -ms-transform: perspective(400px) rotate(0deg) scale(1);
  transform: perspective(400px) rotate(0deg) scale(1);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.team-one__single .overlay-content .social-link a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-base);
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 15px;
  height: 35px;
  width: 35px;
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__single .overlay-content .social-link a:hover {
  color: #ffffff;
  background-color: var(--thm-base);
  transform: rotate(360deg);
}

.team-one__single .overlay-content .social-link a + a {
  margin-left: 10px;
}

/***
=====================================================
    Tab One
=====================================================
***/
.tab-one {
  position: relative;
  display: block;
  background: #f1f5f9;
}

.tab-one__tabs {
  position: relative;
  display: block;
  overflow: hidden;
}

.tab-one__tabs .tab-buttons {
  position: relative;
  display: block;
  margin-left: -13px;
  margin-right: -13px;
  margin-bottom: 50px;
}

.tab-one__tabs .tab-buttons li {
  position: relative;
  display: inline-block;
  color: #333333;
  font-size: 23px;
  line-height: 33px;
  font-weight: 700;
  text-transform: capitalize;
  background: #ffffff;
  border-radius: var(--thm-bdr-radius);
  padding: 19px 81px 20px;
  cursor: pointer;
  margin: 0px 11px 0px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

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

.tab-one__content {
  position: relative;
  display: block;
  max-width: 485px;
  width: 100%;
  margin-top: 35px;
}

.tab-one__content .title {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.tab-one__content .title h2 {
  color: var(--thm-black);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

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

.tab-one__content .text p {
  margin: 0;
}

.tab-one__content-list {
  position: relative;
  display: block;
  margin-top: 21px;
}

.tab-one__content-list li {
  position: relative;
  display: block;
  padding-left: 20px;
  margin-bottom: 14px;
}

.tab-one__content-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
}

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

.tab-one__img .icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-one__img .icon a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.tab-one__img .icon a:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}

.tab-one__video-icon span::before {
  position: relative;
  display: inline-block;
  line-height: 50px;
  text-align: center;
}

.tab-one__video-icon:before {
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.52;
}

.tab-one__video-icon:after {
  position: absolute;
  top: -14px;
  left: -14px;
  right: -14px;
  bottom: -14px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: var(--thm-base);
  opacity: 0.43;
}

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

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

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

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

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

.testimonials-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 43px 0px 44px;
  padding-left: 30px;
  padding-right: 20px;
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.07);
  z-index: 1;
}

.testimonials-one__single::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--thm-base);
  transition: 1s;
  transform: scaleX(0.8);
  opacity: 0;
}

.testimonials-one__single:hover:before {
  transform: scaleX(1);
  opacity: 1;
}

.testimonials-one__single-icon {
  position: relative;
  display: block;
  margin-bottom: 4px;
}

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

.testimonials-one__single:hover .testimonials-one__single-icon span::before {
  color: #ffffff;
}

.testimonials-one__single-text {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.testimonials-one__single-text p {
  line-height: 27px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.testimonials-one__single:hover .testimonials-one__single-text p {
  color: #ffffff;
}

.testimonials-one__single .client-info {
  position: relative;
  display: flex;
  align-items: center;
}

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

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

.testimonials-one__single .client-info .text {
  position: relative;
  display: block;
  line-height: 0;
  padding-left: 20px;
}

.testimonials-one__single .client-info .text h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__single:hover .client-info .text h2 {
  color: #ffffff;
}

.testimonials-one__single .client-info .text p {
  line-height: 27px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__single:hover .client-info .text p {
  color: #ffffff;
}

.testimonials-one__carousel.owl-theme .owl-stage-outer {
  overflow: visible;
}

.testimonials-one__carousel .owl-stage-outer .owl-item {
  opacity: 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

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

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

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

.blog-one__single-img img {
  width: 100%;
}

.blog-one__single-img::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(var(--thm-base-rgb), 0.74);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

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

.blog-one__single-img .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.9s;
  transform: perspective(400px) scaleY(0);
  transform-origin: bottom;
}

.blog-one__single:hover .blog-one__single-img .overlay-icon {
  transform: perspective(400px) scaleY(1);
}

.blog-one__single .blog-one__single-img .overlay-icon a {
  position: relative;
  display: inline-block;
}

.blog-one__single .blog-one__single-img .overlay-icon span {
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
}

.blog-one__content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 23px 30px 31px;
}

.blog-one__content h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 9px;
}

.blog-one__content h2 a {
  color: var(--thm-black);
}

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

.blog-one__content p {
  margin: 0;
}

.blog-one__content .btn-box {
  position: relative;
  display: block;
  margin-top: 18px;
}

.blog-one__content .btn-box a {
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.015em;
  font-family: var(--thm-font);
}

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

.blog-one__content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  top: 2px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__content .btn-box a:hover span::before {
  color: var(--thm-base);
}

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

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

.footer-one__top-wrapper {
  position: relative;
  display: block;
}

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

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

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

.footer-one__top-wrapper {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  padding: 60px 0px 90px;
}

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

.footer-widget__title {
  color: #ffffff;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.015em;
  font-family: var(--thm-font-two);
  margin-bottom: 27px;
  margin-top: -5px;
}

.footer-widget__about {
  position: relative;
  display: block;
  max-width: 280px;
  width: 100%;
}

.footer-widget__about-logo {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.footer-widget__about-logo a {
  position: relative;
  display: inline-block;
}

.footer-widget__about-text {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget__about .social-link {
  position: relative;
  display: block;
  margin-top: 26px;
}

.footer-widget__about .social-link ul {
  position: relative;
  display: block;
}

.footer-widget__about .social-link ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.footer-widget__about .social-link ul li:last-child {
  margin-right: 0px;
}

.footer-widget__about .social-link ul li a {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

.footer-widget__about .social-link ul li a:hover {
  color: #ffffff;
}

.footer-widget__about .social-link ul li a:before {
  position: absolute;
  content: "";
  background-color: var(--thm-base);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 33px;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.footer-widget__about .social-link ul li a:hover:before {
  height: 100%;
}

.footer-widget__about .social-link ul li a span::before {
  position: relative;
  display: inline-block;
  line-height: 35px;
}

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

.footer-widget__links.mar-l {
  position: relative;
  display: block;
  margin-left: -20px;
}

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

.footer-widget__links-list-item {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.footer-widget__links-list-item:last-child {
  margin-bottom: 0px;
}

.footer-widget__links-list-item a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0.015em;
  font-family: var(--thm-font);
}

.footer-widget__links-list-item a:hover {
  color: #ffffff;
}

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

.footer-widget__gallery ul {
  position: relative;
  display: block;
  margin-left: -3px;
  margin-right: -3px;
  padding-top: 7px;
}

.footer-widget__gallery-single {
  position: relative;
  display: inline-block;
  padding: 0px 3px 0px;
  margin-bottom: 10px;
}

.footer-widget__gallery-single .img-box {
  position: relative;
  display: block;
}

.footer-widget__gallery-single .img-box img {
  width: 100%;
}

.footer-widget__gallery-single .img-box .overlay-icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--thm-black-rgb), 0.8);
  border-radius: 0px;
  opacity: 0;
  transform: perspective(400px) scale(0);
  transform-origin: top;
  transition: all 0.5s ease-in-out 0s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.footer-widget__gallery-single:hover .img-box .overlay-icon {
  opacity: 1;
  transform: perspective(400px) scale(1);
  transition: all 0.3s ease-in-out 0.3s;
}

.footer-widget__gallery-single .img-box .overlay-icon a {
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__bottom {
  position: relative;
  display: block;
  padding: 32px 0px 31px;
}

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

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

.footer-one__bottom-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-one__bottom-text p a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-one__bottom-text p a:hover {
  color: #ffffff;
}

/***
=====================================================
    About Two
=====================================================
***/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0px 140px;
}

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

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

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

.about-two__img1-inner img {
  width: 100%;
}

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

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

.about-two__img2 {
  position: absolute;
  left: -90px;
  bottom: -20px;
  z-index: 5;
}

.about-two__img2::before {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 15px solid #ffffff;
  border-radius: 50%;
  content: "";
  z-index: 1;
}

.about-two__img2-inner {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

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

.about-two__content {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
  margin-top: 30px;
  margin-left: 10px;
}

.about-two__content .section-title {
  padding-bottom: 32px;
}

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

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

.about-two__content-inner .text p {
  margin: 0px;
}

.about-two__content-list {
  position: relative;
  display: block;
  margin-top: 19px;
}

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

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

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

.about-two__content-list ul li p {
  position: relative;
  padding-left: 20px;
}

.about-two__content-list ul li p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
}

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

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

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

.about-two__progress-title {
  color: var(--thm-base);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 8px;
  font-family: var(--thm-font);
}

.about-two__progress .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background: #e4e4e4;
  border-radius: 0px;
  margin-bottom: 6px;
}

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

.about-two__progress .count-text {
  position: absolute;
  top: -32px;
  right: 0px;
  color: var(--thm-base);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  -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;
}

/***
=====================================================
    Counter One
=====================================================
***/
.counter-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 90px;
}

.counter-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.09);
  padding: 30px 0px 34px;
  padding-left: 25px;
  padding-right: 15px;
  margin-bottom: 30px;
  z-index: 1;
}

.counter-one__single::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  transition: all 500ms ease;
  z-index: -1;
}

.counter-one__single:hover:before {
  transform: scaleX(1);
}

.counter-one__single-inner {
  position: relative;
  display: block;
  padding-left: 80px;
}

.counter-one__single-inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-inner .icon-box {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.counter-one__single-inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 65px;
  line-height: 65px;
}

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

.counter-one__single-inner .text-box h3 {
  color: #222222;
  font-size: 35px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--thm-font-two);
  display: inline-block;
  padding-right: 5px;
}

.counter-one__letter {
  position: relative;
  display: inline-block;
  top: 5px;
  color: #222222;
  font-size: 35px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--thm-font-two);
}

.counter-one__plus {
  position: relative;
  display: inline-block;
  top: 5px;
  color: #222222;
  font-size: 35px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--thm-font-two);
}

.counter-one__text {
  margin: 0px;
  line-height: 20px;
}

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

.features-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 2.5px 4.33px 70px 0px rgb(0, 80, 159, 0.06);
  padding: 22px 30px 26px;
  margin-bottom: 30px;
  z-index: 1;
}

.features-one__single .layer-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  background-size: cover;
  background-position: center top;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.features-one__single:hover .layer-outer {
  transform: scaleY(1);
}

.features-one__single .layer-outer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--thm-base-rgb), 0.87);
  content: "";
}

.features-one__single::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--thm-base);
  transform: scaleX(1);
  transition: all 500ms ease;
  content: "";
}

.features-one__single:hover:before {
  transform: scaleX(0);
}

.features-one__single-inner {
  position: relative;
  display: block;
  padding-left: 54px;
}

.features-one__single-inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
}

.features-one__single-inner .icon-box span::before {
  position: relative;
  display: inline-block;
  top: 8px;
  color: var(--thm-base);
  font-size: 35px;
  line-height: 35px;
  font-weight: 400;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.features-one__single:hover .features-one__single-inner .icon-box span::before {
  color: #ffffff;
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

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

.features-one__single-inner .content-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0.015em;
  margin-bottom: 3px;
}

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

.features-one__single:hover .features-one__single-inner .content-box h2 a {
  color: #ffffff;
}

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

.features-one__single:hover .features-one__single-inner .content-box p {
  color: #ffffff;
}

.features-one__single-inner .content-box .btn-box {
  position: relative;
  display: block;
  margin-top: 8px;
}

.features-one__single-inner .content-box .btn-box a {
  color: var(--thm-base);
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.015em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-one__single:hover
  .features-one__single-inner
  .content-box
  .btn-box
  a {
  color: #ffffff;
}

.features-one__single-inner .content-box .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

/***
=====================================================
    Service Two
=====================================================
***/
.service-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

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

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

.service-two__single-img .icon-box {
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  background: #ffffff;
  box-shadow: 0.5px 0.866px 5px 0px rgb(0, 0, 0, 0.2);
  border-radius: 50%;
  color: var(--thm-base);
  font-size: 35px;
  text-align: center;
  transition: 0.5s;
  z-index: 5;
}

.service-two__single:hover .service-two__single-img .icon-box {
  color: #ffffff;
  background: var(--thm-base);
}

.service-two__single-img .icon-box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--thm-base);
  transition: 0.7s;
  transform: scale(0);
  border-radius: 50%;
}

.service-two__single:hover .service-two__single-img .icon-box:before {
  transform: scale(1);
}

.service-two__single-img .icon-box span:before {
  position: relative;
  display: inline-block;
  line-height: 70px;
}

.service-two__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-two__single-img-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--thm-base-rgb), 0.71);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.service-two__single:hover .service-two__single-img-inner:before {
  transform: translateY(0);
  width: 100%;
}

.service-two__single-img-inner img {
  width: 100%;
}

.service-two__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
  padding: 57px 10px 36px;
  z-index: 1;
}

.service-two__single-content::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: var(--thm-base);
  transform: scaleX(0);
  transition: all 500ms ease;
  z-index: -1;
}

.service-two__single:hover .service-two__single-content:before {
  transform: scaleX(1);
}

.service-two__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0.015em;
  margin-bottom: 3px;
}

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

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

/***
=====================================================
    Projects Two
=====================================================
***/
.projects-two {
  position: relative;
  display: block;
  background: #f1f5f9;
  padding: 120px 0px 90px;
}

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

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

.projects-two__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 2;
}

.projects-two__single-img-inner img {
  width: 100%;
  transform: scale(1.01);
  transition: all 700ms ease;
}

.projects-two__single:hover .projects-two__single-img-inner img {
  transform: scale(1.2) rotate(2deg);
}

.projects-two__single-img .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(var(--thm-base-rgb), 0.7);
  transform: scaleX(0);
  transition: all 700ms ease 100ms;
  z-index: 5;
}

.projects-two__single:hover .projects-two__single-img .overlay-content {
  transform: scaleY(1);
}

.projects-two__single-img .overlay-content .text {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 700ms ease;
}

.projects-two__single:hover .projects-two__single-img .overlay-content .text {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}

.projects-two__single-img .overlay-content p {
  color: #ffffff;
  font-weight: 500;
}

.projects-two__single-img .overlay-content h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin: 4px 0 0;
}

.projects-two__single-img .overlay-content h3 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-two__single-img .overlay-content h3 a:hover {
  color: #ffffff;
}

.projects-two__single-img .overlay-content ul {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 33px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
}

.projects-two__single:hover .projects-two__single-img .overlay-content ul {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.projects-two__single-img .overlay-content ul li {
  position: relative;
  display: inline-block;
  margin: 0 3.5px;
}

.projects-two__single-img .overlay-content ul li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 51px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.projects-two__single-img .overlay-content ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  content: "";
  border-radius: 0%;
  z-index: -1;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.projects-two__single-img .overlay-content ul li a:hover:before {
  transform: scaleX(1);
}

.projects-two__single-img .overlay-content ul li a span::before {
  position: relative;
  display: inline-block;
}

.projects-two__single-img .overlay-content ul li a:hover {
  border-color: var(--thm-base);
  background-color: var(--thm-base);
}

/***
=====================================================
    Video One
=====================================================
***/
.video-one {
  position: relative;
  display: block;
  padding: 210px 0 210px;
}

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

.video-one-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: rgba(var(--thm-base-rgb), 0.85);
  z-index: -1;
}

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

.video-one__video-link {
  position: relative;
  display: block;
  z-index: 2;
}

.video-one__video-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 25px;
  color: var(--thm-base);
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.video-one__video-icon:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}

.video-one__video-icon:before {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: #ffffff;
  opacity: 0.52;
}

.video-one__video-icon:after {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background-color: #ffffff;
  opacity: 0.43;
}

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

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

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

/***
=====================================================
    Faq One
=====================================================
***/
.faq-one {
  position: relative;
  display: block;
  background: #ffffff;
}

.faq-one__content {
  position: relative;
  display: block;
  padding-right: 30px;
}

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

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 11px 30px 11px;
  background: #f1f5f9;
  border-radius: var(--thm-bdr-radius);
  padding-right: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title::before {
  position: absolute;
  top: 50%;
  right: 14px;
  content: "\e902";
  font-family: "icomoon" !important;
  font-weight: 900;
  font-size: 13px;
  color: var(--thm-base);
  transform: rotate(0deg) translateY(-50%);
  transition: all 500ms ease;
  width: 20px;
  height: 20px;
  line-height: 22px;
}

.faq-one-accrodion .accrodion.active .accrodion-title::before {
  color: #ffffff;
  transform: rotate(180deg) translateY(50%);
  top: 50%;
  right: 21px;
}

.faq-one-accrodion .accrodion-title-inner {
  position: relative;
  display: block;
  padding-left: 35px;
}

.faq-one-accrodion .accrodion-title-inner .icon {
  position: absolute;
  top: 3px;
  left: 0;
}

.faq-one-accrodion .accrodion-title-inner .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion.active .accrodion-title-inner .icon span::before {
  color: #ffffff;
}

.faq-one-accrodion .accrodion-title h4 {
  position: relative;
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion + .accrodion {
  margin-top: 25px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  background: var(--thm-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: #ffffff;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 23px 20px 20px;
  padding-right: 50px;
  margin-top: 0px;
  background: #f1f5f9;
}

.faq-one-accrodion .accrodion-content .inner {
  position: relative;
  display: block;
  padding-left: 160px;
}

.faq-one-accrodion .accrodion-content .inner .img-box {
  position: absolute;
  top: -3px;
  left: 0;
}

.faq-one-accrodion .accrodion-content .inner .img-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--thm-base-rgb), 0.7);
  content: "";
}

.faq-one-accrodion .accrodion-content .inner .text {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion-content .inner .img-box img {
  width: 100%;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
}

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

.faq-one__img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(var(--thm-base-rgb), 0.7) 0%,
    rgba(var(--thm-base-rgb), 0.3) 100%
  );
  transform: skewX(25deg);
  z-index: 2;
}

.faq-one__img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

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

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

/***
=====================================================
    About Three
=====================================================
***/
.about-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

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

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

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

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

.about-three__content .section-title {
  padding-bottom: 18px;
}

.about-three__content-inner {
  position: relative;
  display: block;
}

.about-three__content-inner .text {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.about-three__content-inner .text p {
  margin: 0;
}

.about-three__content-counter {
  position: relative;
  display: block;
}

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

.pricing-plan-one .section-title__style2 {
  padding-bottom: 52px;
}

.pricing-plan-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  transition: all 500ms ease;
  transition-delay: 0.3s;
  z-index: 1;
}

.pricing-plan-one__single::before {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  bottom: 0px;
  right: 0;
  background: var(--thm-base);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 2;
  opacity: 0;
}

.pricing-plan-one__single:hover::before {
  opacity: 0.95;
}

.pricing-plan-one__single:after {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  right: 0;
  bottom: 0;
  box-shadow: 0px 10px 50px 0px rgba(12, 21, 41, 0.15);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
  content: "";
}

.pricing-plan-one__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 15px;
  padding: 0px 40px 50px;
}

.pricing-plan-one__single-inner::before {
  position: absolute;
  top: 15px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  content: "";
}

.pricing-plan-one__single-inner .layer-outer {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.pricing-plan-one__single:hover .pricing-plan-one__single-inner .layer-outer {
  left: 0;
  bottom: 0;
  opacity: 0.1;
}

.pricing-plan-one__single .table-header {
  position: relative;
  display: block;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.pricing-plan-one__single:hover .table-header {
  border-bottom: 2px dashed #ffffff;
}

.pricing-plan-one__single .table-header .category-wrapper {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  z-index: 10;
}

.pricing-plan-one__single .table-header .category-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 15px;
  width: 10px;
  background: var(--thm-base);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 10;
}

.pricing-plan-one__single:hover .table-header .category-wrapper:before {
  background: var(--thm-black);
}

.pricing-plan-one__single .table-header .category-wrapper:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 15px;
  width: 10px;
  background: var(--thm-base);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 10;
}

.pricing-plan-one__single:hover .table-header .category-wrapper:after {
  background: var(--thm-black);
}

.pricing-plan-one__single .table-header h3 {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  background: var(--thm-base);
  padding: 15px 45px;
  font-family: var(--thm-font);
  margin-bottom: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.pricing-plan-one__single:hover .table-header h3 {
  background: var(--thm-black);
}

.pricing-plan-one__single .table-header h2 {
  color: var(--thm-black);
  font-size: 45px;
  line-height: 1em;
  font-weight: 700;
  margin-bottom: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.pricing-plan-one__single:hover .table-header h2 {
  color: #ffffff;
}

.pricing-plan-one__single .table-header p {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-plan-one__single:hover .table-header p {
  color: #ffffff;
}

.pricing-plan-one__single .table-content {
  position: relative;
  display: block;
  margin-top: 43px;
  z-index: 5;
}

.pricing-plan-one__single .table-content ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.pricing-plan-one__single .table-content ul li {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 29px;
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 15px;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-plan-one__single:hover .table-content ul li {
  color: #ffffff;
}

.pricing-plan-one__single .table-content ul li:last-child {
  margin-bottom: 0px;
}

.pricing-plan-one__single .table-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 0;
  background: var(--thm-base);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-plan-one__single:hover .table-content ul li::before {
  background: #ffffff;
}

.pricing-plan-one__single .table-footer {
  position: relative;
  display: block;
  margin-top: 36px;
  z-index: 5;
}

.pricing-plan-one__single .table-footer .thm-btn {
  font-size: 18px;
}

.pricing-plan-one__single .table-footer .thm-btn span {
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.pricing-plan-one__single:hover .table-footer .thm-btn span {
  color: var(--thm-base);
}

.pricing-plan-one__single:hover .table-footer .thm-btn .liquid {
  background: #ffffff;
}

.pricing-plan-one__single:hover .table-footer .thm-btn .liquid::before {
  background: rgba(var(--thm-base-rgb), 0.4);
}

.pricing-plan-one__single:hover .table-footer .thm-btn .liquid::after {
  background: rgba(var(--thm-base-rgb), 0.1);
}

/***
=============================================
    Services Three Css
=============================================
***/
.services-three {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  background: #ffffff;
}

.services-three__single {
  position: relative;
  display: block;
  background: #f1f5f9;
  padding: 50px 40px 46px;
  margin-bottom: 30px;
  z-index: 1;
}

.services-three__single:before,
.services-three__single:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.services-three__single:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  border-top: 3px solid var(--thm-base);
  border-bottom: 3px solid var(--thm-base);
}

.services-three__single:after {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  border-left: 3px solid var(--thm-base);
  border-right: 3px solid var(--thm-base);
}

.services-three__single:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.services-three__single:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.services-three__single-icon {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.services-three__single:hover .services-three__single-icon {
  transform: rotateY(180deg);
}

.services-three__single-icon span {
}

.services-three__single-content {
  position: relative;
  display: block;
  margin-top: 26px;
}

.services-three__single-content h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 13px;
}

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

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

.services-three__single-content p {
  margin: 0;
}

/***
=============================================
    Team Two
=============================================
***/

.team-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

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

.team-two__single-img {
  position: relative;
  display: block;
  background: var(--thm-base);
  overflow: hidden;
}

.team-two__single-img::before {
  position: absolute;
  top: 0%;
  left: 0%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
}

.team-two__single:hover .team-two__single-img::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.team-two__single-img::after {
  position: absolute;
  bottom: 0%;
  right: 0%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  opacity: 0;
  z-index: 10;
}

.team-two__single:hover .team-two__single-img::after {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.team-two__single-img img {
  width: 100%;
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
}

.team-two__single:hover .team-two__single-img img {
  transform: scale(1.2) rotate(1deg);
  opacity: 0.5;
}

.team-two__single-social-links {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
  transform-origin: bottom center;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  z-index: 10;
}

.team-two__single:hover .team-two__single-social-links {
  opacity: 1;
  transform: scaleY(1);
}

.team-two__single-social-links ul {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto;
}

.team-two__single-social-links ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin: 0;
  border-right: 3px solid transparent;
}

.team-two__single-social-links ul li:first-child {
  border-left: none;
}

.team-two__single-social-links ul li:last-child {
  border-right: none;
}

.team-two__single-social-links ul li a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--thm-black);
  font-size: 18px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background: #ffffff;
  z-index: 1;
}

.team-two__single-social-links ul li a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.team-two__single-title {
  position: relative;
  display: block;
  background: #f1f5f9;
  padding: 38px 0px 30px;
}

.team-two__single-title h3 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 3px;
}

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

.team-two__single-title h3 a:hover {
  color: var(--thm-base);
}

.team-two__single-title p {
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 600;
}

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

.testimonial-two .shape1 {
  position: absolute;
  top: -30px;
  right: -70px;
  z-index: -1;
}

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

.testimonial-two::before {
  position: absolute;
  top: 0;
  left: -999999px;
  bottom: 0;
  right: 40%;
  background: #f1f5f9;
  content: "";
  -moz-transform: skew(22deg, 0deg);
  -webkit-transform: skew(22deg, 0deg);
  -o-transform: skew(22deg, 0deg);
  -ms-transform: skew(22deg, 0deg);
  transform: skew(22deg, 0deg);
  z-index: -1;
}

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

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

.testimonial-two__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 30px 25px 35px;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
  margin-top: 2px;
  z-index: 1;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  transition: all 400ms linear;
  transition-delay: 0.1s;
}

.testimonial-two__single:hover .testimonial-two__single-content {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.testimonial-two__single-content:before {
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 30px;
  margin: auto;
  width: 30px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 5px 3px 2px 0px rgb(0 0 0 / 3%);
}

.testimonial-two__single-content .rating {
  position: relative;
  display: block;
  margin-top: 9px;
}

.testimonial-two__single-content .rating ul {
  position: relative;
  display: block;
}

.testimonial-two__single-content .rating ul li {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
}

.testimonial-two__single-content .icon {
  position: relative;
  display: block;
  margin-bottom: 17px;
  z-index: 1;
}

.testimonial-two__single-content .icon i {
  position: relative;
  display: inline-block;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--thm-base);
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
}

.testimonial-two__single-thumb {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  overflow: hidden;
  margin-top: 40px;
  background: var(--thm-black);
}

.testimonial-two__single-thumb img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.testimonial-two__single:hover .testimonial-two__single-thumb img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.testimonial-two__single .title-box {
  position: relative;
  display: block;
  margin-top: 6px;
}

.testimonial-two__single .title-box h2 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 24px;
}

.testimonial-two__single .title-box span {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  color: var(--thm-gray);
  padding-top: 2px;
}

.testimonial-two__carousel.owl-theme .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel .owl-stage-outer .owl-item {
  opacity: 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.testimonial-two__carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

/***
=============================================
    Blog Two
=============================================
***/
.blog-one--two {
  position: relative;
  display: block;
  background: #ffffff;
}

.blog-one--two .blog-one__content {
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
}

.blog-one--two .blog-one__carousel.owl-theme .owl-stage-outer {
  overflow: visible;
}

.blog-one--two .blog-one__carousel .owl-stage-outer .owl-item {
  opacity: 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.blog-one--two .blog-one__carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
}

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

.brand-one .swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f1f5f9;
  padding: 20px 0px 20px;
  z-index: 1;
}

.brand-one .swiper-slide:before,
.brand-one .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.brand-one .swiper-slide:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  border-top: 1px solid var(--thm-base);
  border-bottom: 1px solid var(--thm-base);
}

.brand-one .swiper-slide:after {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  border-left: 1px solid var(--thm-base);
  border-right: 1px solid var(--thm-base);
}

.brand-one .swiper-slide:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.brand-one .swiper-slide:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.brand-one .swiper-slide a {
  position: relative;
  display: inline-block;
}

.brand-one .swiper-slide > a > img {
  opacity: 0.5;
  transition: all 0.2s ease-in-out 0.1s;
}

.brand-one .swiper-slide:hover > a > img {
  opacity: 0.8;
  transition: all 0.8s ease-in-out 0.1s;
}

/***
=============================================
    Brand Two
=============================================
***/
.brand-one--two {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
}

/***
=============================================
    Service Details
=============================================
***/
.service-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 0px;
}

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

.service-details__top-img {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
}

.service-details__top-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.service-details__top-img:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.service-details__sidebar {
  position: relative;
  display: block;
  background: #f2f2f2;
  padding: 42px 30px 53px;
}

.service-details__sidebar::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--thm-base);
  content: "";
}

.service-details__sidebar-title {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0.015em;
  margin-bottom: 21px;
}

.service-details__sidebar-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-details__sidebar-list-item {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.service-details__sidebar-list-item:last-child {
  margin-bottom: 0px;
}

.service-details__sidebar-list-item a {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  font-family: var(--thm-font);
  letter-spacing: 0.015em;
  padding: 10px 25px 9px;
  text-transform: capitalize;
  background: #ffffff;
  z-index: 1;
}

.service-details__sidebar-list-item a:hover,
.service-details__sidebar-list-item a.active {
  color: #ffffff;
}

.service-details__sidebar-list-item a:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  transform: perspective(400px) rotateX(90deg);
  transform-origin: bottom;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  background: var(--thm-base);
}

.service-details__sidebar-list-item a:hover:after,
.service-details__sidebar-list-item a.active:after {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.service-details__bottom {
  position: relative;
  display: block;
  margin-top: 60px;
}

.service-details__bottom-title {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0.015em;
  margin-bottom: 19px;
}

.service-details__bottom-text1 {
  position: relative;
  display: block;
}

.service-details__bottom-text1 p {
  margin: 0;
}

.service-details__bottom-text2 {
  position: relative;
  display: block;
  margin-top: 35px;
}

.service-details__bottom-text2 p {
  margin: 0;
}

.service-details__bottom-text3 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.service-details__bottom-text3 .img-box {
  position: relative;
  display: block;
}

.service-details__bottom-text3 .img-box img {
  width: 100%;
}

.service-details__bottom-text3 .content-box {
  position: relative;
  display: block;
  margin-top: -7px;
}

.service-details__bottom-text3 .content-box p {
  margin: 0;
}

.service-details__bottom-text3 .content-box ul {
  position: relative;
  display: block;
  margin-top: 19px;
}

.service-details__bottom-text3 .content-box ul li {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.service-details__bottom-text3 .content-box ul li:last-child {
  margin-bottom: 0;
}

.service-details__bottom-text3 .content-box ul li span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 700;
  padding-right: 5px;
}

/***
=============================================
    Projects Detalis
=============================================
***/
.projects-detalis {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 0px;
}

.projects-detalis__content {
  position: relative;
  display: block;
}

.projects-detalis__content-carousel.owl-theme .owl-dots {
  display: none;
}

.projects-detalis__content-carousel.owl-carousel .owl-nav {
  display: block;
}

.projects-detalis__content-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 48%;
  left: 40px;
  right: 40px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.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;
  z-index: 999;
}

.projects-detalis__content-carousel.owl-theme .owl-prev span,
.projects-detalis__content-carousel.owl-theme .owl-next span {
  display: block;
}

.projects-detalis__content-carousel.owl-theme .owl-nav .owl-prev,
.projects-detalis__content-carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.7);
  border: 0px solid rgba(17, 14, 14, 0.3);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  text-align: center;
  color: var(--thm-base);
  font-size: 25px;
  line-height: 60px;
  font-weight: 400;
  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;
}

.projects-detalis__content-carousel.owl-theme .owl-nav .owl-prev:hover,
.projects-detalis__content-carousel.owl-theme .owl-nav .owl-next:hover {
  color: var(--thm-base);
  background: #ffffff;
  z-index: 99;
}

.projects-detalis__content-text1 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.projects-detalis__content-text1 h2 {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 23px;
}

.projects-detalis__content-text1 p {
  margin: 0px;
}

.projects-detalis__content-text2 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.projects-detalis__content-text2 h2 {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 23px;
}

.projects-detalis__content-text2 .text1 {
  margin: 0px;
}

.projects-detalis__content-text2 ul {
  position: relative;
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
}

.projects-detalis__content-text2 ul li {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.projects-detalis__content-text2 ul li:last-child {
  margin-bottom: 0px;
}

.projects-detalis__content-text2 ul li span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  padding-right: 5px;
}

.projects-detalis__content-text2 .text2 {
  margin: 0;
}

.projects-detalis__content-text3 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.projects-detalis__content-text3 h2 {
  color: var(--thm-black);
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 23px;
}

.projects-detalis__content-text3 p {
  margin: 0px;
}

.projects-detalis__content-text3 ul {
  position: relative;
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
}

.projects-detalis__content-text3 ul li {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.projects-detalis__content-text3 ul li:last-child {
  margin-bottom: 0px;
}

.projects-detalis__content-text3 ul li span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  padding-right: 5px;
}

.projects-detalis__sidebar {
  position: relative;
  display: block;
}

.projects-detalis__sidebar-single {
  position: relative;
  display: block;
  background: #f1f5f9;
  padding: 45px 45px 23px;
  margin-bottom: 40px;
}

.projects-detalis__sidebar-single.pd-b22 {
  padding-bottom: 50px;
}

.projects-detalis__sidebar-single .title {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.projects-detalis__sidebar-single .title h2 {
  color: var(--thm-black);
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.projects-detalis__sidebar-project-info {
  position: relative;
  display: block;
}

.projects-detalis__sidebar-project-info .text {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.projects-detalis__sidebar-project-info .text p {
  margin: 0;
}

.projects-detalis__sidebar-project-info ul {
  position: relative;
  display: block;
}

.projects-detalis__sidebar-project-info ul li {
  position: relative;
  display: flex;
  margin-bottom: 18px;
}

.projects-detalis__sidebar-project-info ul li:last-child {
  margin-bottom: 0;
}

.projects-detalis__sidebar-project-info ul li span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 500;
  min-width: 100px;
  margin-right: 18px;
}

.projects-detalis__sidebar-project-info ul li span::before {
  position: absolute;
  top: -1px;
  right: 0;
  font-size: 18px;
  color: var(--thm-black);
  font-weight: 500;
  content: ":";
}

.projects-detalis__sidebar-project-info ul li ul {
  position: relative;
  display: block;
}

.projects-detalis__sidebar-project-info ul li ul li {
  position: relative;
  display: inline-block;
}

.projects-detalis__sidebar-project-info ul li ul li i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 17px;
}

.projects-detalis__sidebar-recent-post {
  position: relative;
  display: block;
}

.projects-detalis__sidebar-recent-post-list {
  position: relative;
  display: block;
}

.projects-detalis__sidebar-recent-post-list li {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 16px 20px 20px;
  border-bottom: 2px solid #f1f5f9;
}

.projects-detalis__sidebar-recent-post-list li:last-child {
  border-bottom: none;
}

.projects-detalis__sidebar-recent-post-list li .post-date {
  color: var(--thm-gray);
  font-size: 15px;
  font-weight: 500;
}

.projects-detalis__sidebar-recent-post-list li .post-date i:before {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.projects-detalis__sidebar-recent-post-list li h4 {
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
  margin-top: 4px;
}

.projects-detalis__sidebar-recent-post-list li h4 a {
  color: var(--thm-black);
}

.projects-detalis__sidebar-recent-post-list li h4 a:hover {
  color: var(--thm-base);
}

.projects-detalis__sidebar-discount {
  position: relative;
  display: block;
}

.projects-detalis__sidebar-discount .img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.projects-detalis__sidebar-discount .img-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8407738095238095) 20%,
    rgba(0, 0, 0, 0.12648809523809523) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  content: "";
  z-index: 0;
  top: 0;
}

.projects-detalis__sidebar-discount .img-box img {
  width: 100%;
}

.projects-detalis__sidebar-discount .content-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  text-align: center;
}

.projects-detalis__sidebar-discount .content-box h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
}

.projects-detalis__sidebar-discount .content-box h2 span {
  color: #ffffff;
  font-size: 45px;
  line-height: 45px;
  font-weight: 700;
}

.projects-detalis__sidebar-discount .content-box h4 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
}

.projects-detalis__sidebar-discount .content-box .btn-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

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

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

.team-one--team .team-one__single-img {
  background: var(--thm-gray);
}

.team-one--team .team-one__single-img img {
  mix-blend-mode: luminosity;
}

.team-one--team .team-one__single:hover .team-one__single-img img {
  mix-blend-mode: normal;
}

/***
=====================================================
    Team Details
=====================================================
***/
.team-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

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

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

.team-details__content {
  position: relative;
  display: block;
  background: #f2f2f2;
  padding: 42px 30px 55px;
}

.team-details__content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  width: 100%;
  height: 5px;
  content: "";
}

.team-details__content .title {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.team-details__content .title h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.team-details__content .name {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 9px 25px 8px;
  margin-bottom: 20px;
}

.team-details__content .name h6 {
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 29px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.team-details__content .text {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 17px 25px 16px;
  margin-bottom: 20px;
}

.team-details__content .text p {
  color: #999999;
  margin: 0;
}

.team-details__content .number {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 8px 25px 6px;
  margin-bottom: 20px;
}

.team-details__content .number p {
  letter-spacing: 0.015em;
}

.team-details__content .number p a {
  color: var(--thm-gray);
}

.team-details__content .number p a:hover {
  color: var(--thm-base);
}

.team-details__content .social-icon {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 8px 25px 6px;
}

.team-details__content .social-icon .title {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.team-details__content .social-icon .title h6 {
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 29px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.team-details__content .social-icon ul {
  position: relative;
  display: block;
}

.team-details__content .social-icon ul li {
  position: relative;
  display: inline-block;
  padding-left: 25px;
}

.team-details__content .social-icon ul li a {
  color: var(--thm-black);
  font-size: 20px;
}

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

/***
=====================================================
    Contact One Team Details
=====================================================
***/
.contact-one--team-details {
  position: relative;
  display: block;
  background: #f1f5f9;
}

.contact-one--team-details .section-title__tagline {
  color: var(--thm-base);
}

.contact-one--team-details .section-title__title {
  color: var(--thm-base);
}

.contact-one--team-details .contact-one__form-box .input-box input[type="text"],
.contact-one--team-details
  .contact-one__form-box
  .input-box
  input[type="email"],
.contact-one--team-details .contact-one__form-box .input-box textarea {
  border: 2px solid var(--thm-base);
  color: var(--thm-base);
}

.contact-one--team-details .contact-one__form-box .input-box .nice-select {
  border: 2px solid var(--thm-base);
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  .input-box
  .nice-select:after {
  border-bottom: 2px solid var(--thm-base);
  border-right: 2px solid var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="text"]::-webkit-input-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="text"]:-moz-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="text"]::-moz-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="text"]:-ms-input-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="email"]::-webkit-input-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="email"]:-moz-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="email"]::-moz-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  input[type="email"]:-ms-input-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  textarea::-webkit-input-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  textarea:-moz-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  textarea::-moz-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  textarea:-ms-input-placeholder {
  color: var(--thm-base);
}

.contact-one--team-details .nice-select .option {
  color: #ffffff;
}

.contact-one--team-details .nice-select .option:hover,
.contact-one--team-details .nice-select .option.focus,
.contact-one--team-details .nice-select .option.selected.focus {
  background-color: #f6f6f6;
  color: var(--thm-base);
}

.contact-one--team-details .contact-one__form-box form .button-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.contact-one--team-details
  .contact-one__form-box
  form
  .button-box
  button.thm-btn
  span {
  color: #ffffff;
}

.contact-one--team-details
  .contact-one__form-box
  form
  .button-box
  button.thm-btn
  .liquid {
  background: var(--thm-base);
}

.contact-one--team-details
  .contact-one__form-box
  form
  .button-box
  button.thm-btn
  .liquid::before {
  background: rgba(255, 255, 255, 0.4);
}

.contact-one--team-details
  .contact-one__form-box
  form
  .button-box
  button.thm-btn
  .liquid::after {
  background: rgba(255, 255, 255, 0.1);
}

/***
=====================================================
    Contact One Team Details
=====================================================
***/
.subscribe-one {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 80px 0px 80px;
}

.subscribe-one__content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 30px 30px;
}

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

.subscribe-one__content .subscribe-title h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  padding: 12px 0 13px;
}

.subscribe-one__content .subscribe-box {
  position: relative;
  display: block;
  max-width: 560px;
  width: 100%;
}

.subscribe-one__content .subscribe-form {
  position: relative;
  display: block;
  width: 100%;
}

.subscribe-one__content .subscribe-form input[type="email"] {
  position: relative;
  display: block;
  max-width: 320px;
  width: 100%;
  height: 55px;
  background: transparent;
  border: 0px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.subscribe-one__content .subscribe-form input::-webkit-input-placeholder {
  color: #ffffff;
}

.subscribe-one__content .subscribe-form input:-moz-placeholder {
  color: #ffffff;
}

.subscribe-one__content .subscribe-form input::-moz-placeholder {
  color: #ffffff;
}

.subscribe-one__content .subscribe-form input:-ms-input-placeholder {
  color: #ffffff;
}

.subscribe-one__content .subscribe-form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  line-height: 55px;
  padding-left: 45px;
  padding-right: 45px;
  transition: all 300ms ease 100ms;
  outline: none;
  border: none;
}

/***
=====================================================
    Blog One Blog
=====================================================
***/
.blog-one--blog {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
}

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

.blog-one__content .meta-info {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 6px;
}

.blog-one__content .meta-info li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 24px;
  margin-right: 20px;
}

.blog-one__content .meta-info li:last-child {
  margin-right: 0px;
}

.blog-one__content .meta-info li span:before {
  position: relative;
  display: inline-block;
  padding-right: 6px;
  font-size: 14px;
  top: 1px;
  left: 1px;
}

.blog-one__content .meta-info li a {
  color: #84827c;
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

/***
=====================================================
    Blog Details
=====================================================
***/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

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

.blog-details__img {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
}

.blog-details__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-details__img:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.blog-details__date {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--thm-base);
  text-align: center;
  padding: 15px 20px;
}

.blog-details__date p {
  font-size: 15px;
  color: #ffffff;
  margin: 0;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 29px;
}

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

.blog-details__meta li + li {
  margin-left: 20px;
}

.blog-details__meta li a {
  font-size: 15px;
  color: var(--thm-base);
}

.blog-details__meta li a span {
  position: relative;
  top: -1px;
  margin-left: 6px;
}

.blog-details__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 18px;
}

.blog-details__text-1 {
  margin: 0;
}

.blog-details__text-2 {
  margin: 0;
  padding-top: 40px;
}

.blog-details__content-two {
  position: relative;
  display: block;
  margin-top: 68px;
}

.blog-details__content-two-img {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  overflow: hidden;
}

.blog-details__content-two-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-details__content-two-img:hover img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.blog-details__content-two-details {
  position: relative;
  display: block;
  margin-top: 25px;
}

.blog-details__content-two-title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 18px;
}

.blog-details__content-two-text-1 {
  margin: 0;
}

.blog-details__content-two-text-2 {
  margin: 0;
  padding-top: 40px;
}

.blog-details__content-two-points {
  position: relative;
  display: block;
  margin-top: 39px;
}

.blog-details__content-two-points li {
  position: relative;
  display: block;
  padding-left: 24px;
}

.blog-details__content-two-points li:before {
  position: absolute;
  top: 10px;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: var(--thm-base);
  border-radius: 50%;
  content: "";
}

.blog-details__content-two-points li + li {
  margin-top: 15px;
}

.blog-details__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid #dddddd;
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags span {
  color: var(--thm-black);
  font-size: 20px;
  margin-right: 16px;
  font-weight: 700;
}

.blog-details__tags a {
  position: relative;
  color: #ffffff;
  font-size: 12px;
  background-color: var(--thm-base);
  display: inline-block;
  padding: 7px 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: var(--thm-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.blog-details__tags a + a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.blog-details__social-list a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-color: var(--thm-base);
  border-radius: 5%;
  font-size: 15px;
  height: 35px;
  width: 35px;
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: #ffffff;
  transform: rotate(360deg);
  background-color: var(--thm-black);
}

.blog-details__social-list a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--thm-black);
  border-radius: 5%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

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

.blog-details__social-list a:hover:before {
  transform: scaleX(1);
}

.author-one {
  background-color: #f1f5f9;
  padding: 60px 60px 60px;
  display: -webkit-box;
  display: flex;
  margin-bottom: 53px;
  border-radius: var(--thm-bdr-radius);
}

.author-one__image {
  position: relative;
  display: inline-block;
}

.author-one__image img {
  width: auto;
  border-radius: var(--Washup-bdr-radius);
}

.author-one__content {
  margin-left: 40px;
  margin-top: -8px;
}

.author-one__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.author-one__content p {
  margin: 0;
}

/***
=====================================================
    Comments
=====================================================
***/
.comment-one {
  position: relative;
  display: block;
}

.comment-one__title,
.comment-form__title {
  margin: 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 52px;
}

.comment-one__single {
  display: -webkit-box;
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 53px;
  margin-bottom: 60px;
}

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

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 27px;
  font-weight: 700;
}

.comment-one__content p {
  margin: 0;
  margin-bottom: 15px;
}

.comment-one__content span {
  color: var(--thm-base);
  font-weight: 500;
}

.comment-one__btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  font-size: 12px;
  padding: 5px 30px;
  background: var(--thm-base);
  border-radius: var(--thm-bdr-radius);
  text-transform: uppercase;
}

.comment-one__btn:hover {
  color: #ffffff;
  background: var(--thm-black);
}

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

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

.comment-form {
  position: relative;
  display: block;
}

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

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

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  height: 65px;
  border: 2px solid #dddddd;
  color: var(--thm-gray);
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: var(--thm-bdr-radius);
  transition: all 500ms ease;
  font-family: var(--thm-font-two);
  outline: none;
}

.comment-form__input-box textarea {
  width: 100%;
  height: 150px;
  background-color: transparent;
  border: 2px solid #dddddd;
  outline: none;
  font-size: 17px;
  color: var(--thm-gray);
  border-radius: var(--thm-bdr-radius);
  padding: 22px 30px 30px;
}

.comment-form__textarea {
  height: 150px;
}

.comment-form__btn {
  border: none;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

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

.sidebar__title {
  margin: 0;
  font-size: 25px;
  margin-bottom: 28px;
  font-weight: 700;
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: rgba(var(--thm-base-rgb), 0.03);
  padding: 40px;
  border-radius: var(--thm-bdr-radius);
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: var(--thm-bdr-radius);
}

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

.sidebar__search-form ::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: #ffffff;
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: #ffffff;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: #ffffff;
}

.sidebar__search-form button[type="submit"] {
  background-color: #ffffff;
  color: var(--thm-base);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--thm-black);
  color: #ffffff;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: rgba(var(--thm-base-rgb), 0.03);
  padding: 35px 40px 40px;
  border-radius: var(--thm-bdr-radius);
}

.sidebar__category-list {
  margin: 0;
}

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

.sidebar__category-list li a {
  position: relative;
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  padding: 16.5px 20px;
  border-radius: var(--thm-bdr-radius);
  background-color: #ffffff;
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--thm-base);
  border-radius: var(--thm-bdr-radius);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.sidebar__category-list li a:hover {
  color: #ffffff;
}

.sidebar__category-list li.active a {
  background-color: var(--thm-base);
  color: #ffffff;
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #ffffff;
  background-color: var(--thm-base);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-weight: 500;
  z-index: 1;
}

.sidebar__category-list li a span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover span::before {
  transform: scaleY(1);
}

.sidebar__category-list li a:hover span {
  color: var(--thm-base);
}

.sidebar__category-list li.active a span {
  background-color: #ffffff;
  color: var(--thm-base);
  border-radius: 4px;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 35px 40px 32px;
  background-color: rgba(var(--thm-base-rgb), 0.03);
  border-radius: var(--thm-bdr-radius);
}

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

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single + .sidebar__post-single {
  margin-top: 22px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--thm-black);
  border-radius: var(--thm-bdr-radius);
  overflow: hidden;
}

.sidebar-post__img::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--thm-base-rgb), 0.8);
  border-radius: 0%;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.7;
  z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle 0.95s;
  animation: circle 0.95s;
  opacity: 1;
}

.sidebar-post__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 20px;
  line-height: 30px;
}

.sidebar__post-content-box h3 a {
  color: var(--thm-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
  color: var(--thm-base);
}

.sidebar__support {
  position: relative;
  display: block;
  background-color: var(--thm-base);
  text-align: center;
  border-radius: var(--thm-bdr-radius);
  padding: 77px 40px 90px;
  z-index: 1;
}

.sidebar__support-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: var(--thm-bdr-radius);
  mix-blend-mode: luminosity;
  opacity: 0.1;
  z-index: -1;
}

.sidebar__suppot-title {
  font-size: 50px;
  color: #ffffff;
  font-weight: 500;
  line-height: 60px;
}

.sidebar__suppot-text {
  color: #ffffff;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 33px;
}

.sidebar__support-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__support-btn-box button.sidebar__support-btn.thm-btn {
  border: 0;
  background-color: #ffffff;
}

.sidebar__support-btn-box button.sidebar__support-btn.thm-btn span {
  color: var(--thm-base);
}

.sidebar__support-btn-box button.sidebar__support-btn.thm-btn .liquid {
  background: #ffffff;
}

.sidebar__support-btn-box button.sidebar__support-btn.thm-btn .liquid::before {
  background: rgba(var(--thm-base-rgb), 0.4);
}

.sidebar__support-btn-box button.sidebar__support-btn.thm-btn .liquid::after {
  background: rgba(var(--thm-base-rgb), 0.1);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: rgba(var(--thm-base-rgb), 0.03);
  padding: 35px 35px 40px;
  border-radius: var(--thm-bdr-radius);
}

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

.sidebar__tags-list a {
  font-size: 12px;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--thm-base);
  display: inline-block;
  padding: 5px 20px;
  margin-left: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--thm-bdr-radius);
}

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

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

/***
=====================================================
    Error Page
=====================================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 82px 0px 120px;
  background: #ffffff;
}

.error-page__wrapper {
  position: relative;
  display: block;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.error-page__content h2 {
  color: transparent;
  -webkit-text-stroke: 4px var(--thm-black);
  font-size: 200px;
  line-height: 0.9em;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-page__content h3 {
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 600;
  margin-bottom: 25px;
}

.error-page__content p {
  font-weight: 500;
  margin: 0px;
}

.error-page__content .btn-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 41px;
}

/***
=============================================
    Contact Box Css
=============================================
***/
.contact-box {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

.contact-box__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-box__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  line-height: 90px;
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  z-index: 1;
}

.contact-box__single-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  box-shadow: 5px 3px 2px 0px rgb(0 0 0 / 3%);
  transform: rotate(45deg);
  content: "";
  z-index: -1;
  transition: 0.2s;
}

.contact-box__single-text {
  position: relative;
  display: block;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgb(234, 234, 234, 0.7);
  padding: 95px 0px 40px;
  margin-top: -45px;
}

.contact-box__single-text h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-box__single-text h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.contact-box__single-text p {
  margin: 0;
}

.contact-box__single-text p a {
  color: var(--thm-gray);
}

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

/***
=============================================
    Contact Page 
=============================================
***/

.contact-page-form {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.contact-page-form__inner {
  position: relative;
  display: block;
  padding: 80px 120px 80px;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgb(234, 234, 234, 0.7);
  z-index: 5;
}

.contact-page-form__form {
  position: relative;
  display: block;
}

.contact-page-form__input-box input[type="text"],
.contact-page-form__input-box input[type="email"] {
  color: var(--thm-gray);
  font-size: 17px;
  font-weight: 400;
  width: 100%;
  height: 65px;
  background: #f1f5f9;
  border: 2px solid transparent;
  padding: 0 40px;
  margin-bottom: 30px;
  border-radius: var(--thm-bdr-radius);
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page-form__input-box textarea {
  color: var(--thm-gray);
  font-size: 17px;
  font-weight: 400;
  width: 100%;
  height: 200px;
  border: 2px solid transparent;
  background: #f1f5f9;
  padding: 30px 40px 30px;
  border-radius: var(--thm-bdr-radius);
  margin-bottom: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page-form__input-box input[type="text"]:focus {
  color: #2e2e36;
  border-color: var(--thm-base);
  background: #ffffff;
}

.contact-page-form__input-box input[type="email"]:focus {
  color: #2e2e36;
  border-color: var(--thm-base);
  background: #ffffff;
}

.contact-page-form__input-box textarea:focus {
  color: #2e2e36;
  border-color: var(--thm-base);
  background-color: #ffffff;
}

.contact-page-form__input-box input[type="text"]::-webkit-input-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box input[type="text"]:-moz-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box input[type="text"]::-moz-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box input[type="text"]:-ms-input-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box input[type="email"]::-webkit-input-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box input[type="email"]:-moz-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box input[type="email"]::-moz-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box input[type="email"]:-ms-input-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box textarea::-webkit-input-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box textarea:-moz-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box textarea::-moz-placeholder {
  color: #2e2e36;
}

.contact-page-form__input-box textarea:-ms-input-placeholder {
  color: #2e2e36;
}

.contact-page-form__btn {
  position: relative;
  display: block;
}

.contact-page-form__btn button {
  position: relative;
  display: block;
  outline: none;
  border: none;
  padding: 0;
  margin: 0 auto;
}

/***
=============================================
    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: 560px;
  width: 100%;
}

.location-section {
  background: var(--ns-secondary);
  padding: 3rem 0;
}

/* Container */
.location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.location-header h2 {
  color: var(--ns-text);
  font-size: 2rem;
  line-height: 1.2;
  margin: 1.25rem 0 1rem 0;
}

.location-header p {
  color: rgba(51, 51, 51, 0.8);
  max-width: 56ch;
  margin: 0;
}

/* Grid */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Card */
.location-card,
.map-card {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card h3 {
  color: var(--ns-text);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

/* Bullets */
.bullet-list {
  margin: 0.5rem 0 1rem 0;
  padding-left: 1.25rem;
  color: rgba(51, 51, 51, 0.85);
}
.bullet-list li {
  margin: 0.35rem 0;
}

/* Details */
.details-grid {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.85);
}
.label {
  color: var(--ns-text);
  font-weight: 600;
}

/* Links */
.link {
  color: var(--ns-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link:hover {
  opacity: 0.85;
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.08s ease,
    opacity 0.15s ease,
    background 0.15s ease;
  border: 1px solid transparent;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--ns-primary);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.92;
}

.btn-outline {
  color: var(--ns-primary);
  background: transparent;
  border-color: var(--ns-primary);
}
.btn-outline:hover {
  background: rgba(0, 191, 166, 0.08);
}

/* Badges */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid transparent;
}

.badge-green {
  color: var(--ns-accent);
  background: rgba(123, 192, 67, 0.14);
  border-color: rgba(123, 192, 67, 0.22);
}

.badge-teal {
  color: var(--ns-primary);
  background: rgba(0, 191, 166, 0.14);
  border-color: rgba(0, 191, 166, 0.22);
}

.badge-charcoal {
  color: var(--ns-text);
  background: rgba(51, 51, 51, 0.1);
  border-color: rgba(51, 51, 51, 0.18);
}

/* Map */
.map-aspect {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e9ecef;
  /* Prefer aspect-ratio when available */
  aspect-ratio: 16 / 11;
}

/* Fallback for older browsers: fixed heights */
@supports not (aspect-ratio: 1) {
  .map-aspect {
    height: 420px;
  }
  @media (min-width: 768px) {
    .map-aspect {
      height: 560px;
    }
  }
}

.map-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: harmonize with any existing contact map classes you had */
.contact-page-google-map {
  position: relative;
  display: block;
  z-index: 1;
}
.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 560px;
  width: 100%;
}

/***
=============================================
    Testimonial Two Testimonial
=============================================
***/
.testimonial-two--testimonial {
  position: relative;
  display: block;
}

.testimonial-two--testimonial.testimonial-two .shape1 {
  top: -5px;
}

/*** 
=============================================
    Cta One
=============================================
***/
.cta-one {
  position: relative;
  display: block;
  padding: 103px 0px 100px;
  z-index: 1;
}

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

.cta-one .image-layer::before {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgb(21, 40, 59);
  background:
    linear-gradient(#1c3c50bf, #57575700 34%, #9c9c9c00 61%, #1c3c50bf),
    linear-gradient(#1c3c50bf, #1c3c50bf),
    url(https://cdn.prod.website-files.com/65b440fbe33ca027590ec73d/65b440fbe33ca027590ec7b6_francesca-tosolini-KJFKCed0YKo-unsplash-1024x683.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  z-index: -2;
}

.cta-one__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 100;
}

.cta-one__inner .title {
  position: relative;
  display: block;
  z-index: 1;
}

.cta-one__inner .title h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}

.cta-one__inner .title .number {
  position: relative;
  display: block;
  margin-top: 8px;
}

.cta-one__inner .title .number p {
  color: #ffffff;
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
}

.cta-one__inner .title .number p a {
  color: #ffffff;
}

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

.cta-one__inner .button-box .thm-btn span {
  color: var(--thm-base);
}

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

.cta-one__inner .button-box .thm-btn .liquid::before {
  background: rgba(var(--thm-base-rgb), 0.4);
}

.cta-one__inner .button-box .thm-btn .liquid::after {
  background: rgba(var(--thm-base-rgb), 0.1);
}

.cta-one__inner .button-box a {
  color: var(--thm-base);
  background-color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
}

.cta-one__inner .button-box a:hover {
  color: #ffffff;
}

/*** 
=============================================
    Gallery Page
=============================================
***/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

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

.gallery-page__menu-box {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.project-filter {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.project-filter li {
  position: relative;
  display: inline-block;
  float: none;
  margin: 0 8px;
}

.project-filter li .filter-text {
  position: relative;
  display: block;
  padding: 10px 20px 10px;
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  background: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
  font-family: var(--thm-font-2);
  z-index: 1;
}

.project-filter li .filter-text:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  content: "";
  background: var(--thm-base);
  border-radius: 0px;
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.project-filter li:hover .filter-text:before,
.project-filter li.active .filter-text:before {
  transform: scaleX(1);
}

.project-filter li:hover .filter-text,
.project-filter li.active .filter-text {
  color: #ffffff;
}

.project-filter li .count {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-align: center;
  top: -40px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  padding-bottom: 10px;
  margin: 0 auto;
  transform: perspective(400px) translateY(40px) scaleY(1);
  transform-origin: bottom;
  transition-delay: 0.01s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.6s;
  transition-property: all;
  opacity: 0;
  z-index: -1;
}

.project-filter li:hover .count,
.project-filter li.active .count {
  opacity: 1;
  transform: perspective(400px) translateY(20px) scaleY(1);
  transition-delay: 0.2s;
}

.project-filter li .count::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  transform: rotate(45deg);
  content: "";
  z-index: -1;
}

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

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

.gallery-page__single-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(var(--thm-base-rgb), 0.8);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.gallery-page__single:hover .gallery-page__single-img:before {
  opacity: 0.8;
  transform: scaleY(1);
}

.gallery-page__single-img:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(var(--thm-base-rgb), 0.8);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.gallery-page__single:hover .gallery-page__single-img:after {
  opacity: 0.8;
  transform: scaleY(1);
}

.gallery-page__single-img img {
  width: 100%;
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.gallery-page__single:hover .gallery-page__single-img img {
  transform: scale(1.2) rotate(1deg);
}

.gallery-page__single-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: scale(0);
  transition: all 500ms ease 800ms;
  z-index: 10;
}

.gallery-page__single:hover .gallery-page__single-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-page__single-icon a {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  background: var(--thm-black);
  color: #ffffff;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
}

.gallery-page__single-icon a:hover {
  background: var(--thm-base);
}

.gallery-page__single-icon a span::before {
  position: relative;
  display: inline-block;
  line-height: 70px;
}

/*** 
=============================================
    Cta One Gallery
=============================================
***/
.cta-one--gallery {
  position: relative;
  display: block;
  z-index: 1;
}

.cta-one--gallery::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.25);
  width: 100%;
  height: 1px;
  content: "";
  z-index: 1;
}

/***
=============================================
    Projects Details
=============================================
***/
.gallery-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background: #ffffff;
}

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

.gallery-details__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--thm-bdr-radius);
}

.gallery-details__information {
  position: relative;
  display: block;
  background: #f1f5f9;
  padding: 53px 20px 52px;
  border-radius: var(--thm-bdr-radius);
  margin-top: -30px;
  margin-left: 30px;
  margin-right: 30px;
}

.gallery-details__information ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.gallery-details__information ul li {
  position: relative;
  display: block;
  text-align: center;
  width: 20%;
}

.gallery-details__information ul li h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.gallery-details__information ul li p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.gallery-details__information ul li p a {
  color: var(--thm-color-1);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-details__information ul li p a:hover {
  color: var(--thm-base);
}

.gallery-details__text-box1 {
  position: relative;
  display: block;
  margin-top: 45px;
}

.gallery-details__text-box1 h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.gallery-details__text-box1 .text1 {
  margin-bottom: 33px;
  margin-top: 37px;
}

.gallery-details__text-box2 {
  position: relative;
  display: block;
  margin-top: 42px;
}

.gallery-details__text-box2 h2 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 39px;
}

.gallery-details__text-box2 .text1 {
  position: relative;
}

.gallery-details__text-box2-list {
  position: relative;
  display: block;
  margin-top: 37px;
}

.gallery-details__text-box2-list ul {
  position: relative;
  display: block;
}

.gallery-details__text-box2-list ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.gallery-details__text-box2-list ul li:last-child {
  margin-bottom: 0;
}

.gallery-details__text-box2-list ul li .icon {
  position: relative;
  display: block;
}

.gallery-details__text-box2-list ul li .icon i::before {
  position: relative;
  display: inline-block;
  top: 3px;
  color: var(--thm-base);
  font-size: 23px;
}

.gallery-details__text-box2-list ul li .text {
  position: relative;
  display: block;
  padding-left: 20px;
}

.gallery-details__text-box2-list ul li .text p {
  color: var(--thm-primary);
  font-size: 18px;
  font-weight: 500;
}

.gallery-details__text-box2 .text2 {
  margin-top: 33px;
}

.gallery-details__pagination {
  position: relative;
  display: block;
  border-top: 1px solid #eceae0;
  border-bottom: 1px solid #eceae0;
  padding-top: 29px;
  padding-bottom: 29px;
  margin-top: 109px;
}

.gallery-details__pagination ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-details__pagination ul li {
  position: relative;
  display: block;
}

.gallery-details__pagination ul li .previous {
  position: relative;
  display: block;
}

.gallery-details__pagination ul li .previous p {
  color: var(--thm-primary);
  font-weight: 700;
}

.gallery-details__pagination ul li .previous p a {
  position: relative;
  color: #ffffff;
  background: var(--thm-base);
  padding: 10px 20px 10px;
  border-radius: var(--thm-bdr-radius);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-details__pagination ul li .previous p a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 15px;
  line-height: 34px;
  padding-right: 7px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-details__pagination ul li .next {
  position: relative;
  display: block;
}

.gallery-details__pagination ul li .next p {
  color: var(--thm-primary);
  font-weight: 700;
}

.gallery-details__pagination ul li .next p a {
  position: relative;
  color: #ffffff;
  background: var(--thm-base);
  padding: 10px 20px 10px;
  border-radius: var(--thm-bdr-radius);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.gallery-details__pagination ul li .next p a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 15px;
  line-height: 34px;
  padding-left: 7px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: var(--thm-base);
  font-size: 20px;
  line-height: 50px;
  font-weight: 400;
  text-align: center;
  font-family: var(--thm-font);
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.07);
  transition: all 500ms ease;
  z-index: 1;
}

.styled-pagination li a span::before {
  position: relative;
  top: -2px;
  color: var(--thm-base);
  font-size: 15px;
  transition: all 500ms ease;
}

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

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
  color: #ffffff;
  line-height: 50px;
}

/***
=============================================
    Blog Standard
=============================================
***/
.blog-standard {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.blog-standard__left {
  position: relative;
  display: block;
}

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

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

.blog-standard__single-img::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.7;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4234068627450981) 40%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  content: "";
  z-index: 1;
}

.blog-standard__single-img img {
  width: 100%;
  filter: grayscale(0.4) opacity(1);
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-standard__single:hover .blog-standard__single-img img {
  transform: scale(1.1) rotate(1deg);
}

.blog-standard__date {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: #ffffff;
  text-align: center;
  padding: 15px 20px;
  z-index: 1;
}

.blog-standard__date::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -15px;
  z-index: -1;
  border-bottom: 20px solid rgba(255, 255, 255, 0.8);
  border-right: 15px solid transparent;
}

.blog-standard__date p {
  font-size: 15px;
  color: var(--thm-base);
  margin: 0;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-standard__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 25px 0px 31px;
}

.blog-standard__single-content .meta-info {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 6px;
}

.blog-standard__single-content .meta-info li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 24px;
  margin-right: 20px;
}

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

.blog-standard__single-content .meta-info li span:before {
  position: relative;
  display: inline-block;
  padding-right: 6px;
  font-size: 14px;
  top: 1px;
  left: 1px;
}

.blog-standard__single-content .meta-info li a {
  color: #84827c;
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-standard__single-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-standard__single-content h2 a {
  color: var(--thm-black);
}

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

.blog-standard__single-content p {
  margin: 0;
}

.blog-standard__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-standard__single-content .btn-box a {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  background: var(--thm-base);
  padding: 10px 20px 10px;
  border-radius: var(--thm-bdr-radius);
  font-family: var(--thm-font);
}

.blog-standard__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  top: 2px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-standard__video-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 5;
}

.blog-standard__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 97px;
  height: 97px;
  line-height: 97px;
  text-align: center;
  font-size: 23px;
  color: var(--thm-base);
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.blog-standard__video-icon:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}

.blog-standard__video-icon:before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  content: "";
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0.1;
  z-index: 1;
}

.blog-standard__video-link .ripple,
.blog-standard__video-icon .ripple:before,
.blog-standard__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125px;
  height: 125px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

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

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

.blog-standard__left .styled-pagination {
  position: relative;
  display: block;
  margin-top: 2px;
}

.blog-standard__left .styled-pagination li a {
  color: #ffffff;
  background: var(--thm-base);
}

.blog-standard__left .styled-pagination li a:hover {
  background: var(--thm-black);
}

.blog-standard__left .styled-pagination li a span::before {
  color: #ffffff;
}

/***
=============================================
    Blog One Blog Grid
=============================================
***/
.blog-one--blog--grid {
  position: relative;
  display: block;
}

.blog-one--blog--grid .blog-one__content {
  position: relative;
  display: block;
  margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 25px 30px 23px;
  z-index: 5;
}

.blog-one--blog--grid .blog-one__content h2 {
  font-size: 20px;
  line-height: 30px;
}

.blog-one--blog--grid .blog-one__content .btn-box a {
  background: var(--thm-base);
  color: #ffffff;
}

.blog-one--blog--grid .blog-one__content .btn-box a span::before {
  color: #ffffff;
}

.blog-one--blog--grid .blog-one__content-bg {
  position: absolute;
  top: -10px;
  left: 10px;
  right: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 0.8;
}

.blog-one--blog--grid .blog-one__single-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-one--blog--grid .blog-one__single:hover .blog-one__single-img img {
  transform: scale(1.1) rotate(1deg);
  filter: grayscale(1) opacity(1);
}

.blog-one--blog--grid .blog-one__single-img::before {
  background: rgba(var(--thm-base-rgb), 0.25);
}

/*** 
=============================================
    Blog List Page
=============================================
***/
.blog-list-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.blog-list__left {
  position: relative;
  display: block;
}

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

.blog-list__single .row {
  margin-left: 0px;
  margin-right: 0px;
}

.blog-list__single .row [class*="col-"] {
  padding-left: 0px;
  padding-right: 0px;
}

.blog-list__single-img {
  position: relative;
  display: block;
  background: var(--thm-black);
  overflow: hidden;
}

.blog-list__single-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.blog-list__single:hover .blog-list__single-img img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.blog-list__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0, 0.07);
  padding: 36px 30px 33px;
}

.blog-list__single-content .meta-info {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 6px;
}

.blog-list__single-content .meta-info li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 24px;
  margin-right: 20px;
}

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

.blog-list__single-content .meta-info li span:before {
  position: relative;
  display: inline-block;
  padding-right: 6px;
  font-size: 14px;
  top: 1px;
  left: 1px;
}

.blog-list__single-content .meta-info li a {
  color: #84827c;
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 9px;
}

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

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

.blog-list__single-content p {
  margin: 0;
}

.blog-list__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 18px;
}

.blog-list__single-content .btn-box a {
  color: var(--thm-gray);
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.015em;
  font-family: var(--thm-font);
}

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

.blog-list__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  top: 2px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.blog-list__left .styled-pagination {
  position: relative;
  display: block;
  margin-top: 10px;
}

.blog-list__left .styled-pagination li a {
  color: #ffffff;
  background: var(--thm-base);
}

.blog-list__left .styled-pagination li a:hover {
  background: var(--thm-black);
}

.blog-list__left .styled-pagination li a span::before {
  color: #ffffff;
}

/*** 
=============================================
    Client Page
=============================================
***/
.client-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.client-page__single {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  margin: 0 auto 30px;
  -webkit-box-shadow: 0px 3px 6px 2px #ececec;
  box-shadow: 0px 3px 6px 2px #ececec;
  transition: all 700ms ease 100ms;
  z-index: 1;
}

.client-page__single:hover {
  box-shadow: none;
}

.client-page__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  transform: scaleX(0);
  transition: all 700ms ease 100ms;
  z-index: -1;
  content: "";
}

.client-page__single:hover:before {
  transform: scaleY(1);
}

.client-page__single::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--thm-base);
  transform: scaleX(0);
  transition: all 700ms ease 100ms;
  z-index: -1;
  content: "";
}

.client-page__single:hover::after {
  transform: scaleY(1);
}

.client-page__single a {
  position: relative;
  display: inline-block;
  padding: 35px 0px 35px;
}

.client-page__single a img {
  opacity: 0.5;
  transition: all 0.2s ease-in-out 0.1s;
}

.client-page__single:hover a img {
  opacity: 1;
  transition: all 0.3s ease-in-out 0.1s;
}
/* Keep caption at the top on all browsers */
.checklist-table caption,
.checklist-caption {
  caption-side: top;
  display: table-caption;
  text-align: left;
  font-weight: 600;
  padding: .75rem 1rem;
  background: #f7f7f7;
  border-bottom: 1px solid #e6e6e6;
}

/* Checklist section layout */
.checklist-section {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.checklist-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.checklist-section h1 {
  margin: 0 0 .25rem;
  text-align: center;
}

.checklist-section h2 {
  margin: 0 0 1rem;
  color: #444;
  font-weight: 500;
  text-align: center;
}

/* Improve desktop layout a bit */
.checklist-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  table-layout: fixed;
}

/* Add lines between cells */
.checklist-table th,
.checklist-table td {
  padding: .75rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}
.checklist-table th:last-child,
.checklist-table td:last-child {
  border-right: none;
}
.checklist-table th {
  vertical-align: middle;
}
.checklist-table th:not(:first-child) {
  text-align: center;
}


/* Center text inside value cells */
.checklist-table td {
  text-align: center;
  vertical-align: middle;
}

.checklist-table thead th {
  background: #fafafa;
  font-weight: 600;
  font-size: 1.5rem;
}

.checklist-table tbody tr:last-child th,
.checklist-table tbody tr:last-child td {
  border-bottom: none;
}

.col-label { width: 50%; }      /* was 55%, give flags more room */
.col-flag  { width: 16.66%; }  /* evenly split three flags */

/* Optional: zebra rows */
.checklist-table tbody tr:nth-child(even) td,
.checklist-table tbody tr:nth-child(even) th[scope="row"] {
  background: #fcfcfc;
}

/* Icon sizing */
.checklist-table td span {
  font-size: 1rem;
  line-height: 1;
}

/* Box-sizing for all elements */
*, ::after, ::before {
  box-sizing: border-box;
}

.checklist-mobile-table-header h3 {
  display: none;
}

@media (max-width: 768px) {
  .checklist-table,
  .checklist-table thead,
  .checklist-table tbody,
  .checklist-table th,
  .checklist-table td,
  .checklist-table tr {
    display: block;
    width: 100%;
  }

  /* Hide table header row */
  .checklist-table thead {
    display: none;
  }

  /* Ensure caption spans full width above each stacked "card" */
  .checklist-table caption {
    padding: .75rem 1rem;
    background: #f7f7f7;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: .75rem;
  }

  /* Each row becomes a card */
  .checklist-table tbody tr {
    border: 1px solid #e6e6e6;
    background: #fff;
    overflow: hidden;
    padding: 0.75rem 1rem;
  }

  /* Label (row header) at top of card */
  .checklist-table tbody th[scope="row"] {
    display: block;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: .6rem;
    border: none;
    background: none;
    padding: 0;
  }

  /* Values displayed in stacked format with pseudo-labels for clarity */
  .checklist-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: .45rem 0;
    gap: .5rem;
    text-align: center;
  }

  /* Add the column name as a label above icons using :before */
  .checklist-table tbody td::before {
    content: attr(data-label);
    font-weight: 500;
    color: #555;
    margin-right: 0.5rem;
    text-align: left;
  }

  /* Keep the check/❌ from collapsing too small */
  .checklist-table tbody td span {
    min-width: 1.25rem;
    text-align: center;
  }

  /* Remove zebra striping on mobile cards */
  .checklist-table tbody tr:nth-child(even) td,
  .checklist-table tbody tr:nth-child(even) th[scope="row"] {
    background: none;
  }
  .checklist-mobile-table-header h3 {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem 2rem;
    background: var(--thm-base);
    color: #fff;
    border-radius: 0.5rem 0.5rem 0 0;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(123,192,67,0.08);
    width: 100%;
  }
}