/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
# Boxed
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --uterpy-font: 'Kumbh Sans', sans-serif;
  --uterpy-font-two: 'Playfair Display', serif;
  --uterpy-reey-font: "reeyregular";
  --uterpy-gray: #b5b5b5;
  --uterpy-gray-rgb: 181, 181, 181;
  --uterpy-base: #211271;
  --uterpy-base-rgb: 244, 81, 68;
  --uterpy-black: #0e0c0c;
  --uterpy-black-rgb: 14, 12, 12;
}

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

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

body {
  font-family: var(--uterpy-font);
  color: rgba(var(--uterpy-black-rgb), 0.8);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--uterpy-black);
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

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

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

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

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

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

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

p {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.section-separator {
  border-color: var(--uterpy-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;
}

/* owl dots basic style */

.owl-dots-one.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}

.owl-dots-one.owl-theme .owl-dots .owl-dot {
  margin: 0px -1px;
}

.owl-dots-one.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 6px;
  height: 6px;
  margin: 5px 7px;
  background: #d6cbc5;
  border-radius: 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-dots-one.owl-theme .owl-dots .owl-dot.active span {
  background: var(--uterpy-base);
}

.owl-dots-one.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  top: -6px;
  left: -6px;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #dbd8d8;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.owl-dots-one.owl-theme .owl-dots .owl-dot.active span::before {
  transform: scaleX(1.0);
}


.owl-with-shadow .owl-stage-outer {
  overflow: visible;
}

.owl-with-shadow .owl-item {
  visibility: hidden;
  opacity: 0;
  transition: visibility 500ms ease, opacity 500ms ease;
}

.owl-with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/***
=====================================================
Custom Cursor
=====================================================
***/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--uterpy-base, #d0807a);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--uterpy-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--uterpy-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/***
=====================================================
    Thm Btn
=====================================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--uterpy-base);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 65px;
  font-family: var(--uterpy-font);
  transition: all 0.3s linear;
  z-index: 1;
  padding: 0px 50px 0px;
  overflow: hidden;
}

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

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

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

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

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

.sec-title__tagline h6 {
  color: var(--uterpy-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--thm-font);
}

.sec-title__title {
  color: var(--uterpy-black);
  font-size: 65px;
  line-height: 1.1em;
  font-weight: 700;
  text-transform: none;
}

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

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

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

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

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

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

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

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

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/favicons/logogms.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

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

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

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.75;
  cursor: pointer;
}

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

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--uterpy-base);
  border: 0;
}

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

.search-popup__content .thm-btn:before,
.search-popup__content .thm-btn:after {
  display: none;
}

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

.rating-box ul {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
  color: var(--uterpy-black);
  font-weight: 600;
  font-size: 14px;
  width: 60px;
  height: 50px;
  border: 1px solid #e1e1e1;
  text-transform: uppercase;
  border-radius: 0%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  top: -1px;
}

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

.styled-pagination li.prev {
  margin-right: 17px;
}

.styled-pagination li.next {
  margin-left: 11px;
}


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

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

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

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


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

.stricky-header .main-menu__wrapper-inner {
  padding-left: 0;
  box-shadow: none;
}

.stricky-header.main-menu {
  margin-top: 0px;
}

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

@media (min-width: 1200px) {

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

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  position: relative;
}

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

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  position: relative;
  color: var(--uterpy-black);
  font-size: 18px;
  font-weight: 500;
  padding-top: 2px;
  padding-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--uterpy-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

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

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

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

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--uterpy-black);
  border-bottom: 1px solid rgba(var(--uterpy-black-rgb), 0.1);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

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


.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
  border-bottom: none;
}

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

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


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

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

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  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(--woodza-base);
  cursor: pointer;
}

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

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

.main-menu .mobile-nav__toggler {
  font-size: 25px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

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

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

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

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

.mobile-nav__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(--uterpy-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

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

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  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>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

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

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

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--uterpy-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

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

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

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

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

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

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

.mobile-nav__top .main-menu__login a {
  color: var(--woodza-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--woodza-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

.mobile-nav__social a:hover {
  color: var(--woodza-primary);
}

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

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

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

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

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

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--uterpy-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  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;
}


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

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

.main-header-one__top .container {
  position: static;
  max-width: 1810px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

.main-header-one__top-left {
  position: relative;
  display: block;
  padding-left: 20px;
  padding-right: 45px;
  z-index: 1;
}

.main-header-one__top-left::before {
  position: absolute;
  top: -17px;
  left: 0;
  bottom: -17px;
  right: 0;
  background: var(--uterpy-base);
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0 100%);
  content: "";
  z-index: -1;
}

.main-header__contact-list {
  position: relative;
  display: block;
}

.main-header__contact-list ul {
  position: relative;
  display: block;
}

.main-header__contact-list ul li {
  position: relative;
  display: inline-block;
  margin-left: 24px;
}

.main-header__contact-list ul li:first-child {
  margin-left: 0;
}

.main-header__contact-list ul li p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.main-header__contact-list ul li p span:before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding-right: 5px;
  top: 1px;
}

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

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

.main-header-one__top-right-text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

.main-header-one__top-right-text p span:before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 20px;
  padding-right: 6px;
  top: 3px;
}

.main-header-one__top-right-text p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__top-right-text p a:hover {
  color: var(--uterpy-base);
}

.main-header-one__social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
}

.main-header-one__social-links .title-box {
  position: relative;
  display: block;
}

.main-header-one__social-links .title-box h4 {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--uterpy-font);
}

.main-header-one__social-links ul {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  margin-left: 20px;
}

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

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

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

.main-header-one__social-links ul li a:hover {
  color: var(--uterpy-base);
}

.main-header__top-right-btn {
  position: relative;
  display: block;
}

.main-header__top-right-btn .thm-btn {
  text-transform: uppercase;
  font-size: 14px;
}

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

.main-header-one__bottom .container {
  position: static;
  max-width: 1810px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

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

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

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

.main-header-one__bottom-left .logo-one::before {
  position: absolute;
  top: -23px;
  left: -99999px;
  bottom: 0px;
  right: 0;
  content: "";
  border-bottom: 103px solid #ffffff;
  border-right: 42px solid transparent;
  z-index: -1;
}

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

.main-header-one__bottom-left .logo-one a img {
  max-width: 203px;
}

.main-header-one__bottom-left .main-menu__main-menu-box {
  position: relative;
  display: block;
  margin-left: 140px;
}


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

.main-header__bottom-contact-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.main-header__bottom-contact-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid #e6e1e1;
  border-radius: 50%;
  text-align: center;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

.main-header__bottom-contact-box:hover .icon-box {
  background: var(--uterpy-base);
  border-color: var(--uterpy-base);
}

.main-header__bottom-contact-box .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 25px;
  line-height: 60px;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

.main-header__bottom-contact-box:hover .icon-box span::before {
  color: #ffffff;
}

.main-header__bottom-contact-box .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.main-header__bottom-contact-box .text-box p {
  color: #1e1817;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
}

.main-header__bottom-contact-box .text-box h5 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  font-family: var(--uterpy-font);
}

.main-header__bottom-contact-box .text-box h5 a {
  color: var(--uterpy-black);
}

.main-header__bottom-contact-box .text-box h5 a:hover {
  color: var(--uterpy-base);
}

.main-header__search {
  position: relative;
  display: block;
  padding-left: 30px;
}

.main-header__search::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #dadada;
  content: "";
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #eae6e6;
  font-size: 20px;
  font-weight: 700;
  color: var(--uterpy-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: #ffffff;
  background: var(--uterpy-base);
}


.stricky-header__one .main-header-one__bottom-left .logo-one::before {
  display: none;
}

.stricky-header__one .main-header-one__bottom-right {
  display: none;
}

.stricky-header__one .main-header-one__bottom-left .logo-one {
  padding-right: 0px;
}

.stricky-header__one .main-header-one__bottom-left {
  justify-content: space-between;
  width: 100%;
}


/***
=====================================================
Main Header Two
=====================================================
***/
.main-header-one.style2 {
  position: relative;
  display: block;
}

.main-header-one.style2 .main-header-one__top {
  background: var(--uterpy-black);
  z-index: 1;
}

.main-header-one.style2 .main-header-one__top::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 65%;
  background: #262222;
  content: "";
  z-index: -1;
}

.main-header-one.style2 .main-header-one__top-inner {
  background: var(--uterpy-black);
}

.main-header-one.style2 .main-header__contact-list ul li p span:before {
  color: var(--uterpy-base);
}

.main-header-one.style2 .main-header-one__top-inner {
  background: var(--uterpy-black);
  padding: 15px 0px 17px;
}

.main-header-one.style2 .main-header-one__social-links {
  margin-right: 0px;
}

.main-header-one.style2 .main-header-one__top-left::before {
  background: #262222;
  bottom: -18px;
}

.main-header-one.style2 .main-header-one__bottom-left .logo-one::before {
  display: none;
}

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

.main-header-one.style2 .main-header-one__bottom-left .logo-one {
  padding-right: 0px;
}

.main-header-one.style2 .main-header__bottom-contact-box {
  margin-right: 35px;
}

.main-header-one.style2 .main-header__search::before {
  display: none;
}

.main-header-one.style2 .main-header__search {
  padding-left: 25px;
}


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

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

.main-header-one__bottom-right-btn .thm-btn::before {
  background-color: var(--uterpy-base);
}

.main-header-one.style2 .main-menu__search {
  background: var(--uterpy-base);
  color: #ffffff;
}

.main-header-one.style2 .main-menu__search:hover {
  background: var(--uterpy-black);
}

.stricky-header__two .main-header-one__bottom-right {
  display: none;
}

.stricky-header__two .main-header-one__bottom-left {
  width: 100%;
  justify-content: space-between;
}


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

.main-header-one.style3 .main-header-one__top::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 65%;
  background: var(--uterpy-base);
  content: "";
  z-index: -1;
}

.main-header-one.style3 .main-header-one__top-inner {
  background: #ffffff;
  border-bottom: 1px solid #e9e5e5;
}

.main-header-one.style3 .main-header-one__top-right-text p {
  color: rgba(var(--uterpy-black-rgb), 0.8);
}

.main-header-one.style3 .main-header-one__top-right-text p a {
  color: rgba(var(--uterpy-black-rgb), 0.8);
}

.main-header-one.style3 .main-header-one__top-right-text p a:hover {
  color: var(--uterpy-base);
}

.main-header-one.style3 .main-header-one__social-links .title-box h4 {
  color: rgba(var(--uterpy-black-rgb), 0.8);
}

.main-header-one.style3 .main-header-one__social-links ul li a {
  color: var(--uterpy-black);
}

.main-header-one.style3 .main-header-one__social-links ul li a:hover {
  color: var(--uterpy-base);
}

.main-header-one.style3 .main-header-one__top-left::before {
  background: #ffffff;
}

.main-header-one.style3 .main-header__contact-list ul li p {
  color: rgba(var(--uterpy-black-rgb), 0.8);
}

.main-header-one.style3 .main-header__contact-list ul li p span:before {
  color: var(--uterpy-base);
}

.main-header-one.style3 .main-header-one__bottom-left .logo-one::before {
  border-bottom: 103px solid var(--uterpy-base);
}

.main-header-one.style3 .main-header-one__bottom {
  background: #ffffff;
}

.stricky-header__three .main-header-one__bottom-left .logo-one::before {
  display: none;
}

.stricky-header__three .main-header-one__bottom-right {
  display: none;
}

.stricky-header.stricky-header__three {
  background-color: #21146f;
}

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

.stricky-header.stricky-header__three .main-menu__list>li.current>a,
.stricky-header.stricky-header__three .main-menu__list>li:hover>a {
  color: #1f0c8f;
    background: #d09c21;
    padding: 0px 14px;
    border-radius: 19px 1px;
}

.stricky-header__three .main-header-one__bottom-left {
  width: 100%;
  justify-content: space-between;
}


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

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

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

.main-slider-one__single .shape1 {
  position: absolute;
  top: -173px;
  right: 0;
  mix-blend-mode: overlay;
  z-index: 1;
  opacity: 0;
  transform: translateY(-10%);
  -webkit-transition: all 1400ms ease;
  -moz-transition: all 1400ms ease;
  -ms-transition: all 1400ms ease;
  -o-transition: all 1400ms ease;
  transition: all 1400ms ease;
}

.main-slider .active .main-slider-one__single .shape1 {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-one__single .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.2;
  z-index: 1;
  opacity: 0;
  transform: translateY(10%);
  -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 .active .main-slider-one__single .shape2 {
  opacity: 0.2;
  transform: translateY(0);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-one__single .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: 1;
}

.slider-one__border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 18.0%;
  border-right: 1px solid rgb(73, 73, 73, 0.7);
  z-index: 2;
}

.slider-one__border.two {
  left: 16%;
}

.slider-one__border.three {
  left: 32%;
}

.slider-one__border.four {
  left: 48.05%;
}

.slider-one__border.five {
  left: 64%;
}

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

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

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

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

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

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

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

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

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

.main-slider-one__content-btn {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 67px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1200ms ease;
  -moz-transition: all 1200ms ease;
  -ms-transition: all 1200ms ease;
  -o-transition: all 1200ms ease;
  transition: all 1200ms ease;
  z-index: 10;
}

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

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

.main-slider-one__content-btn .btn-two {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-slider-one__content-btn .btn-two a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  border: 1px solid #ffffff;
  padding: 0px 50px 0px;
  line-height: 63px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__content-btn .btn-two a:hover {
  color: var(--uterpy-base);
  border-color: var(--uterpy-base);
}


.main-slider-one .owl-theme .owl-nav {
  position: absolute;
  top: 40%;
  left: 42%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1500px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
  z-index: 100;
}

.main-slider-one .owl-carousel .owl-nav button.owl-next,
.main-slider-one .owl-carousel .owl-nav button.owl-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 75px;
  border: 1px solid rgb(77, 72, 73);
  background: transparent;
  border-radius: 50%;
  color: #ffffff;
  font-size: 25px;
  line-height: 75px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider-one .owl-carousel .owl-nav button.owl-prev {
  float: left;
  left: 0;
  margin-bottom: 15px;
}

.main-slider-one .owl-carousel .owl-nav button.owl-next {
  float: right;
  right: 0;
}

.main-slider-one .owl-carousel .owl-nav button.owl-next:hover,
.main-slider-one .owl-carousel .owl-nav button.owl-prev:hover {
  color: #ffffff;
  background: var(--uterpy-base);
  border-color: var(--uterpy-base);
}

.main-slider-one .owl-carousel .owl-nav button.owl-prev span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 75px;
  font-weight: 400;
}

.main-slider-one .owl-carousel .owl-nav button.owl-next span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 75px;
  font-weight: 400;
}


.dot-style1.owl-theme .owl-dots {
  position: absolute;
  top: 46%;
  left: 43px;
  width: 26px;
  z-index: 10;
}

.dot-style1.owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  margin: 8px 5px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
}

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

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

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

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

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

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

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

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

.main-slider-two .shape1 {
  position: absolute;
  left: -400px;
  bottom: -440px;
  width: 800px;
  height: 800px;
  background: #fc483a;
  mix-blend-mode: overlay;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transition: all 1400ms ease;
  -moz-transition: all 1400ms ease;
  -ms-transition: all 1400ms ease;
  -o-transition: all 1400ms ease;
  transition: all 1400ms ease;
}

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


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

.main-slider-two .active .shape2 {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.main-slider-two .shape3 {
  position: absolute;
  top: -150px;
  right: 0;
  mix-blend-mode: overlay;
  opacity: 0;
  transform: translateX(10%);
  -webkit-transition: all 1400ms ease;
  -moz-transition: all 1400ms ease;
  -ms-transition: all 1400ms ease;
  -o-transition: all 1400ms ease;
  transition: all 1400ms ease;
  z-index: 2;
}

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

.main-slider-two .shape4 {
  position: absolute;
  top: -185px;
  right: 0;
  mix-blend-mode: overlay;
  opacity: 0;
  transform: translateX(10%);
  -webkit-transition: all 1600ms ease;
  -moz-transition: all 1600ms ease;
  -ms-transition: all 1600ms ease;
  -o-transition: all 1600ms ease;
  transition: all 1600ms ease;
  z-index: 1;
}

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


.main-slider-two__content {
  position: relative;
  display: block;
  padding: 191px 0px 200px;
  z-index: 3;
}

.main-slider-two__content .tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1200ms ease;
  -moz-transition: all 1200ms ease;
  -ms-transition: all 1200ms ease;
  -o-transition: all 1200ms ease;
  transition: all 1200ms ease;
  z-index: 10;
}

.main-slider-two .active .main-slider-two__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: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__content .tagline .border-box {
  position: relative;
  display: block;
  width: 20px;
  height: 1px;
  background: #ffffff;
  margin-right: 5px;
}

.main-slider-two__content .tagline .border-box::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 7px;
  height: 10px;
  background: #ffffff;
  content: "";
}

.main-slider-two__content .tagline .text-box {
  position: relative;
  display: block;
}

.main-slider-two__content .tagline .text-box p {
  color: #ffffff;
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

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

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

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

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

.main-slider-two__content .main-slider-one__content-btn {
  margin-top: 57px;
}

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

.main-slider-two .active .main-slider-two__video {
  transform: scale(1.0);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  opacity: 1;
}

.main-slider-two__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: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 15px;
  color: var(--uterpy-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;
  z-index: 1;
}

.main-slider-two__video-icon:hover {
  background: var(--uterpy-base);
}

.main-slider-two__video-icon::after {
  position: absolute;
  top: -25px;
  left: -25px;
  bottom: -25px;
  right: -25px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  content: "";
}

.main-slider-two__video-icon:hover {
  color: #ffffff;
}

.main-slider-two__video-icon .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.main-slider-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-two__carousel.nav-style1.owl-theme .owl-nav {
  display: none;
}


.main-slider-two .owl-controls {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
  width: 385px;
  height: 80px;
  background: #ffffff;
  border-top-left-radius: 40px;
  z-index: 10;
}

.main-slider-two .owl-controls .text-box {
  position: relative;
  display: block;
  margin-right: 20px;
}

.main-slider-two .owl-controls .text-box p {
  color: var(--uterpy-black);
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  text-transform: capitalize;
}

.main-slider-two .custom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-slider-two .custom-nav .owl-prev {
  height: 70px;
  width: 95px;
  background: #ebdddc;
  border-radius: 0%;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  border: 0;
  margin: 0;
  padding: 0;
  line-height: 30px;
  margin-right: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider-two .custom-nav .owl-prev span::before {
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
}

.main-slider-two .custom-nav .owl-next {
  height: 70px;
  width: 95px;
  background: #ebdddc;
  border-radius: 0%;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  border: 0;
  margin: 0;
  padding: 0;
  line-height: 30px;
  margin-left: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider-two .custom-nav .owl-next span::before {
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
}

.main-slider-two .custom-nav .owl-prev:hover,
.main-slider-two .custom-nav .owl-next:hover {
  color: #ffffff;
  background-color: var(--uterpy-base);
}


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

.main-slider-one.style3 .image-layer {
  background: #323232;
}

.main-slider-one.style3 .owl-theme .owl-nav {
  position: absolute;
  top: 27%;
}

.main-slider-three__outer-content {
  position: absolute;
  bottom: 0;
  right: 25px;
  background: var(--uterpy-base);
  max-width: 635px;
  padding: 45px 50px 35px;
  width: 100%;
  opacity: 0;
  transform: translateY(10%);
  -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: 7;
}

.main-slider-one.style3 .active .main-slider-three__outer-content {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-three__outer-content::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: 0px;
  width: 25px;
  border-top: 25px solid transparent;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  z-index: 3;
  border-left: 25px solid var(--uterpy-base);
}

.main-slider-three__outer-content .top-content {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.main-slider-three__outer-content .top-content .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #522f2c;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.main-slider-three__outer-content .top-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
}

.main-slider-three__outer-content .top-content .title-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-slider-three__outer-content .top-content .title-box h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 45px;
  font-weight: 700;
}

.main-slider-three__outer-content .bottom-content {
  position: relative;
  display: block;
}

.main-slider-three__outer-content .bottom-content p {
  color: rgba(255, 255, 255, 0.8);
}

.main-slider-three__outer-content .bottom-content .btn-box {
  position: relative;
  display: block;
  margin-top: 19px;
}

.main-slider-three__outer-content .bottom-content .btn-box a {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-three__outer-content .bottom-content .btn-box a:hover {
  color: var(--uterpy-black);
}

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

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

.page-header .shape1 {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: -1;
  mix-blend-mode: overlay;
}

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

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

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

.page-header__inner .thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--uterpy-font);
  padding-right: 26px;
  margin-left: 11px;
}

.page-header__inner .thm-breadcrumb li::before {
  position: absolute;
  top: 9px;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 11px;
  background: var(--uterpy-base);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  content: "";
}

.page-header__inner .thm-breadcrumb li:last-child:before {
  display: none;
}

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

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


/***
=====================================================
Intro One
=====================================================
***/
.intro-one {
  position: relative;
  display: block;
  padding: 80px 0px 74px;
  z-index: 1;
}

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

.intro-one .container {
  position: static;
  max-width: 1950px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

.intro-one ul {
  position: relative;
}

.intro-one ul li {
  position: relative;
}

.intro-one ul li::before {
  position: absolute;
  top: 15px;
  right: 0;
  bottom: -14px;
  width: 1px;
  
  content: "";
}

.intro-one ul li:last-child:before {
  display: none;
}

.intro-one ul li.border-left::before {
  bottom: -74px;
}

.intro-one ul li.border-bottom1::after {
  position: absolute;
  left: 0;
  bottom: -74px;
  right: 50%;
  height: 1px;
  background: #eddcdc !important;
  content: "";
}

.intro-one ul li.border-bottom1.border2::after {
  left: 50%;
  right: 0%;
}

.intro-one__single {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.intro-one__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  margin: 0 auto 20px;
}

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

.intro-one__single-icon.style2 span::before {
  font-size: 60px;
}

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

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

.intro-one__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

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

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

.intro-one__single-content p {
  margin: 0;
}



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

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

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

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

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

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

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

.services-one__single:hover .services-one__single-img .inner img {
  transform: scale(1);
  mix-blend-mode: normal;
}

.services-one__single-img-icon {
  position: absolute;
  left: 30px;
  bottom: -48px;
  z-index: 3;
}

.services-one__single-img-icon-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--uterpy-black);
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__single-img-icon-inner span {
  position: relative;
  display: block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__single-img-icon-inner span {
  transform: scale(0.9);
  color: var(--thm-base);
}

.services-one__single-img-icon-inner span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 45px;
  line-height: 50px;
}

.services-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
  padding: 0px 35px 40px;
  padding-right: 0;
}

.services-one__single-content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  float: right;
  z-index: 5;
  margin-top: -17px;
}

.services-one__single-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 0px 0px 0px;
  padding-left: 20px;
  border: 1px solid #e8e6e6;
}

.services-one__single-content .btn-box a .text-box {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  padding-right: 16px;
}

.services-one__single-content .btn-box a:hover {
  color: var(--uterpy-base);
  border-color: var(--uterpy-base);
}

.services-one__single-content .btn-box a .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 43px;
  z-index: 1;
}

.services-one__single-content .btn-box a .icon-box::before {
  position: absolute;
  top: -11px;
  left: 0px;
  bottom: -1px;
  right: -1px;
  background: var(--uterpy-base);
  content: "";
  z-index: -1;
}

.services-one__single-content .btn-box a .icon-box::after {
  content: "";
  position: absolute;
  left: -20px;
  top: -11px;
  width: 10px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 3;
  border-right: 10px solid #ef6d62;
}

.services-one__single-content .btn-box a .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  top: -5px;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}


.services-one__single-content-inner {
  position: relative;
  display: block;
  padding: 64px 0px 0px;
  padding-right: 15px;
}

.services-one__single-content-inner h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

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

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

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

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

.why-choose-one .shape3 {
  position: absolute;
  left: 50px;
  bottom: 205px;
  z-index: 2;
}

.why-choose-one .shape5 {
  position: absolute;
  bottom: 15px;
  right: 20px;
  opacity: 0.05;
  z-index: -1;
}

.why-choose-one .shape5 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.why-choose-one .shape6 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

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

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

.why-choose-one__img .shape1 {
  position: absolute;
  left: -121px;
  bottom: -155px;
  z-index: -1;
}

.why-choose-one__img .shape2 {
  position: absolute;
  top: -10px;
  right: 50px;
  width: 5px;
  height: 300px;
  background: var(--uterpy-base);
}

.why-choose-one__img .shape4 {
  position: absolute;
  left: 165px;
  bottom: -60px;
  z-index: 2;
}

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

.why-choose-one__img1 img {
  width: 100%;
}

.why-choose-one__img2 {
  position: absolute;
  right: 0;
  bottom: -155px;
}

.why-choose-one__img2 .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border: 9px solid #ffffff;
  z-index: 1;
}

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

.why-choose-one__img:hover .why-choose-one__img2 .inner::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

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

.why-choose-one__img2 .experience-box {
  position: absolute;
  top: -80px;
  left: -75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  z-index: 1;
}

.why-choose-one__img2 .experience-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #faf7f6;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.why-choose-one__img2 .experience-box::after {
  position: absolute;
  top: -17px;
  left: -7px;
  bottom: 5px;
  right: -7px;
  background: var(--uterpy-base);
  border-radius: 50%;
  content: "";
  z-index: -2;
}

.why-choose-one__img2 .experience-box h2 {
  font-size: 46px;
  line-height: 46px;
  font-weight: 700;
}

.why-choose-one__img2 .experience-box h2 .plus {
  position: relative;
  display: inline-block;
  right: 5px;
  top: -7px;
}

.why-choose-one__img2 .experience-box h2 .plus i:before {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
}

.why-choose-one .odometer.odometer-auto-theme,
.why-choose-one .odometer.odometer-theme-default {
  font-family: var(--uterpy-font);
  line-height: 46px;
}

.why-choose-one__img2 .experience-box p {
  color: var(--uterpy-black);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.why-choose-one__content {
  position: relative;
  display: block;
  margin-right: -50px;
  margin-top: -5px;
}

.why-choose-one__content .sec-title {
  padding-bottom: 30px;
  margin-top: -12px;
}

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

.why-choose-one__content-text .text1 {
  color: var(--uterpy-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.why-choose-one__content-text .text2 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
}

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

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

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

.why-choose-one__content-list li p {
  font-weight: 500;
}

.why-choose-one__content-list li p span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 17px;
  font-weight: 700;
  padding-right: 4px;
  top: 2px;
}

.why-choose-one__content-text2 {
  position: relative;
  display: block;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 23px 0px 24px;
  margin-top: 45px;
}

.why-choose-one__content-text2-single {
  position: relative;
  display: block;
}

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

.why-choose-one__content-text2-single .inner .icon-box {
  position: relative;
  display: block;
}

.why-choose-one__content-text2-single .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 55px;
}

.why-choose-one__content-text2-single .inner .title-box {
  position: relative;
  display: block;
  margin-left: 12px;
}

.why-choose-one__content-text2-single .inner .title-box h2 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
}

.why-choose-one__content-text3 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.why-choose-one__content-text3 .text-box {
  position: relative;
  display: block;
}

.why-choose-one__content-text3 .text-box p {
  color: var(--uterpy-black);
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.why-choose-one__content-text3 .btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

/***
=====================================================
Case One
=====================================================
***/
.case-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 50px 0px 105px;
  z-index: 1;
}

.case-one .container {
  position: static;
  max-width: 1800px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

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

.case-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ededed;
  z-index: 1;
}

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

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

.case-one__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
  mix-blend-mode: luminosity;
}

.case-one__single:hover .case-one__single-img img {
  transform: scale(1);
  mix-blend-mode: normal;
}

.case-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #f5f5f5;
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
  padding-left: 30px;
  padding-bottom: 30px;
  z-index: 1;
}

.case-one__single-content .icon-box {
  position: absolute;
  bottom: 15px;
  right: 10px;
  z-index: -1;
}

.case-one__single-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #f6f0f0;
  font-size: 60px;
}

.case-one__single-content .btn-box {
  position: relative;
  display: block;
  float: right;
}

.case-one__single-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 45px;
  z-index: 1;
}

.case-one__single-content .btn-box a::before {
  position: absolute;
  top: -11px;
  left: 0;
  bottom: 0;
  right: -1px;
  background: var(--uterpy-base);
  content: "";
  z-index: -1;
}

.case-one__single-content .btn-box a::after {
  content: "";
  position: absolute;
  left: -20px;
  top: -11px;
  width: 10px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 3;
  border-right: 10px solid #ef6d62;
}

.case-one__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 19px;
  top: -5px;
}

.case-one__single-content-inner {
  position: relative;
  display: block;
  padding-top: 25px;
  padding-right: 10px;
}

.case-one__single-content-inner h2 {
  font-size: 26px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 16px;
}

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

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

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


.case-one__carousel.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.case-one__carousel.owl-theme .owl-dots .owl-dot {
  margin: 0px -1px;
}

.case-one__carousel.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 19px;
  height: 18px;
  margin: 5px 5px;
  background: transparent;
  border: 1px solid #dbd8d8;
  border-radius: 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.case-one__carousel.owl-theme .owl-dots .owl-dot.active span {
  background: var(--thm-base);
}

.case-one__carousel.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  background: var(--uterpy-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.case-one__carousel.owl-theme .owl-dots .owl-dot.active span::before {
  transform: translateX(-50%) translateY(-50%) scale(1.0);
}

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

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

.case-one__carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  transition: all 100ms linear;
}

/***
=============================================
Counter One
=============================================
***/
.counter-one {
  position: relative;
  display: block;
}

.counter-one__inner {
  position: relative;
  display: block;
  border-radius: 15px;
  border-top-right-radius: 0px;
  padding: 85px 0px 45px;
  overflow: hidden;
  z-index: 5;
  margin-bottom: -85px;
}

.counter-one__inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--uterpy-base);
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.counter-one__inner-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--uterpy-base-rgb), 0.7);
  content: "";
  z-index: -2;
}

.counter-one__single {
  position: relative;
  display: block;
  z-index: 1;
  margin-bottom: 30px;
}

.counter-one__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.counter-one__single-top .icon-box {
  position: relative;
  display: block;
}

.counter-one__single-top .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 55px;
}

.counter-one__single-top .icon-box.style2 span::before {
  font-size: 65px;
  line-height: 55px;
}

.counter-one__single-top .text-box {
  position: relative;
  display: block;
  margin-left: 9px;
}

.counter-one__single-top .text-box h2 {
  color: #ffffff;
  font-size: 55px;
  line-height: 0.8em;
  font-weight: 700;
  font-family: var(--uterpy-font);
}

.counter-one__single-top .text-box h2 .plus {
  position: relative;
  display: inline-block;
  font-size: 12px;
  right: 7px;
  font-weight: 700;
}

.counter-one .odometer.odometer-auto-theme,
.counter-one .odometer.odometer-theme-default {
  font-family: var(--uterpy-font);
  line-height: 0.8em;
}

.counter-one .odometer-formatting-mark {
  display: none;
}

.counter-one__single-bottom {
  position: relative;
  display: block;
  margin-top: 11px;
  margin-left: 20px;
}

.counter-one__single-bottom p {
  color: #ffffff;
  margin: 0;
}

/***
=====================================================
Therapy One
=====================================================
***/
.therapy-one {
  position: relative;
  display: block;
}

.therapy-one .container {
  position: static;
  max-width: 1810px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.therapy-one__inner {
  position: relative;
  display: block;
  background: #fdeae0;
  padding-left: 90px;
  padding-top: 50px;
  padding-bottom: 120px;
  z-index: 1;
}

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

.therapy-one__bg {
  position: absolute;
  top: 0;
  left: 49%;
  right: 0;
  bottom: 0;
  background: #e3e3e3;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.therapy-one__img1 {
  position: absolute;
  right: 110px;
  bottom: 0;
  z-index: 2;
}

.therapy-one__inner .shape1 {
  position: absolute;
  bottom: 1px;
  right: 45px;
  width: 17px;
  height: 250px;
  background: #ffffff;
  z-index: 1;
}

.therapy-one__inner .shape2 {
  position: absolute;
  bottom: 165px;
  right: 27px;
  width: 9px;
  height: 165px;
  background: #ffffff;
  z-index: 1;
}

.therapy-one__inner .shape3 {
  position: absolute;
  bottom: 227px;
  right: 49px;
  width: 9px;
  height: 165px;
  background: var(--uterpy-base);
  z-index: 1;
}

.therapy-one__inner .sec-title {
  
}

.therapy-one__inner .sec-title__title {
  font-size: 43px;
}

.therapy-one__inner .sec-title__tagline {
  margin-bottom: 18px;
}

.therapy-one__left {
  position: relative;
  display: block;
padding-right: 65px;
  width: 100%;
}

.therapy-one__left-list {
  position: relative;
  display: block;
}

.therapy-one__left-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.therapy-one__left-list li:last-child {
  margin-bottom: 0;
}

.therapy-one__left-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #e7e6e6;
  background: #ffffff;
}

.therapy-one__left-list li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 55px;
}

.therapy-one__left-list li .content-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 25px;
}

.therapy-one__left-list li .content-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.therapy-one__left-list li .content-box p {
  margin: 0;
}

.therapy-one__right {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.therapy-one__right-content {
  position: absolute;
  left: -29px;
  bottom: -195px;
  padding: 56px 0px 55px;
  padding-left: 50px;
  max-width: 590px;
  width: 100%;
  z-index: 1;
}

.therapy-one__right-content::before {
  content: "";
  position: absolute;
  left: -95px;
  top: -50px;
  width: 95px;
  border-top: 50px solid transparent;
  border-left: 95px solid transparent;
  border-right: 95px solid transparent;
  z-index: 3;
  border-right: 95px solid #625b5b;
}

.therapy-one__right-content::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: 0px;
  width: 75px;
  border-top: 75px solid transparent;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  z-index: 3;
  border-top: 75px solid #4a4242;
}

.therapy-one__right-content .inner {
  position: relative;
  display: block;
  max-width: 440px;
  width: 100%;
}

.therapy-one__right-content-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #262222;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.therapy-one__right-content .icon-box {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.therapy-one__right-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 105px;
}

.therapy-one__right-content .content-box {
  position: relative;
  display: block;
}

.therapy-one__right-content .content-box h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 32px;
}

.therapy-one__right-content .content-box p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}


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

.testimonial-one::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #504b4a;
  height: 465px;
  content: "";
  z-index: -1;
}

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

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

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

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  padding: 43px 30px 35px 40px;
}

.testimonial-one__single::before {
  position: absolute;
  left: -1px;
  bottom: -1px;
  right: -1px;
  height: 1px;
  background: var(--uterpy-base);
  content: "";
}

.testimonial-one__single-text {
  font-size: 22px;
  line-height: 40px;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dbd3d2;
  padding-top: 35px;
  margin-top: 38px;
}

.testimonial-one__client-details {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-one__client-img img {
  width: 100%;
  border-radius: 50%;
  background: #d4d1d1;
}

.testimonial-one__single:hover .testimonial-one__client-img img {
  mix-blend-mode: luminosity;
}

.testimonial-one__client-content {
  position: relative;
  display: block;
  margin-left: 15px;
}

.testimonial-one__client-content h4 {
  color: var(--uterpy-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.testimonial-one__client-content p {
  font-size: 15px;
  line-height: 24px;
}

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

.testimonial-one__quote span {
  position: relative;
  display: inline-block;
  color: #828282;
  font-size: 45px;
}

.testimonial-carousel__one.owl-theme .owl-dots {
  margin-top: 50px !important;
}

.testimonial-carousel__one.owl-theme .owl-dots .owl-dot {
  margin: 0px -1px;
}

.testimonial-carousel__one.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 19px;
  height: 18px;
  margin: 5px 5px;
  background: transparent;
  border: 1px solid #dbd8d8;
  border-radius: 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-carousel__one.owl-theme .owl-dots .owl-dot.active span {
  background: var(--thm-base);
}

.testimonial-carousel__one.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  background: var(--uterpy-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.testimonial-carousel__one.owl-theme .owl-dots .owl-dot.active span::before {
  transform: translateX(-50%) translateY(-50%) scale(1.0);
}

.carousel-control-block__outer {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.carousel-control-block {
  position: relative;
  float: right;
  max-width: 230px;
  width: 100%;
  height: 65px;
  background-color: #f5f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  z-index: 991;
}

.carousel-btn-block {
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0;
  max-width: 100%;
  transform: translateY(-50%);
}

.carousel-btn-block .left-btn,
.carousel-btn-block .right-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 65px;
  cursor: pointer;
}

.carousel-btn-block .left-btn {
  position: relative;
  float: left;
  left: 20px;
  z-index: 1;
}

.carousel-btn-block .left-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  right: 0;
  background: #5a4745;
  content: "";
  z-index: -1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.carousel-btn-block .left-btn:hover::before {
  background: var(--uterpy-base);
}

.carousel-btn-block .left-btn::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 10px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: -2;
  border-top: 10px solid #4a4242;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.carousel-btn-block .left-btn:hover::after {
  border-top: 10px solid #ef6d62;
}

.carousel-btn-block .right-btn {
  position: relative;
  float: right;
  right: 20px;
  z-index: 1;
}

.carousel-btn-block .right-btn::before {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0px;
  right: 0;
  background: #5a4745;
  content: "";
  z-index: -1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.carousel-btn-block .right-btn:hover::before {
  background: var(--uterpy-base);
}

.carousel-btn-block .right-btn::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -20px;
  width: 10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  z-index: -2;
  border-bottom: 10px solid #4a4242;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.carousel-btn-block .right-btn:hover::after {
  border-bottom: 10px solid #ef6d62;
}

.carousel-btn-block .left-btn i::before,
.carousel-btn-block .right-btn i::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.carousel-number-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-weight: 500;
  font-size: 20px;
  color: var(--uterpy-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--uterpy-font);
}

.carousel-number-count .sep,
.carousel-number-count .current-number {
  font-size: 20px;
  font-weight: 500;
}

.carousel-number-count .sep {
  margin-left: 4px;
  margin-right: 4px;
}

[class*=testimonial-one__carousel] .owl-nav {
  display: none;
}


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

.team-one .container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

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

.team-one__single-img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__single:hover .team-one__single-img:before {
  transform: translateY(0);
  width: 100%;
}

.team-one__single-img img {
  width: 100%;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

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

.team-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #f2eeed;
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
  padding-bottom: 40px;
}

.team-one__single-content .social-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  max-width: 185px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0px 10px;
  border-radius: 27px;
  margin-top: -30px;
  z-index: 5;
}

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

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

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

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

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

.team-one__single-content .social-links li a span::before {
  position: relative;
  display: inline-block;
  color: #433838;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.team-one__single-content .title-box {
  position: relative;
  display: block;
  margin-top: 19px;
}

.team-one__single-content .title-box h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 2px;
}

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

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

.team-one__single-content .title-box p {
  color: var(--uterpy-base);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
}


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

.blog-one__pattern1 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0.7;
  min-height: 480px;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.blog-one__pattern2 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  min-height: 500px;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

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

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

.blog-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000000;
}

.blog-one__single-img .inner img {
  width: 100%;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__single-img .inner img {
  opacity: 0.5;
  transform: scaleX(1.05);
}

.blog-one__single-img .inner .overlay-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  left: 25px;
  bottom: 30px;
  width: 75px;
  height: 25px;
  background: var(--uterpy-black);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}


.blog-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgba(173, 173, 173, 0.35);
}

.blog-one__single-content-top {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 25px;
  padding-right: 8px;
  z-index: 1;
}

.blog-one__single-content-top .shape1 {
  position: absolute;
  top: 0;
  right: 35px;
  z-index: -1;
}

.blog-one__single-content-top::before {
  position: absolute;
  top: 0;
  left: 25px;
  bottom: 0;
  right: 0;
  background: #f6f6f6;
  content: "";
  z-index: -1;
}

.blog-one__single-content-top .date-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 68px;
  height: 68px;
  z-index: 1;
}

.blog-one__single-content-top .date-box::before {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--uterpy-base);
  content: "";
  z-index: -1;
}

.blog-one__single-content-top .date-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -10px;
  width: 10px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 3;
  border-left: 10px solid #ef6d62;
}

.blog-one__single-content-top .date-box h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 20px;
  font-weight: 600;
  font-family: var(--uterpy-font);
}

.blog-one__single-content-top .date-box h2 span {
  font-size: 13px;
  font-weight: 400;
}

.blog-one__single-content-top .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: 25px;
}

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

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

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

.blog-one__single-content-top .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 18px;
}

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

.blog-one__single-content-top .meta-box li .text p {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.blog-one__single-content-top .meta-box li .text p a {
  color: rgba(var(--uterpy-black-rgb), 0.88);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

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

.blog-one__single-content-top .btn-box a {
  position: relative;
  display: inline-block;
  border: 1px solid #141414;
  background: #ffffff;
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 5px 20px 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.blog-one__single-content-top .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 15px;
  top: 2px;
  padding-left: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-top .btn-box a:hover span::before {
  color: var(--uterpy-base);
}

.blog-one__single-content-bottom {
  position: relative;
  display: block;
  padding: 25px 25px 36px;
  overflow: hidden;
  z-index: 1;
}

.blog-one__single-content-bottom .shape2 {
  position: absolute;
  top: 0;
  right: -43px;
  z-index: -1;
}

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

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

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

.blog-one__single-content-bottom p {
  margin: 0;
  line-height: 30px;
}

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

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

.site-footer__top {
  position: relative;
  display: block;
  padding: 114px 0 90px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-top: -3px;
  margin-bottom: 33px;
  z-index: 1;
}

.footer-widget__title {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}

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

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

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

.footer-widget__about-text-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.footer-widget__about-text {
  color: var(--uterpy-gray);
}

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

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

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

.footer-widget__about-social-link li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #493e3d;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.footer-widget__about-social-link li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 50%;
  background-color: var(--uterpy-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.footer-widget__about-social-link li a:hover::before {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.footer-widget__about-social-link li a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  line-height: 50px;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: 50px;
  margin-right: -30px;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
  padding-top: 3px;
}

.footer-widget__contact-list li {
  position: relative;
  display: block;
  padding-left: 35px;
  margin-bottom: 10px;
}

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

.footer-widget__contact-list .icon {
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list .icon span::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--uterpy-base);
}

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

.footer-widget__contact-list .text p {
  color: var(--uterpy-gray);
}

.footer-widget__contact-list .text p a {
  font-size: 16px;
  color: var(--uterpy-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li:hover .text p a {
  color: var(--uterpy-base);
}

.footer-widget__contact-text {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 195px;
  width: 100%;
  padding-left: 15px;
  margin-top: 35px;
  z-index: 1;
}

.footer-widget__contact-text::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 15px;
  background: #303b3b;
  content: "";
  z-index: -1;
}

.footer-widget__contact-text .text-box {
  position: relative;
  display: block;
}

.footer-widget__contact-text .text-box p {
  color: #ffffff;
  font-weight: 500;
}

.footer-widget__contact-text .text-box p a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-widget__contact-text .text-box p a:hover {
  color: var(--uterpy-base);
}

.footer-widget__contact-text .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--uterpy-base);
  border-radius: 50%;
  margin-left: 15px;
}

.footer-widget__contact-text .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.footer-widget__service {
  position: relative;
  display: block;
  margin-left: 58px;
  margin-right: -20px;
}

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

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

.footer-widget__service-list li a {
  font-size: 16px;
  line-height: 26px;
  color: var(--uterpy-gray);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__service-list li a:hover {
  color: var(--uterpy-base);
}


.footer-widget__newsletter {
  position: relative;
  display: block;
  margin-left: 70px;
}

.footer-widget__newsletter-text {
  color: var(--uterpy-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding-top: 3px;
}

.footer-widget__subscribe-box {
  position: relative;
  display: block;
  margin-top: 27px;
}

.footer-widget__subscribe-input-box {
  position: relative;
  display: block;
  background: #303b3b;
  border-radius: 2px;
  padding: 10px;
}

.footer-widget__subscribe-input-box input[type="email"] {
  color: rgba(132, 132, 132, 0.7);
  font-size: 16px;
  height: 60px;
  width: 100%;
  background-color: #ffffff;
  padding-left: 15px;
  padding-right: 70px;
  outline: none;
  border: none;
}

.footer-widget__subscribe-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 60px;
  height: 60px;
  border: none;
  background-color: var(--uterpy-base);
  font-size: 25px;
  color: #ffffff;
  border-radius: 0px;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.footer-widget__newsletter-text2 {
  color: var(--uterpy-gray);
  margin-top: 25px;
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 35px 0px 35px;
  border-top: 1px solid #2d2c2c;
}

.site-footer__bottom-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.025em;
}

.site-footer__bottom-text a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--uterpy-base);
}


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

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

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

.about-one .container {
  position: static;
  max-width: 1810px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

.about-one__img1 {
  position: relative;
  display: block;
  margin-right: 65px;
  z-index: 1;
}

.about-one__img1 .shape1 {
  position: absolute;
  right: 100px;
  bottom: -60px;
  width: 400px;
  height: 400px;
  border: 1px solid #ffffff;
  background: transparent;
  z-index: 1;
}

.about-one__img1::before {
  position: absolute;
  top: 0;
  right: -35px;
  width: 5px;
  height: 65px;
  background: var(--uterpy-base);
  content: "";
}

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

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

.about-one__img2 {
  position: absolute;
  bottom: -105px;
  right: 0;
  z-index: 2;
}

.about-one__img2 .overlay-content {
  position: absolute;
  top: -74px;
  right: -15px;
  background: var(--uterpy-base);
  display: flex;
  align-items: center;
  padding: 25px 35px 25px;
  border-radius: 35px;
  border-top-right-radius: 0px;
  z-index: 3;
}

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

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

.about-one__img2 .overlay-content .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.about-one__img2 .overlay-content .text-box p {
  color: #ffffff;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}

.about-one__img2 .inner {
  position: relative;
  display: block;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  overflow: hidden;
}

.about-one__img2 .inner::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border: 12px solid #ffffff;
  border-radius: 50%;
  content: "";
}

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

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

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

.about-one__content-text1 p {
  color: #433838;
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
}

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

.about-one__content-text2-img {
  position: relative;
  display: block;
  width: 170px;
  height: 170px;
}

.about-one__content-text2-img .inner {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  width: 170px;
  height: 170px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

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

.about-one__content-text2-img .overlay-content {
  position: absolute;
  top: 17px;
  left: 7px;
  right: 7px;
  bottom: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #faf7f6;
  border-radius: 50%;
  z-index: 1;
}

.about-one__content-text2-img .overlay-content h2 {
  font-size: 46px;
  line-height: 46px;
  font-weight: 700;
  margin-top: -11px;
}

.about-one__content-text2-img .overlay-content h2 .plus {
  position: relative;
  display: inline-block;
  right: 5px;
  top: -7px;
}

.about-one__content-text2-img .overlay-content h2 .plus i:before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
}

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

.about-one__content-text2-img .overlay-content p {
  color: var(--uterpy-black);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.about-one__content-text2-text {
  position: relative;
  display: block;
  margin-left: 30px;
  flex: 1;
}

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

.about-one__content-text2-text ul li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.about-one__content-text2-text ul li:last-child {
  margin-bottom: 0;
}

.about-one__content-text2-text ul li p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.about-one__content-text2-text ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 15px;
  font-weight: 700;
  padding-right: 5px;
}

.about-one__content-text3 {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid #dfdcdb;
  padding-top: 40px;
  margin-top: 35px;
}

.about-one__content-text3 .left-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 360px;
  width: 100%;
}

.about-one__content-text3 .left-content .title-box {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__content-text3 .left-content .title-box h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--uterpy-font);
}

.about-one__content-text3 .left-content .title-box p {
  font-size: 14px;
  line-height: 24px;
}

.about-one__content-text3 .left-content .signature-box {
  position: relative;
  display: block;
}

.about-one__content-text3 .left-content .signature-box img {
  width: 100%;
}

.about-one__content-text3 .right-content {
  position: relative;
  display: block;
  padding-left: 35px;
  margin-left: 25px;
  flex: 1;
}

.about-one__content-text3 .right-content::before {
  position: absolute;
  top: -5px;
  left: 0;
  bottom: -10px;
  width: 1px;
  background: #e7e6e5;
  content: "";
}

.about-one__content-text3 .right-content p {
  margin: 0;
}

/***
=====================================================
Services Two
=====================================================
***/
.services-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0px 70px;
  z-index: 1;
}

.services-two .container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

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

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

.services-two__single:hover .services-two__single-img::after {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

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

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

.services-two__single-img-icon {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 5;
}

.services-two__single-img-icon-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--uterpy-base);
  border-radius: 50%;
  border: 2px solid #ffffff;
}

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

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

.services-two__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
  padding-top: 31px;
  padding-left: 25px;
  padding-bottom: 32px;
  z-index: 1;
}

.services-two__single-content h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  text-transform: capitalize;
}

.services-two__single-content h2 a {
  color: var(--uterpy-black);
}

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

.services-two__single-content .btn-box {
  position: absolute;
  right: 0;
  bottom: -13px;
}

.services-two__single-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 55px;
  background: #f6f2f2;
  z-index: 2;
}

.services-two__single-content .btn-box a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: var(--uterpy-base);
  content: "";
  transition: all 300ms linear;
  transition-delay: 0.1s;
}

.services-two__single-content .btn-box a:hover::before {
  width: 100%;
}

.services-two__single-content .btn-box a::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 20px;
  border-top: 15px solid transparent;
  border-left: 20px solid transparent;
  z-index: 3;
  border-top: 13px solid #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
}

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

.services-two__single-content .btn-box a:hover span::before {
  color: #ffffff;
}

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

.counter-one--two .counter-one__inner-bg {
  background: var(--uterpy-black);
}

.counter-one--two .counter-one__inner-bg::before {
  display: none;
}

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


/***
=====================================================
Therapy Two
=====================================================
***/
.therapy-two {
  position: relative;
  display: block;
  z-index: 1;
}

.therapy-two .container {
  position: static;
  max-width: 1800px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.therapy-two__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.therapy-two__img {
  position: relative;
  display: block;
  max-width: 840px;
  width: 100%;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 855px;
  z-index: 1;
}

.therapy-two__img .shape1 {
  position: absolute;
  left: 25px;
  bottom: 220px;
  width: 17px;
  height: 250px;
  background: #ffffff;
}

.therapy-two__img .shape2 {
  position: absolute;
  left: 29px;
  bottom: 430px;
  width: 9px;
  height: 170px;
  background: var(--uterpy-base);
}

.therapy-two__img .shape3 {
  position: absolute;
  left: 55px;
  bottom: 350px;
  width: 9px;
  height: 170px;
  background: #ffffff;
}


.therapy-two__img-content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 41px 35px 50px;
  padding-right: 0;
  z-index: 5;
}

.therapy-two__img-content::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--uterpy-base);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.therapy-two__img-content::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #d2453a;
  content: "";
  z-index: -2;
}

.therapy-two__img-content .icon-box {
  position: relative;
  display: block;
}

.therapy-two__img-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 65px;
}

.therapy-two__img-content .text-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.therapy-two__img-content .text-box h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 7px;
}

.therapy-two__img-content .text-box p {
  color: #ffffff;
  margin: 0;
}


.therapy-two__content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 28px 0px rgba(182, 176, 176, 0.35);
  padding: 136px 90px 76px;
  padding-right: 0;
  width: 100%;
  z-index: 1;
}

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

.therapy-two__content .title-box {
  position: relative;
  display: block;
  margin-bottom: 51px;
}

.therapy-two__content .title-box h2 {
  font-size: 43px;
  line-height: 53px;
  font-weight: 700;
}

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

.therapy-two__content-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

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

.therapy-two__content-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  background: #ffffff;
}

.therapy-two__content-list li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 55px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.therapy-two__content-list li:hover .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.therapy-two__content-list li .content-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 25px;
}

.therapy-two__content-list li .content-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.therapy-two__content-list li .content-box p {
  margin: 0;
}


/***
=====================================================
Therapy Two
=====================================================
***/
.cases-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 100px 0px 85px;
  z-index: 1;
}

.cases-two .container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

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

.cases-two__single {
  position: relative;
  display: block;
}

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

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

.cases-two__single:hover .cases-two__single-img:before {
  height: 100%;
  opacity: 0.3;
}

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

.cases-two__single:hover .cases-two__single-img:after {
  height: 0;
  opacity: 0.2;
}

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

.cases-two__single:hover .cases-two__single-img img {
  transform: scale(1);
}

.cases-two__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgb(233, 226, 226, 0.35);
  border: 1px solid #f5f5f5;
  padding: 34px 0px 0px 0px;
}

.cases-two__single-content-top {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 42px;
}

.cases-two__single-content-top h2 {
  font-size: 26px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.cases-two__single-content-top h2 a {
  color: var(--uterpy-black);
}

.cases-two__single-content-top h2 a:hover {
  color: var(--uterpy-base);
}


.cases-two__single-content-top p {
  color: var(--uterpy-base);
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.cases-two__single-content-bottom {
  position: relative;
  display: block;
  line-height: 0;
}

.cases-two__single-content-bottom .btn-box {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 0;
  z-index: 5;
}

.cases-two__single-content-bottom .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  background: #f6f2f2;
  padding: 0px 0px 0px;
  padding-left: 20px;
}

.cases-two__single-content-bottom .btn-box a .text-box {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  padding-right: 16px;
}

.cases-two__single-content-bottom .btn-box a:hover {
  color: var(--uterpy-base);
}

.cases-two__single-content-bottom .btn-box a .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  z-index: 1;
}

.cases-two__single-content-bottom .btn-box a .icon-box::before {
  position: absolute;
  top: -10px;
  left: 0px;
  bottom: -1px;
  right: -1px;
  background: var(--uterpy-base);
  content: "";
  z-index: -1;
}

.cases-two__single-content-bottom .btn-box a .icon-box::after {
  content: "";
  position: absolute;
  left: -20px;
  top: -10px;
  width: 10px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 3;
  border-right: 10px solid #ef6d62;
}

.cases-two__single-content-bottom .btn-box a .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  top: -5px;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}



.cases-two__carousel.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.cases-two__carousel.owl-theme .owl-dots .owl-dot {
  margin: 0px -1px;
}

.cases-two__carousel.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 19px;
  height: 18px;
  margin: 5px 5px;
  background: transparent;
  border: 1px solid #dbd8d8;
  border-radius: 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cases-two__carousel.owl-theme .owl-dots .owl-dot.active span {
  background: var(--thm-base);
}

.cases-two__carousel.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  background: var(--uterpy-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.cases-two__carousel.owl-theme .owl-dots .owl-dot.active span::before {
  transform: translateX(-50%) translateY(-50%) scale(1.0);
}

.cases-two__carousel.owl-theme .owl-stage-outer {
  overflow: visible;
}

.cases-two__carousel .owl-stage-outer .owl-item {
  opacity: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cases-two__carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  transition: all 100ms linear;
}

/***
=====================================================
    Team One
=====================================================
***/
.team-two {
  position: relative;
  display: block;
  padding: 440px 0px 70px;
  z-index: 1;
  margin-top: -355px;
}

.team-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #171616;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

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

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

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

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

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

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

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

.team-two__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 32px 30px 31px 110px;
  border: 1px solid #f2eeed;
}

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

.team-two__single-content h2 a {
  color: var(--uterpy-black);
}

.team-two__single-content h2 a:hover {
  color: var(--uterpy-base)
}

.team-two__single-content span {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.team-two__single-content p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 12px;
}


.team-two__single-content .social-link {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 25px 20px;
  z-index: 1;
}

.team-two__single-content .social-link::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #eeeceb;
  content: "";
  z-index: -1;
}

.team-two__single-content .social-link ul {
  position: relative;
  display: block;
}

.team-two__single-content .social-link ul li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.team-two__single-content .social-link ul li:last-child {
  margin-bottom: 0px;
}

.team-two__single-content .social-link ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  background: #ffffff;
}

.team-two__single-content .social-link ul li a:hover {
  background: var(--uterpy-base);
}

.team-two__single-content .social-link ul li a span::before {
  color: #433838;
  font-size: 15px;
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

.team-two__single-content .social-link ul li a:hover span::before {
  color: #ffffff;
}

/***
=====================================================
Testimonial Two
=====================================================
***/
.testimonial-one--two {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
  z-index: 5;
}

.testimonial-one--two.testimonial-one::before {
  display: none;
}

.testimonial-one--two .carousel-control-block__outer {
  top: 112px;
}

/***
=====================================================
Blog Two
=====================================================
***/
.blog-one--two {
  position: relative;
  display: block;
  padding: 100px 0px 70px;
  z-index: 1;
}

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

/***
=====================================================
Site Footer Two
=====================================================
***/
.site-footer--two {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.site-footer--two .site-footer__top {
  position: relative;
  display: block;
  padding: 94px 0 90px;
}

.site-footer--two .shape1 {
  position: absolute;
  top: -335px;
  left: 0;
  z-index: 1;
}

.site-footer--two .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.site-footer--two .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.site-footer--two__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #1f1c1c;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.site-footer--two .footer-widget__about {
  max-width: 325px;
  width: 100%;
  z-index: 2;
}

.footer-widget__service-two {
  position: relative;
  display: block;
  margin-left: 12px;
  z-index: 2;
}

.site-footer--two .footer-widget__service {
  margin-left: 75px;
  margin-right: 0px;
  z-index: 2;
}

.site-footer--two .footer-widget__contact {
  position: relative;
  display: block;
  margin-left: 0px;
  margin-right: 0px;
  z-index: 2;
}

.site-footer--two .site-footer__bottom-inner {
  border-top: 1px solid #443a3a;
}

/***
=====================================================
Subscribe One
=====================================================
***/
.subscribe-one {
  position: relative;
  display: block;
  background: var(--uterpy-base);
  padding: 75px 0px 65px;
  overflow: hidden;
  z-index: 1;
}

.subscribe-one .shape1 {
  position: absolute;
  left: 15px;
  bottom: -190px;
  width: 250px;
  height: 250px;
  background: #f9695e;
  border-radius: 50%;
  z-index: 1;
}

.subscribe-one .shape2 {
  position: absolute;
  left: -90px;
  bottom: -30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #fa786e;
  z-index: -1;
}

.subscribe-one .shape3 {
  position: absolute;
  bottom: -125px;
  right: -125px;
  width: 250px;
  height: 250px;
  background: #fa786e;
  border-radius: 50%;
  z-index: 1;
}

.subscribe-one .shape4 {
  position: absolute;
  right: 55px;
  bottom: -190px;
  width: 250px;
  height: 250px;
  background: #f9695e;
  border-radius: 50%;
  z-index: -1;
}

.subscribe-one .shape5 {
  position: absolute;
  top: -134px;
  right: 415px;
  z-index: -1;
}

.subscribe-one .shape6 {
  position: absolute;
  top: -146px;
  right: 415px;
  z-index: -1;
}

.subscribe-one__content {
  position: relative;
  display: block;
  z-index: 1;
}

.subscribe-one__content h2 {
  color: #ffffff;
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
}

.subscribe-one__form {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  z-index: 1;
}

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

.subscribe-one__form .input-box input[type="email"] {
  color: #a3a3a3;
  font-size: 16px;
  height: 80px;
  width: 100%;
  background-color: #ffffff;
  padding-left: 25px;
  padding-right: 170px;
  outline: none;
  border: none;
}

.subscribe-one__form-btn {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 160px;
  height: 80px;
  border: none;
  background-color: var(--uterpy-black);
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0px;
  border-top-right-radius: 0px;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.subscribe-one__form-text {
  position: relative;
  display: block;
  margin-top: 15px;
}

.subscribe-one__form-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.intro-two .container {
  position: static;
  max-width: 1590px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.intro-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: 60px 20px 50px;
  overflow: hidden;
  z-index: 1;
}

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

.intro-two__single .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.intro-two__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -moz-linear-gradient(90deg, rgb(255, 183, 177) 0%, rgb(252, 235, 233) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(255, 183, 177) 0%, rgb(252, 235, 233) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(255, 183, 177) 0%, rgb(252, 235, 233) 100%);
  opacity: 0.2;
  content: "";
  z-index: -1;
}

.intro-two__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--uterpy-base);
  margin: 0 auto 20px;
}

.intro-two__single-icon span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

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

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

.intro-two__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

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

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

/***
=====================================================
Why Choose Two
=====================================================
***/
.why-choose-one.style2 {
  position: relative;
  display: block;
  padding-bottom: 120px;
}

.why-choose-one.style2 .shape8 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.why-choose-one.style2 .shape5 {
  z-index: 1;
}

.why-choose-one.style2 .why-choose-one__content {
  margin-right: -140px;
}

.why-choose-one.style2 .why-choose-one__content-list {
  margin-top: 22px;
}

.why-choose-one.style2 .why-choose-one__content-text2 {
  margin-top: 50px;
  padding: 28px 0px 29px;
  max-width: 600px;
  width: 100%;
}

.why-choose-one__content-text2-single .text-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.why-choose-one__content-text2-single .text-box p {
  margin: 0;
}

.why-choose-one.style2 .why-choose-one__content-list li {
  margin-bottom: 10px;
}

.why-choose-one.style2 .why-choose-one__content-text3 {
  margin-top: 50px;
}

/***
=====================================================
Therapy One
=====================================================
***/
.therapy-one.style3 {
  position: relative;
  display: block;
  z-index: 3;
}


/***
=====================================================
Testimonial Three
=====================================================
***/
.testimonial-three {
  position: relative;
  display: block;
  padding: 585px 0px 105px;
  z-index: 1;
  margin-top: -390px;
}

.testimonial-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #675a5a;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-three__pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  min-height: 600px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-three__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #675a5a;
  opacity: 0.9;
  content: "";
  z-index: -2;
}

.testimonial-three .sec-title__title {
  color: #ffffff;
}

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

.testimonial-three__single {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  padding: 50px 40px 40px;
  padding-right: 50px;
}

.testimonial-three__client-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.testimonial-three__client-details {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-three__client-img {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

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

.testimonial-three__client-content {
  position: relative;
  display: block;
  margin-left: 15px;
}

.testimonial-three__client-content h4 {
  color: var(--uterpy-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.testimonial-three__client-content p {
  font-size: 15px;
  line-height: 24px;
}

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

.testimonial-three__quote span {
  position: relative;
  display: inline-block;
  color: #828282;
  font-size: 45px;
}

.testimonial-three__single-text {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.testimonial-three__single-text p {
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
  margin: 0;
}

.testimonial-three__single-bottom {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-three__single-bottom .border-box {
  position: relative;
  display: block;
  width: 245px;
  height: 1px;
  background: #dbd3d2;
}

.testimonial-three__single-bottom .rating-box {
  margin-left: 20px;
  margin-top: 8px;
}

.testimonial-three__single-bottom .rating-box ul li span {
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
}

.testimonial-three__carousel.owl-theme .owl-dots {
  margin-top: 55px !important;
}

.testimonial-three__carousel.owl-theme .owl-dots .owl-dot {
  margin: 0px -1px;
}

.testimonial-three__carousel.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 19px;
  height: 18px;
  margin: 5px 5px;
  background: transparent;
  border: 1px solid #dbd8d8;
  border-radius: 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-three__carousel.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  background: var(--uterpy-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
}

.testimonial-three__carousel.owl-theme .owl-dots .owl-dot.active span::before {
  transform: translateX(-50%) translateY(-50%) scale(1.0);
}

/***
=====================================================
Case Three
=====================================================
***/
.case-one.style3 {
  position: relative;
  padding-bottom: 0;
}

/***
=====================================================
Award One
=====================================================
***/
.award-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 88px 0px 100px;
  z-index: 1;
}

.award-one .shape3 {
  position: absolute;
  bottom: -225px;
  right: -175px;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: #fff9f5;
  z-index: -1;
}

.award-one__img {
  position: relative;
  display: block;
  margin-left: -110px;
  max-width: 490px;
  width: 100%;
  z-index: 1;
}

.award-one__img .shape1 {
  position: absolute;
  top: 0;
  left: -80px;
  z-index: -1;
}

.award-one__img1 {
  position: relative;
  display: block;
  max-width: 380px;
  width: 100%;
}

.award-one__img1 .review-box {
  position: absolute;
  top: -10px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #fbdd12;
  border: 7px solid #ffffff;
  overflow: hidden;
  z-index: 1;
}

.award-one__img1 .review-box .shape2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.award-one__img1 .review-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.award-one__img1 .review-box p {
  color: var(--uterpy-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.award-one__img1 img {
  width: auto;
}

.award-one__img2 {
  position: absolute;
  bottom: 105px;
  right: -20px;
}

.award-one__img2 img {
  width: auto;
}

.award-one__content {
  position: relative;
  display: block;
  margin-left: -15px;
  margin-right: -15px;
}

.award-one__content .sec-title {
  padding-bottom: 36px;
}

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

.award-one__content-inner p {
  font-size: 18px;
  line-height: 34px;
  margin: 0;
}

.award-one__content-inner .btn-box {
  position: relative;
  display: block;
  margin-top: 39px;
}

.award-one__content-inner .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 16px;
  line-height: 61px;
  font-weight: 600;
  border: 2px solid var(--uterpy-base);
  padding-left: 40px;
  padding-right: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.award-one__content-inner .btn-box a:hover {
  color: #ffffff;
  background: var(--uterpy-base);
}

/***
=====================================================
Blog Two
=====================================================
***/
.blog-three {
  position: relative;
  display: block;
  background: #f5f5f5;
  padding: 120px 0px 90px;
  overflow: hidden;
  z-index: 1;
}

.blog-three__pattern1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 706px;
  opacity: 0.7;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.blog-three__pattern2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 705px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

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

.blog-three__single-img {
  position: relative;
  display: block;
}

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

.blog-three__single-img .inner::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.70;
  z-index: 1;
}

.blog-three__single:hover .blog-three__single-img .inner::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
  opacity: 1.0;
}

.blog-three__single-img .inner img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.blog-three__single:hover .blog-three__single-img .inner img {
  transform: scale(1.1) rotate(1deg);
}

.blog-three__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgba(173, 173, 173, 0.35);
  padding: 0px 0px 35px;
  padding-left: 23px;
}

.blog-three__single-content .top-content {
  position: relative;
  display: flex;
  align-items: center;
  background: #f6f6f6;
  z-index: 1;
}

.blog-three__single-content .top-content .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.blog-three__single-content .top-content .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.blog-three__single-content .top-content::before {
  position: absolute;
  top: 0;
  left: 23px;
  bottom: 0;
  right: 0;
  background: #f6f6f6;
  z-index: -1;
}

.blog-three__single-content .top-content .date-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 70px;
  height: 68px;
  z-index: 1;
}

.blog-three__single-content .top-content .date-box::before {
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--uterpy-base);
  content: "";
  z-index: -1;
}

.blog-three__single-content .top-content .date-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -10px;
  width: 10px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 3;
  border-left: 10px solid #ef6d62;
}

.blog-three__single-content .top-content .date-box h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 20px;
  font-weight: 600;
  font-family: var(--uterpy-font);
}

.blog-three__single-content .top-content .date-box h2 span {
  font-size: 13px;
  font-weight: 400;
}

.blog-three__single-content .top-content .text-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 25px;
  background: var(--uterpy-black);
  margin-left: 25px;
}

.blog-three__single-content .top-content .text-box span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.blog-three__single-content .top-content .meta-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.blog-three__single-content .top-content .meta-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-three__single-content .top-content .meta-box p span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 18px;
  top: 2px;
}

.blog-three__single-content .top-content .meta-box p a {
  color: rgba(var(--uterpy-black-rgb), 0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-three__single-content .top-content .meta-box p a:hover {
  color: var(--uterpy-base);
}

.blog-three__single-content .bottom-content {
  position: relative;
  display: block;
  padding-right: 14px;
  padding-top: 25px;
}

.blog-three__single-content .bottom-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}

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

.blog-three__single-content .bottom-content h2 a:hover {
  color: var(--uterpy-base);
}

.blog-three__single-content .bottom-content .bottom-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 33px;
}

.blog-three__single-content .bottom-content .bottom-box .btn-box {
  position: relative;
  display: block;
}

.blog-three__single-content .bottom-content .bottom-box .btn-box a {
  position: relative;
  display: inline-block;
  border: 1px solid #141414;
  background: #ffffff;
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 5px 20px 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-three__single-content .bottom-content .bottom-box .btn-box a:hover {
  border-color: var(--uterpy-base);
  color: var(--uterpy-base);
}

.blog-three__single-content .bottom-content .bottom-box .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 15px;
  top: 2px;
  padding-left: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-three__single-content .bottom-content .bottom-box .btn-box a:hover span::before {
  color: var(--uterpy-base);
}

.blog-three__single-content .bottom-content .bottom-box .text-box {
  position: relative;
  display: block;
}

.blog-three__single-content .bottom-content .bottom-box .text-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.blog-three__single-content .bottom-content .bottom-box .text-box p a {
  color: rgba(var(--uterpy-black-rgb), 0.8);
}

.blog-three__single-content .bottom-content .bottom-box .text-box p a:hover {
  color: var(--uterpy-base);
}

.blog-three__single-content .bottom-content .bottom-box .text-box p span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 18px;
  top: 4px;
  padding-right: 5px;
}


/***
=====================================================
Intro One About
=====================================================
***/
.intro-one--about {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

/***
=====================================================
Why Choose One About
=====================================================
***/
.why-choose-one--about {
  position: relative;
  display: block;
  z-index: 1;
}

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

/***
=====================================================
Therapy Services
=====================================================
***/
.therapy-one--services {
  position: relative;
  display: block;
  padding-bottom: 195px;
}

/***
=====================================================
Services Two Services2
=====================================================
***/
.services-two--services2 {
  position: relative;
  display: block;
}

.services-two--services2.services-two .container {
  position: static;
  max-width: 1200px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}


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

.services-details__content {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-top: -11px;
}

.services-details__content-text1 {
  position: relative;
  display: block;
}

.services-details__content-text1 h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 26px;
}

.services-details__content-text1 .text1 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 40px;
}

.services-details__content-text1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 41px;
}

.services-details__content-text1 .img-box img {
  width: 100%;
}

.services-details__content-text1 .text2 {
  font-size: 18px;
}

.services-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.services-details__content-text2 h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.services-details__content-text2 .text1 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 26px;
}

.services-details__content-text2 .text2 {
  font-size: 18px;
  margin: 0;
}

.services-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.services-details__content-text3 h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.services-details__content-text3 p {
  font-size: 18px;
  margin: 0;
}

.services-details__content-text4 {
  position: relative;
  display: block;
  margin-top: 26px;
}

.services-details__content-text4 .single-list-box {
  position: relative;
  display: block;
}

.services-details__content-text4 .single-list-box ul {
  position: relative;
  display: block;
}

.services-details__content-text4 .single-list-box ul li {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.services-details__content-text4 .single-list-box ul li:last-child {
  margin-bottom: 0;
}

.services-details__content-text4 .single-list-box ul li p {
  margin: 0;
}

.services-details__content-text4 .single-list-box ul li p span::before {
  position: relative;
  display: inline-block;
  color: #939393;
  font-size: 23px;
  top: 4px;
  padding-right: 7px;
}

.services-details__content-text5 {
  position: relative;
  display: block;
  margin-top: 41px;
}

.services-details__content-text5-single {
  position: relative;
  display: flex;
  align-items: center;
  background: #fcf8f8;
  padding: 30px 30px 30px;
}

.services-details__content-text5-single .icon-box {
  position: relative;
  display: block;
}

.services-details__content-text5-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 60px;
}

.services-details__content-text5-single .title-box {
  position: relative;
  display: block;
  margin-left: 16px;
}

.services-details__content-text5-single .title-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.services-details__content-text5-single .title-box h2 a {
  color: var(--uterpy-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__content-text5-single .title-box h2 a:hover {
  color: var(--uterpy-base);
}


.services-details__faq {
  position: relative;
  display: block;
  margin-top: 50px;
}

.services-details__faq .accrodion {
  position: relative;
  display: block;
  border-radius: 0;
}

.services-details__faq .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 20px 16px 65px;
  background-color: #ffffff;
  border: 1px solid var(--uterpy-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__faq .accrodion-title h4 {
  position: relative;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--uterpy-black);
  font-family: var(--uterpy-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__faq .accrodion+.accrodion {
  margin-top: 10px;
}

.services-details__faq .accrodion.active .accrodion-title {
  background-color: #fcf8f8;
}

.services-details__faq .accrodion.active .accrodion-title h4 {
  color: var(--uterpy-black);
}

.services-details__faq .accrodion-title h4::before {
  content: "\e935";
  font-family: 'icomoon' !important;
  font-weight: normal;
  font-size: 15px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: -45px;
  width: 30px;
  height: 30px;
  background: #d1c5c4;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.services-details__faq .accrodion.active .accrodion-title h4::before {
  content: "\e92f";
  color: #ffffff;
  background: var(--uterpy-base);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-details__faq .accrodion-content {
  position: relative;
  padding: 25px 20px 25px;
  padding-right: 30px;
  background: #fcf8f8;
  border: 1px solid var(--uterpy-black);
  border-top: 0;
}

.services-details__faq .accrodion-content p {
  margin: 0;
}


/***
=====================================================
Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

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

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

.sidebar__single .title-box {
  position: relative;
  display: block;
  padding-left: 25px;
  margin-bottom: 35px;
}

.sidebar__single .title-box::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--uterpy-base);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  content: "";
}

.sidebar__single .title-box h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.sidebar__services {
  position: relative;
  display: block;
  border: 1px solid #f2ecea;
  padding: 38px 30px 45px;
}

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

.sidebar__services-box-list {
  position: relative;
  display: block;
}

.sidebar__services-box-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.sidebar__services-box-list li:last-child {
  margin-bottom: 0;
}

.sidebar__services-box-list li a {
  position: relative;
  display: block;
  color: #433838;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  background: #f0eeee;
  padding: 13px 15px 13px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.sidebar__services-box-list li a:hover,
.sidebar__services-box-list li a.active {
  color: #ffffff;
}

.sidebar__services-box-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  transition: all 0.4s linear;
  background: #272323;
  opacity: 0;
  content: "";
  z-index: -1;
}

.sidebar__services-box-list li a:hover:before,
.sidebar__services-box-list li a.active:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__services-box-list li a::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--uterpy-base);
  height: 1px;
  opacity: 0;
  content: "";
  z-index: -1;
}

.sidebar__services-box-list li a:hover:after,
.sidebar__services-box-list li a.active:after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__services-box-list li a span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 17px;
  color: #292525;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__services-box-list li a:hover span,
.sidebar__services-box-list li a.active span {
  color: var(--uterpy-base);
}

.sidebar__brochures {
  position: relative;
  display: block;
  border: 1px solid #efeeee;
  padding: 38px 30px 45px;
}

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

.sidebar__brochures-box-list {
  position: relative;
  display: block;
}

.sidebar__brochures-box-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sidebar__brochures-box-list li:last-child {
  margin-bottom: 0;
}

.sidebar__brochures-box-list li a {
  position: relative;
  display: block;
  background: #efeeee;
  padding: 13px 15px 11px;
  color: #433838;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  z-index: 1;
}

.sidebar__brochures-box-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  transition: all 0.4s linear;
  background: #272323;
  border: 1px solid #d0807a;
  opacity: 0;
  content: "";
  z-index: -1;
}

.sidebar__brochures-box-list li a:hover:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__brochures-box-list li a i {
  position: relative;
  display: inline-block;
  padding-left: 3px;
  font-size: 14px;
  font-style: normal;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__brochures-box-list li a:hover i {
  color: var(--uterpy-base);
}

.sidebar__brochures-box-list li a span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__brochures-box-list li a span:before {
  position: relative;
  display: inline-block;
  float: right;
  color: #4d4343;
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__brochures-box-list li a:hover span:before {
  color: var(--uterpy-base);
}

.sidebar__brochures-box-list li a:hover {
  color: #ffffff;
}

.sidebar__contact {
  position: relative;
  display: block;
  padding: 40px 10px 67px;
  z-index: 1;
}

.sidebar__contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #514544;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.sidebar__contact .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  background: var(--uterpy-base);
  border-radius: 50%;
  margin: 0 auto 22px;
}

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

.sidebar__contact .title {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.sidebar__contact .title h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--uterpy-font);
}

.sidebar__contact .text-box {
  position: relative;
  display: block;
}

.sidebar__contact .text-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
}

.sidebar__contact .text-box h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--uterpy-font);
}

.sidebar__contact .text-box h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__contact .text-box h2 a:hover {
  color: var(--uterpy-base);
}

.sidebar__project {
  position: relative;
  display: block;
  border: 1px solid #efeeee;
  padding: 38px 30px 40px;
}

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

.sidebar__project-box-list {
  position: relative;
  display: block;
}

.sidebar__project-box-list li {
  position: relative;
  display: block;
  border-top: 1px solid #e3e3e3;
  padding-top: 23px;
  padding-bottom: 29px;
}

.sidebar__project-box-list li:last-child {
  padding-bottom: 0;
}

.sidebar__project-box-list li .inner {
  position: relative;
  display: block;
  padding-left: 50px;
}

.sidebar__project-box-list li .inner .icon-box {
  position: absolute;
  top: 7px;
  left: 0;
}

.sidebar__project-box-list li .inner .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 45px;
}

.sidebar__project-box-list li .inner .icon-box.style2 span::before {
  font-size: 35px;
}

.sidebar__project-box-list li .inner .icon-box.rotate span::before {
  transform: rotate(90deg);
  top: -2px;
}

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

.sidebar__project-box-list li .inner .text-box p {
  color: rgba(67, 56, 56, 0.7);
  line-height: 26px;
}

.sidebar__project-box-list li .inner .text-box h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
}


.sidebar__search {
  position: relative;
  display: block;
  border: 1px solid #efeeee;
  padding: 38px 30px 45px;
}

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

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #f4f4f4;
  color: rgba(31, 29, 29, 0.80);
  font-size: 14px;
  font-weight: 400;
  padding-left: 15px;
  height: 50px;
  width: 100%;
  padding-right: 70px;
  border-radius: 0;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: rgba(31, 29, 29, 0.80);
}

.sidebar__search-form :-ms-input-placeholder {
  color: rgba(31, 29, 29, 0.80);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: rgba(31, 29, 29, 0.80);
}

.sidebar__search-form ::placeholder {
  color: rgba(31, 29, 29, 0.80);
}

.sidebar__search-form :-ms-input-placeholder {
  color: rgba(31, 29, 29, 0.80);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: rgba(31, 29, 29, 0.80);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--uterpy-base);
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  outline: none;
  border: none;
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
  background-color: var(--uterpy-black);
}

.sidebar__category {
  position: relative;
  display: block;
  border: 1px solid #efeeee;
  padding: 38px 30px 45px;
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

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

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: #433838;
  background-color: #efeeee;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  padding: 10px 15px 10px;
  z-index: 1;
}

.sidebar__category-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  transition: all 0.4s linear;
  background: #272323;
  opacity: 0;
  content: "";
  z-index: -1;
}

.sidebar__category-list li a:hover:before,
.sidebar__category-list li.active a:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__category-list li a::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--uterpy-base);
  height: 1px;
  opacity: 0;
  content: "";
  z-index: -1;
}

.sidebar__category-list li a:hover:after,
.sidebar__category-list li.active a:after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__category-list li a:hover {
  color: #ffffff;
}

.sidebar__category-list li.active a {
  color: #ffffff;
}

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

.sidebar__category-list li a:hover span {
  color: #ffffff;
}

.sidebar__category-list li.active a span {
  color: #ffffff;
}

.sidebar__post {
  position: relative;
  display: block;
  border: 1px solid #efeeee;
  padding: 38px 30px 45px;
}

.sidebar__post-list {
  position: relative;
  display: block;
  margin: 0;
}

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

.sidebar__post-list li+li {
  border-top: 1px solid #e9e8e8;
  margin-top: 30px;
  padding-top: 30px;
}

.sidebar__post-image {
  position: relative;
  display: block;
  margin-right: 20px;
}

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

.sidebar__post-content {
  position: relative;
  display: block;
  line-height: 0;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--uterpy-font);
  margin-bottom: 13px;
}

.sidebar__post-content h3 a {
  color: var(--uterpy-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li .sidebar__post-content h3 a:hover {
  color: var(--uterpy-base);
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--uterpy-black-rgb), 0.8);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--uterpy-font);
}

.sidebar__post-content-meta i {
  position: relative;
  display: inline-block;
  color: rgba(var(--uterpy-black-rgb), 0.8);
  font-size: 17px;
  padding-right: 1px;
  top: 2px;
}


.sidebar__tags {
  position: relative;
  display: block;
  border: 1px solid #efeeee;
  padding: 38px 30px 45px;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 14px;
  color: var(--uterpy-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: inline-block;
  padding: 1px 11px 1px;
  border: 1px solid #eae1e1;
  margin-left: 5px;
  font-weight: 400;
  line-height: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.sidebar__tags-list a:hover {
  color: var(--uterpy-base);
  border-color: var(--uterpy-base);
}

/***
=====================================================
Team One Team
=====================================================
***/
.team-one--team {
  position: relative;
  display: block;
}

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


/***
=====================================================
Case One Case
=====================================================
***/
.case-one--case {
  position: relative;
  display: block;
  padding-bottom: 90px;
}

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

/***
=====================================================
Cases Two Cases Two
=====================================================
***/
.cases-two--cases-two {
  position: relative;
  display: block;
  padding-bottom: 90px;
}

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

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

/***
=====================================================
Case Details
=====================================================
***/
.case-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.case-details__content {
  position: relative;
  display: block;
}

.case-details__content-text1 {
  position: relative;
  display: block;
}

.case-details__content-text1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 40px;
}

.case-details__content-text1 .img-box img {
  width: 100%;
}

.case-details__content-text1 h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 26px;
}

.case-details__content-text1 .text1 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 31px;
}

.case-details__content-text1 .text2 {
  font-size: 18px;
  margin: 0;
}

.case-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 44px;
}

.case-details__content-text2 h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.case-details__content-text2 p {
  font-size: 18px;
  margin: 0;
}

.case-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 55px;
}

.case-details__content-text3-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.case-details__content-text3-img img {
  width: 100%;
}

.case-details__content-text3-content {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-left: 10px;
}

.case-details__content-text3-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.case-details__content-text3-content p {
  font-size: 18px;
  margin: 0;
}

.case-details__content-text3-content-list {
  position: relative;
  display: block;
  margin-top: 22px;
}

.case-details__content-text3-content-list li {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.case-details__content-text3-content-list li:last-child {
  margin-bottom: 0;
}

.case-details__content-text3-content-list li p {
  position: relative;
  color: rgba(67, 56, 56, 0.8);
  line-height: 30px;
  padding-left: 24px;
}

.case-details__content-text3-content-list li p::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--uterpy-base);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  content: "";
}

.case-details__content-text4 {
  position: relative;
  display: block;
  margin-top: 65px;
}

.case-details__content-text4-top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.case-details__content-text4-top .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--uterpy-black);
}

.case-details__content-text4-top .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
}

.case-details__content-text4-top .title-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.case-details__content-text4-top .title-box h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}

.case-details__content-text4-top p {
  font-size: 18px;
  margin: 0;
}

.case-details__content-text5 {
  position: relative;
  display: block;
  background: #f7f5f5;
  padding: 31px 35px 30px;
  margin-top: 35px;
}

.case-details__content-text5::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: var(--uterpy-base);
  content: "";
}

.case-details__content-text5 p {
  color: var(--uterpy-base);
  font-size: 18px;
}

.case-details__content-text6 {
  position: relative;
  display: block;
  margin-top: 43px;
}

.case-details__content-text6 .left-content {
  position: relative;
  display: block;
  max-width: 320px;
  width: 100%;
}

.case-details__content-text6 .left-content h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.case-details__content-text6 .left-content p {
  font-size: 18px;
  margin: 0;
}


.case-details__content-text6 .right-content {
  position: relative;
  display: block;
}

.case-details__content-text6 .right-content ul {
  position: relative;
  display: block;
}

.case-details__content-text6 .right-content ul li {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.case-details__content-text6 .right-content ul li:last-child {
  margin-bottom: 0;
}

.case-details__content-text6 .right-content ul li p {
  position: relative;
  color: rgba(67, 56, 56, 0.8);
  line-height: 30px;
  padding-left: 24px;
}

.case-details__content-text6 .right-content ul li p::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--uterpy-base);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  content: "";
}

.services-details__faq-case-details {
  margin-top: 47px;
}


/***
=====================================================
Blog List Page
=====================================================
***/
.blog-list-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-list-page__content {
  position: relative;
  display: block;
}

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

.blog-list-page__single-img {
  position: relative;
  display: block;
  background: #000000;
  overflow: hidden;
}

.blog-list-page__single-img img {
  width: 100%;
  transition: all 500ms ease;
}

.blog-list-page__single:hover .blog-list-page__single-img img {
  opacity: 0.5;
  transform: scaleX(1.05);
}

.blog-list-page__single-img .overlay-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  left: 30px;
  bottom: 15px;
  width: 95px;
  height: 25px;
  color: #ffffff;
  font-size: 14px;
  background: var(--uterpy-base);
}

.blog-list-page__single-content {
  position: relative;
  display: block;
  background: #f8f8f8;
  border: 1px solid #e3e3e3;
  padding: 39px 30px 40px;
  border-radius: 3px;
}

.blog-list-page__single-content .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 17px;
}

.blog-list-page__single-content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 25px;
  line-height: 0;
}

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

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

.blog-list-page__single-content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: #828181;
  font-size: 17px;
}

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

.blog-list-page__single-content .meta-box li .text p {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.blog-list-page__single-content .meta-box li .text p a {
  color: rgba(var(--uterpy-black-rgb), 0.88);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.blog-list-page__single-content h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
}

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

.blog-list-page__single-content h2 a:hover {
  color: var(--uterpy-base);
}

.blog-list-page__single-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.blog-list-page__single-content-left {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-list-page__single-content-left .btn-box {
  position: relative;
  display: block;
}

.blog-list-page__single-content-left .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  border: 1px solid #090909;
  padding: 0px 15px 0px;
}

.blog-list-page__single-content-left .btn-box a:hover {
  color: var(--uterpy-base);
  border-color: var(--uterpy-base);
}

.blog-list-page__single-content-left .btn-box a span::before {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: var(--uterpy-black);
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  margin-left: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-left .btn-box a:hover span::before {
  background: var(--uterpy-base);
}

.blog-list-page__single-content-left .text-box {
  position: relative;
  display: block;
  margin-left: 35px;
}

.blog-list-page__single-content-left .text-box p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-list-page__single-content-left .text-box p span::before {
  position: relative;
  display: inline-block;
  color: #848383;
  font-size: 17px;
  top: 2px;
  padding-right: 2px;
}

.blog-list-page__single-content-left .text-box p a {
  color: rgba(var(--uterpy-black-rgb), 0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-left .text-box p a:hover {
  color: var(--uterpy-base);
}

.blog-list-page__single-content-right {
  position: relative;
  display: block;
}

.blog-list-page__single-content-right .btn-box {
  position: relative;
  display: block;
}

.blog-list-page__single-content-right .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f0ecec;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-right .btn-box a:hover {
  background: var(--uterpy-base);
}

.blog-list-page__single-content-right .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-right .btn-box a:hover span::before {
  color: #ffffff;
}

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

.blog-details__content {
  position: relative;
  display: block;
}

.blog-details__content .blog-list-page__single-content .meta-box {
  margin-bottom: 0px;
}

.blog-details__content .blog-list-page__single-content {
  background: transparent;
  border: 0px solid #e3e3e3;
  padding: 25px 0px 2px;
  border-radius: 0px;
}

.blog-list-page__single-content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.blog-list-page__single-content-top .btn-box {
  position: relative;
  display: block;
}

.blog-list-page__single-content-top .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f0ecec;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-top .btn-box a:hover {
  background: var(--uterpy-base);
}

.blog-list-page__single-content-top .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-top .btn-box a:hover span::before {
  color: #ffffff;
}

.blog-details__content-text1 {
  position: relative;
  display: block;
}

.blog-details__content-text1 .text1 {
  margin: 0;
}

.blog-details__content-text1 h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 13px;
}

.blog-details__content-text1 .text2 {
  margin: 0;
}

.blog-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 31px;
}

.blog-details__content-text2-list {
  position: relative;
  display: block;
}

.blog-details__content-text2-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.blog-details__content-text2-list li:last-child {
  margin-bottom: 0;
}

.blog-details__content-text2-list li p {
  position: relative;
  margin: 0;
  padding-left: 30px;
}

.blog-details__content-text2-list li p::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--uterpy-base);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  content: "";
}

.blog-details__content-text3 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 35px 30px;
  padding-right: 25px;
  margin-top: 40px;
  z-index: 1;
}

.blog-details__content-text3::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #eedfdf;
  content: "";
  z-index: -1;
}

.blog-details__content-text3::before {
  position: absolute;
  top: -10px;
  left: 10px;
  bottom: -10px;
  right: 100px;
  border: 1px solid #000000;
  content: "";
  z-index: -2;
}

.blog-details__content-text3 .text-box {
  position: relative;
  display: block;
}

.blog-details__content-text3 .text-box h2 {
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
}

.blog-details__content-text3 .icon-box {
  position: relative;
  display: block;
}

.blog-details__content-text3 .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 70px;
}

.blog-details__content-text4 {
  position: relative;
  display: block;
  margin-top: 35px;
}

.blog-details__content-text4 .text1 {
  margin: 0;
  margin-bottom: 40px;
}

.blog-details__content-text4 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-details__content-text4 .img-box img {
  width: 100%;
}

.blog-details__content-text4 .text2 {
  margin: 0;
  margin-bottom: 15px;
}

.blog-details__content-text4 .text3 {
  margin: 0;
}

.blog-details__content-text5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f5f5f5;
  padding: 25px 30px 25px;
  margin-top: 60px;
}

.blog-details__content-text5 .posted-box {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__content-text5 .posted-box .title-box {
  position: relative;
  display: block;
}

.blog-details__content-text5 .posted-box .title-box p {
  color: var(--uterpy-black);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.blog-details__content-text5 .posted-box .posted-box-list {
  position: relative;
  display: block;
  margin-left: 15px;
}

.blog-details__content-text5 .posted-box .posted-box-list li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.blog-details__content-text5 .posted-box .posted-box-list li:last-child {
  margin-right: 0;
}

.blog-details__content-text5 .posted-box .posted-box-list li a {
  position: relative;
  display: block;
  background: #262222;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 3px 15px 3px;
  border: 1px solid #eae1e1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text5 .posted-box .posted-box-list li a:hover {
  background: var(--uterpy-base);
  border-color: var(--uterpy-base);
}

.blog-details__content-text5 .tag-box {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__content-text5 .tag-box .title-box {
  position: relative;
  display: block;
}

.blog-details__content-text5 .tag-box .title-box p {
  color: var(--uterpy-black);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.blog-details__content-text5 .tag-box .tag-box-list {
  position: relative;
  display: block;
  margin-left: 15px;
}

.blog-details__content-text5 .tag-box .tag-box-list li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.blog-details__content-text5 .tag-box .tag-box-list li:last-child {
  margin-right: 0;
}

.blog-details__content-text5 .tag-box .tag-box-list li a {
  position: relative;
  display: block;
  color: var(--uterpy-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  border: 1px solid #eae1e1;
  padding: 3px 15px 3px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text5 .tag-box .tag-box-list li a:hover {
  color: var(--uterpy-base);
  border-color: var(--uterpy-base);
}

.blog-details__author {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 48px;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 35px;
}

.blog-details__author .img-box {
  position: relative;
  display: block;
  max-width: 150px;
  width: 100%;
}

.blog-details__author .img-box img {
  width: 100%;
}


.blog-details__author .content-box {
  position: relative;
  display: block;
  margin-left: 40px;
}

.blog-details__author .content-box h2 {
  font-size: 21px;
  line-height: 31px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-details__author .content-box p {
  color: var(--uterpy-black);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

.blog-details__author .content-box .social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.blog-details__author .content-box .social-links .title-box {
  position: relative;
  display: block;
  margin-right: 15px;
}

.blog-details__author .content-box .social-links .title-box p {
  color: var(--uterpy-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.blog-details__author .content-box .social-links ul {
  position: relative;
  display: block;
}

.blog-details__author .content-box .social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.blog-details__author .content-box .social-links ul li:last-child {
  margin-right: 0;
}

.blog-details__author .content-box .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f0ecec;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__author .content-box .social-links ul li a:hover {
  background: var(--uterpy-base);
}

.blog-details__author .content-box .social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: #433838;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__author .content-box .social-links ul li a:hover span::before {
  color: #ffffff;
}


.comment-one {
  position: relative;
  display: block;
  margin-top: 50px;
}

.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--uterpy-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.comment-one__single.ml65 {
  margin-left: 65px;
}

.comment-one__image {
  position: relative;
  display: block;
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 50%;
}

.comment-one__image img {
  width: 100%;
}

.comment-one__content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
  margin-top: -7px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--uterpy-black);
  margin-bottom: 14px;
}

.comment-one__content .text1 {
  position: relative;
  color: rgba(9, 8, 8, 0.7);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

.comment-one__content .text1 .comment-one__btn {
  position: relative;
  display: inline-block;
  color: #090808;
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  background: #efeeee;
  padding: 1px 15px 1px;
  margin-left: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-one__content .text1 .comment-one__btn:hover {
  background: var(--uterpy-base);
  color: #ffffff;
}

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

.comment-form {
  position: relative;
  display: block;
  padding-top: 7px;
}

.comment-form .comment-form__title {
  margin-bottom: 23px;
}

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

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 70px;
  width: 100%;
  border: 1px solid #e3e3e3;
  background-color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 15px;
  color: rgba(67, 56, 56, 0.6);
  display: block;
  border-radius: 0px;
  font-family: var(--uterpy-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-form__input-box textarea {
  font-size: 15px;
  color: rgba(67, 56, 56, 0.6);
  height: 220px;
  width: 100%;
  background-color: #ffffff;
  padding: 25px 20px 30px;
  border: 1px solid #e3e3e3;
  outline: none;
  margin-bottom: 0px;
  border-radius: 0px;
  resize: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-form__input-box input[type="text"]:focus {
  border-color: #090808;
}

.comment-form__input-box input[type="email"]:focus {
  border-color: #090808;
}

.comment-form__input-box textarea:focus {
  border-color: #090808;
}

.comment-form__input-box.text-message-box {
  margin-bottom: 10px;
}

.comment-form__btn.thm-btn {
  border: none;
  font-size: 16px;
  color: #ffffff;
  background-color: var(--uterpy-black);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-form__btn.thm-btn::before {
  background-color: var(--uterpy-base);
}


/*** 
=============================================
    Google Map
=============================================
***/
.google-map {
  position: relative;
  display: block;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 605px;
  width: 100%;
}

/***
=====================================================
Contact Page
=====================================================
***/
.contact-page {
  position: relative;
  display: block;
  padding: 110px 0px 120px;
}

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

.contact-page__top .title {
  position: relative;
  display: block;
  margin-bottom: 66px;
}

.contact-page__top .title h2 {
  color: var(--uterpy-black);
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  margin-bottom: 34px;
}

.contact-page__top .title p {
  font-size: 18px;
  line-height: 30px;
}

.contact-page__top ul {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff8f8;
  padding: 61px 70px 60px;
}

.contact-page__top-single {
  position: relative;
  display: block;
  padding-left: 115px;
  margin-left: 100px;
}

.contact-page__top-single:first-child {
  margin-left: 0px;
}

.contact-page__top-single .icon {
  position: absolute;
  top: 9px;
  left: 0;
  height: 85px;
  width: 85px;
  background-color: #262222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  border: 2px solid var(--uterpy-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.contact-page__top-single .content {
  position: relative;
  display: block;
}

.contact-page__top-single .content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 14px;
}

.contact-page__top-single .content p {
  color: var(--uterpy-black);
  font-size: 16px;
  line-height: 28px;
}

.contact-page__top-single .content p a {
  color: var(--uterpy-black);
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__top-single .content p a:hover {
  color: var(--uterpy-base);
}

.contact-page__bottom {
  position: relative;
  display: block;
  padding: 6px 0px 70px;
  z-index: 1;
}

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

.contact-page__bottom-inner {
  position: relative;
  display: block;
  max-width: 870px;
  width: 100%;
  margin: 0 auto 0px;
}

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

.contact-page .contact-page__bottom form input[type="text"],
.contact-page .contact-page__bottom form input[type="email"] {
  color: rgba(48, 42, 39, 0.7);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  padding: 0 20px;
  margin-bottom: 30px;
  border-radius: 0px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page .contact-page__bottom form textarea {
  color: rgba(48, 42, 39, 0.7);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 185px;
  border: 1px solid #e4e4e4;
  background: #ffffff;
  padding: 20px 20px 30px;
  border-radius: 0px;
  margin-bottom: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page .contact-page__bottom form input[type="text"]:focus {
  color: var(--uterpy-black);
  border-color: #000108;
  background: #ffffff;
}

.contact-page .contact-page__bottom form input[type="email"]:focus {
  color: var(--uterpy-black);
  border-color: #000108;
  background: #ffffff;
}

.contact-page .contact-page__bottom form textarea:focus {
  color: var(--uterpy-black);
  border-color: #000108;
  background: #ffffff;
}

.contact-page .contact-page__bottom form input[type="text"]::-webkit-input-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form input[type="text"]:-moz-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form input[type="text"]::-moz-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form input[type="text"]:-ms-input-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form input[type="email"]::-webkit-input-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form input[type="email"]:-moz-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form input[type="email"]::-moz-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form input[type="email"]:-ms-input-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form textarea::-webkit-input-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form textarea:-moz-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form textarea::-moz-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page .contact-page__bottom form textarea:-ms-input-placeholder {
  color: rgba(48, 42, 39, 0.7);
}

.contact-page__bottom .contact-page__btn {
  position: relative;
  display: block;
}

.contact-page__bottom .contact-page__btn button {
  position: relative;
  display: block;
  outline: none;
  border: none;
  padding: 0;
  margin: 0 auto;
}

.contact-page__bottom .contact-page__btn button .thm-btn {
  background: var(--uterpy-black);
}

.contact-page__bottom .contact-page__btn button .thm-btn::before {
  background: var(--uterpy-base);
}

/***
=====================================================
Faq Page
=====================================================
***/
.faq-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.faq-page__left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.faq-page__left .title {
  position: relative;
  display: block;
  margin-top: -10px;
}

.faq-page__left .title h2 {
  color: var(--uterpy-black);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.services-details__faq--faq-page {
  position: relative;
  display: block;
  margin-top: 41px;
}

.services-details__faq--faq-page.services-details__faq .accrodion-title {
  background-color: #fcf8f8;
  border: 1px solid transparent;
  padding: 14px 20px 14px 65px;
}

.services-details__faq--faq-page.services-details__faq .accrodion-content {
  position: relative;
  padding: 18px 25px 18px;
  padding-right: 0px;
  background: #ffffff;
  border: 1px solid transparent;
  max-width: 615px;
  width: 100%;
}

.services-details__faq--faq-page.services-details__faq .accrodion.active .accrodion-title {
  border: 1px solid var(--uterpy-black);
}

.faq-page__right {
  position: relative;
  display: block;
  margin-left: 15px;
  z-index: 1;
}

.faq-page__form {
  position: relative;
  display: block;
  background-color: #fcf8f8;
  box-shadow: 0px 0px 26px 0px rgba(161, 161, 161, 0.35);
  padding: 41px 8px 50px 30px;
  border-radius: 5px;
  z-index: 1;
}

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

.faq-page__form .title-box h2 {
  color: var(--uterpy-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: none;
  font-family: var(--uterpy-font);
}

.faq-page__form .form-box {
  position: relative;
  margin-top: 26px;
  padding-right: 22px;
}

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

.faq-page__form .form-box form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.faq-page__form .form-box form .form-group input[type="text"],
.faq-page__form .form-box form .form-group input[type="email"],
.faq-page__form .form-box form .form-group input[type="tel"],
.faq-page__form .form-box form .form-group input[type="url"],
.faq-page__form .appointment-one__form .form-box form .form-group textarea,
.faq-page__form .form-box form .form-group select {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: rgba(67, 56, 56, 0.7);
  font-weight: 400;
  padding: 0px 20px 0px;
  width: 100%;
  height: 55px;
  background-color: #ffffff;
  outline: none;
  border: 1px solid transparent;
  font-family: var(--uterpy-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page__form .form-box form .form-group textarea {
  font-size: 14px;
  line-height: 24px;
  color: rgba(67, 56, 56, 0.7);
  font-weight: 400;
  height: 120px;
  background-color: #ffffff;
  resize: none;
  outline: none;
  border: 1px solid transparent;
  width: 100%;
  padding: 18px 20px 0px;
  font-family: var(--uterpy-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-page__form .form-box form input[type="text"]:focus {
  border-color: var(--uterpy-black);
}

.faq-page__form .form-box form input[type="email"]:focus {
  border-color: var(--uterpy-black);
}

.faq-page__form .form-box form textarea:focus {
  border-color: var(--uterpy-black);
}

.faq-page__form .form-box form .button-box {
  position: relative;
  display: block;
  margin-top: -5px;
}

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

.faq-page__form .form-box form .button-box button.thm-btn {
  background-color: var(--uterpy-base);
  position: relative;
  display: block;
  width: 100%;
  z-index: 5;
}

.faq-page__form .form-box form .button-box button.thm-btn::after {
  background: var(--uterpy-black);
}

.faq-page__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  background: #f7f5f5;
  margin-top: 120px;
  padding: 0px 60px 0px 0px;
}

.faq-page__bottom .email {
  position: relative;
  display: block;
}

.faq-page__bottom .email a {
  position: relative;
  display: inline-block;
  background: #262222;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 25px 25px 25px;
}

.faq-page__bottom .email a:hover {
  background: var(--uterpy-base);
}

.faq-page__bottom .text {
  position: relative;
  display: block;
}

.faq-page__bottom .text p {
  color: var(--uterpy-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-family: var(--uterpy-font);
}


/***
=====================================================
Error Page
=====================================================
***/
.error-page {
  position: relative;
  display: block;
  background: #fff2f1;
  padding: 0px 0px 120px;
  z-index: 1;
}

.error-page .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.error-page .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.error-page .shape3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.error-page .shape4 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
  z-index: 5;
}

.error-page__content-box {
  position: relative;
  display: block;
  margin-top: -9px;
}

.error-page__content-box h2 {
  color: var(--uterpy-black);
  font-size: 266px;
  line-height: 1.2em;
  font-weight: 900;
  margin-bottom: 0px;
}

.error-page__content-box h3 {
  color: var(--uterpy-black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.error-page__content-box p {
  font-size: 20px;
  font-weight: 500;
}

.error-page__search {
  position: relative;
  display: block;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  margin-top: 56px;
}

.error-page__search-form {
  position: relative;
  display: block;
}

.error-page__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: rgb(38, 34, 34, 0.7);
  font-size: 16px;
  font-weight: 400;
  padding-left: 25px;
  height: 75px;
  width: 100%;
  padding-right: 70px;
  border-radius: 0;
}

.error-page__search-form::-webkit-input-placeholder {
  color: rgb(38, 34, 34, 0.7);
}

.error-page__search-form::-ms-input-placeholder {
  color: rgb(38, 34, 34, 0.7);
}

.error-page__search-form::-ms-input-placeholder {
  color: rgb(38, 34, 34, 0.7);
}

.error-page__search-form::placeholder {
  color: rgb(38, 34, 34, 0.7);
}

.sidebar__search-form::-ms-input-placeholder {
  color: rgb(38, 34, 34, 0.7);
}

.sidebar__search-form::-ms-input-placeholder {
  color: rgb(38, 34, 34, 0.7);
}

.error-page__search-form button[type="submit"] {
  background-color: var(--uterpy-black);
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 55px;
  outline: none;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.error-page__search-form button:hover {
  background-color: var(--uterpy-base);
}

.error-page__btn {
  position: relative;
  display: block;
  margin-top: 40px;
}

/***
=====================================================
Shop Page
=====================================================
***/
.shop-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.shop-page__top {
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.shop-page__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  padding: 0px 30px 0px;
  border-radius: 25px;
}

.shop-page__top-left {
  position: relative;
  display: block;
}

.shop-page__top-left p {
  color: var(--uterpy-black);
}

.shop-page__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 300px;
  width: 100%;
}

.product__showing-sort .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  max-width: 300px;
  width: 100% !important;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 55px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: #f7f7f7 !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--uterpy-black) !important;
  font-size: 16px;
  line-height: 55px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 13px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--uterpy-black);
}

.product-view-style {
  position: relative;
  display: block;
  padding-left: 23px;
  margin-left: 7px;
  max-width: 80px;
  width: 100%;
}

.product-view-style::before {
  position: absolute;
  top: 3px;
  left: 0;
  bottom: 1px;
  width: 1px;
  background: #9e9c9a;
  content: "";
}

.product-view-style li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.product-view-style li:last-child {
  margin-right: 0;
}

.product-view-style li a {
  position: relative;
  display: block;
  border-radius: 0%;
  color: var(--uterpy-black);
  font-size: 17px;
  text-align: center;
  transition: all 300ms ease 100ms;
}

.product-view-style li a:hover {
  color: var(--uterpy-base);
}

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

.shop-page__single-img {
  position: relative;
  display: block;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  overflow: hidden;
  z-index: 1;
}

.shop-page__single-img::before {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.shop-page__single:hover .shop-page__single-img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.shop-page__single-img img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.shop-page__single:hover .shop-page__single-img img {
  transform: scale(1.1) rotate(1deg);
}

.shop-page__single-img .text {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  width: 55px;
  height: 25px;
  border-radius: 25px;
  background: var(--uterpy-base);
  z-index: 5;
}

.shop-page__single-content {
  position: relative;
  display: block;
}

.shop-page__single-content .btn-box {
  position: relative;
  display: block;
  z-index: 1;
}

.shop-page__single-content .btn-box a {
  position: relative;
  display: block;
  background: #fbf1f1;
  padding: 12px 10px 13px;
  color: var(--uterpy-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-page__single:hover .shop-page__single-content .btn-box a {
  color: #ffffff;
}

.shop-page__single-content .btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: var(--uterpy-base);
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.shop-page__single:hover .shop-page__single-content .btn-box a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.shop-page__single-content .bottom-text {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0px 0px 18px 0px rgba(229, 230, 232, 0.72);
  padding: 27px 25px 27px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.shop-page__single-content .bottom-text .text-box {
  position: relative;
  display: block;
}

.shop-page__single-content .bottom-text .text-box h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--uterpy-font);
}

.shop-page__single-content .bottom-text .text-box h4 a {
  color: var(--uterpy-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-page__single-content .bottom-text .text-box h4 a:hover {
  color: var(--uterpy-base);
}

.shop-page__single-content .bottom-text .text-box p {
  color: var(--uterpy-base);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.shop-page__single-content .bottom-text .text-box p .text {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  font-weight: 300;
  padding-left: 4px;
}

.shop-page__single-content .bottom-text .text-box p del {
  color: rgba(var(--thm-gray-rgb), 0.5);
  font-weight: 400;
  padding-left: 4px;
}

.shop-page__single-content .bottom-text .rating-box {
  position: relative;
  display: block;
}

.shop-page__single-content .bottom-text .rating-box ul li span {
  color: #ed8a19;
}

.shop-page .styled-pagination {
  padding-top: 30px;
}

.shop-page .styled-pagination li a {
  border-radius: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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


/***
=============================================
Shop Details
=============================================
***/
.shop-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 44px;
}

.shop-details__img-box {
  position: relative;
  display: block;
  margin-right: 35px;
}

.shop-details__img-box-inner {
  position: relative;
  display: block;
}

.shop-details__img-box-thumb {
  position: absolute;
  bottom: -42px;
  left: 0;
  right: 0;
  max-width: 400px;
  margin: 0 auto;
  z-index: 2;
}

.shop-details__img-box-thumb-img {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 2px solid #fff;
  overflow: hidden;
}

.shop-details__img-box-thumb-img img {
  width: 100%;
}

.shop-details__img-box-img {
  position: relative;
  display: block;
}

.shop-details__img-box-img .img-box {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}

.shop-details__img-box-img .img-box img {
  width: 100%;
}

.shop-details-top__nav {
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: 50%;
  bottom: 110px;
  z-index: 5;
  transform: translateY(0%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-details-top__nav .swiper-button-next,
.shop-details-top__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 5;
  width: 55px;
  height: 55px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: var(--uterpy-black);
  border-radius: 50%;
  font-weight: 700;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
}

.shop-details-top__nav .swiper-button-next {
  left: -10px;
}

.shop-details-top__nav .swiper-button-prev {
  right: -10px;
}

.shop-details-top__nav .swiper-button-next:hover,
.shop-details-top__nav .swiper-button-prev:hover {
  color: #ffffff;
  background: var(--uterpy-base);
}

.shop-details-top__nav .swiper-button-next::after,
.shop-details-top__nav .swiper-button-prev::after {
  display: none;
}

.shop-details-top__nav .swiper-button-next i:before,
.shop-details-top__nav .swiper-button-prev i:before {
  font-weight: 700;
}


.shop-details-top__nav .swiper-button-prev .angle-left {
  position: relative;
  transform: rotate(-90deg);
  right: 2px;
  font-weight: 700;
}

.shop-details-top__nav .swiper-button-next .angle-right {
  position: relative;
  transform: rotate(90deg);
  left: 0px;
  font-weight: 700;
}

.shop-details__content {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-top: -9px;
}

.shop-details__content .title {
  position: relative;
  display: block;
}

.shop-details__content .title h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  font-family: var(--uterpy-font);
}

.shop-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 16px;
}

.shop-details__content-text1 h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--uterpy-font);
}

.shop-details__content-text1 h3 del {
  position: relative;
  display: inline-block;
  color: rgba(9, 9, 9, 0.5);
  font-size: 14px;
  font-weight: 400;
  margin-left: 7px;
  top: -6px;
}

.shop-details__content-text1 h3 .text {
  color: #f42647;
  font-size: 14px;
  margin-left: 0;
}

.shop-details__content-text1 h3 span {
  position: relative;
  display: inline-block;
  color: var(--uterpy-base);
  font-size: 15px;
  font-weight: 400;
  top: -6px;
  margin-left: 13px;
}

.shop-details__content-text1 h3 .text2 {
  color: #3e8f75;
}


.shop-details__review {
  position: relative;
  display: block;
}

.shop-details__review ul {
  position: relative;
  display: block;
}

.shop-details__review ul li {
  position: relative;
  display: inline-block;
}

.shop-details__review ul li span::before {
  position: relative;
  display: inline-block;
  color: #efce4a;
  font-size: 15px;
}

.shop-details__review ul li p {
  color: var(--uterpy-black);
  font-size: 15px;
}

.shop-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 23px;
}

.shop-details__content-text2 p {
  margin: 0;
}

.shop-details__content-text2 ul {
  position: relative;
  display: block;
  margin-top: 20px;
}

.shop-details__content-text2 ul li {
  position: relative;
  display: block;
  margin-bottom: 1px;
}

.shop-details__content-text2 ul li:last-child {
  margin-bottom: 0;
}

.shop-details__content-text2 ul li p {
  margin: 0;
}

.shop-details__content-text2 ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 15px;
  font-weight: 700;
  padding-right: 14px;
  top: 1px;
}

.shop-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 20px;
}

.shop-details__content-text3 .title {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.shop-details__content-text3 .title p {
  color: var(--uterpy-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
}

.shop-details__content-text3 .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-details__content-text3 .add-to-cart-btn {
  position: relative;
  display: block;
  margin-right: 20px;
}

.shop-details__content-text3 .add-to-cart-btn a {
  position: relative;
  display: inline-block;
  color: #fefefe;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  background: var(--uterpy-black);
  padding: 18px 40px 19px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__content-text3 .add-to-cart-btn a:hover {
  background: var(--uterpy-base);
}

.shop-details__content-text3 .product-quantity {
  position: relative;
  display: block;
}

.shop-details__content-text3 .product-quantity-box {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 15px;
  padding-left: 1px;
}

.shop-details__content-text3 .product-quantity-box .input-group.bootstrap-touchspin {
  position: relative;
  width: 115px;
  height: 50px;
}

.shop-details__content-text3 .product-quantity-box input.quantity-spinner.form-control {
  position: relative;
  display: block;
  padding: 0;
  width: 30px;
  flex: none;
  height: 50px;
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  margin: 0 auto;
  text-align: center;
  border: none;
  font-family: var(--uterpy-font);
  z-index: 5;
  left: 11px;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 100%;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
  position: absolute;
  top: 14px;
  right: 23px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  border-left: none;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  border-right: none;
}

.shop-details__content-text3 .product-quantity-box .form-control {
  background: transparent;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
  position: absolute;
  top: 0px;
  left: 1px;
  right: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e951";
  color: var(--uterpy-black);
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(180deg);
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e951";
  color: var(--uterpy-black);
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 22px;
}


.shop-details__content-text3 .btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.shop-details__content-text3 .btn-box a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  background: var(--uterpy-base);
  padding: 10px 35px 11px;
  border-radius: 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__content-text3 .btn-box a:hover {
  color: #ffffff;
  background: var(--uterpy-black);
}

.shop-details__content-text3 .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f9f7f7;
  font-size: 20px;
  color: var(--uterpy-black);
  margin-left: 30px;
}

.shop-details__content-text3 .icon-box span:before {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

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

.shop-details__content-text4 ul {
  position: relative;
  display: block;
}

.shop-details__content-text4 ul li {
  position: relative;
  display: block;
}

.shop-details__content-text4 ul li .text {
  position: relative;
  display: block;
}

.shop-details__content-text4 ul li .text p {
  font-size: 15px;
}

.shop-details__content-text4 ul li .text p span {
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 600;
}

.shop-details__content-text4 ul li .text p i::before {
  position: relative;
  display: inline-block;
  color: var(--uterpy-black);
  font-size: 15px;
  font-weight: 700;
  padding-right: 5px;
}


.shop-details__content-social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.shop-details__content-social-links .title {
  position: relative;
  display: block;
  margin-right: 15px;
}

.shop-details__content-social-links .title h4 {
  color: rgba(var(--uterpy-black-rgb), 0.8);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--uterpy-font);
}

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

.shop-details__content-social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.shop-details__content-social-links ul li:last-child {
  margin-right: 0;
}

.shop-details__content-social-links ul li a {
  position: relative;
  display: block;
  color: var(--uterpy-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__content-social-links ul li a:hover {
  color: var(--uterpy-base);
}






/***
=============================================
Shop Details Tab
=============================================
***/

.shop-details__tab {
  position: relative;
  display: block;
  background: #f8f8f8;
  margin-top: 111px;
  border-radius: 10px;
}

.shop-details__tab-button {
  position: relative;
  display: block;
  text-align: center;
}

.shop-details__tab-button .tab-buttons {
  position: relative;
  display: block;
}

.shop-details__tab-button .tab-buttons li {
  position: relative;
  display: inline-block;
  background: #efeded;
  cursor: pointer;
  padding: 13px 45px 13px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-right: 2px;
}

.shop-details__tab-button .tab-buttons li:last-child {
  margin-right: 0;
}

.shop-details__tab-button .tab-buttons li:hover,
.shop-details__tab-button .tab-buttons li.active-btn {
  background: #262222;
}

.shop-details__tab-button .tab-buttons li h4 {
  color: var(--uterpy-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--uterpy-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__tab-button .tab-buttons li:hover h4,
.shop-details__tab-button .tab-buttons li.active-btn h4 {
  color: #ffffff;
}

.shop-details__tab-content-item {
  position: relative;
  display: block;
}

.shop-details__tab .tabs-content .tab {
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
  opacity: 1;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 1;
}

.shop-details__tab .tabs-content .tab.active-tab {
  position: relative;
  display: block;
  opacity: 1.0;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 5;
}

.shop-details__tab-description {
  position: relative;
  display: block;
  padding: 36px 45px 55px;
}

.shop-details__tab-description .text-box1 {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.shop-details__tab-description .text-box1 p {
  margin: 0;
}

.shop-details__tab-description .text-box2 {
  position: relative;
  display: block;
}

.shop-details__tab-description .text-box2 p {
  margin: 0;
}

.shop-details__tab-specifications {
  position: relative;
  display: block;
  padding: 36px 45px 55px;
}

.shop-details__tab-specifications .text-box1 {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.shop-details__tab-specifications .text-box1 p {
  margin: 0px;
}

.shop-details__tab-specifications .text-box2 {
  position: relative;
  display: block;
}

.shop-details__tab-specifications .text-box2 p {
  margin: 0;
}

.shop-details__tab-content-item.style2 {
  position: relative;
  display: block;
  padding: 50px 40px 50px;
}

.shop-details__tab-reviews {
  position: relative;
  display: block;
}

.review-box-outer {
  position: relative;
  display: block;
}

.single-review-box-outer {
  position: relative;
  display: block;
  background: #f5f5f5;
  padding: 38px 30px 34px;
}

.single-review-box {
  position: relative;
  display: block;
  padding-left: 70px;
  min-height: 70px;
}

.single-review-box .img-box {
  position: absolute;
  top: 9px;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.single-review-box .img-box img {
  width: 100%;
  border-radius: 50%;
}

.single-review-box .text-box {
  position: relative;
  display: block;
  padding-left: 25px;
}

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

.single-review-box .text-box .review-box ul {
  position: relative;
  display: block;
}

.single-review-box .text-box .review-box ul li {
  position: relative;
  display: inline-block;
}

.single-review-box .text-box .review-box ul li i:before {
  position: relative;
  display: inline-block;
  color: #efce4a;
  font-size: 15px;
}

.single-review-box .text-box .review-box {
  padding: 0 0 10px;
}

.single-review-box .text-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}

.single-review-box .text-box h5 span {
  color: #757575;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--uterpy-font);
}

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


.review-form {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 53px 60px 60px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
  margin-top: 60px;
}

.review-form .title-box {
  position: relative;
  display: block;
  padding-bottom: 24px;
}

.review-form .title-box h2 {
  font-size: 30px;
  font-weight: 600;
}


.review-form .add-rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.review-form .add-rating-box .add-rating-title {
  position: relative;
  float: left;
}

.review-form .add-rating-box .add-rating-title p {
  line-height: 20px;
  margin: 0;
}

.review-form .add-rating-box .review-box {
  position: relative;
  float: left;
  padding-left: 20px;
}

.review-form .add-rating-box .review-box ul li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 20px;
  margin-right: 5px;
}

.review-form .add-rating-box .review-box ul li:last-child {
  margin-right: 0px;
}

.review-form .add-rating-box .review-box ul li i {
  color: #efce4a;
  font-size: 14px;
  line-height: 20px;
  transition: all 500ms ease 0s;
}


.shop-details__tab-reviews .review-form .input-box {
  position: relative;
  display: block;
}

.shop-details__tab-reviews .review-form .input-box .field-label {
  position: relative;
  display: block;
  padding-bottom: 9px;
  color: #757575;
}

.shop-details__tab-reviews .review-form form input[type="text"],
.shop-details__tab-reviews .review-form form input[type="email"],
.shop-details__tab-reviews .review-form form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #e5e5e5;
  color: #757575;
  font-size: 16px;
  padding: 0 20px;
  margin-bottom: 22px;
  border-radius: 0px;
  transition: all 500ms ease;
  outline: none;
}

.shop-details__tab-reviews .review-form form textarea {
  height: 120px;
  padding: 10px 20px;
}

.shop-details__tab-reviews .review-form form input[type="text"]:focus {
  border-color: #e1dddd;
}

.shop-details__tab-reviews .review-form form input[type="email"]:focus {
  border-color: #e1dddd;
}

.shop-details__tab-reviews .review-form form textarea:focus {
  border-color: #e1dddd;
}


.shop-details__tab-reviews .review-form .button-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 35px;
}

.shop-details__tab-reviews .review-form .button-box .left {
  position: relative;
  display: block;
}

.shop-details__tab-reviews .review-form .button-box .right {
  position: relative;
  display: block;
  padding-left: 20px;
}

/***
=============================================
Checked Box2
=============================================
***/
.checked-box2 {
  position: relative;
  display: block;
  min-height: 30px;
}

.checked-box2 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #757575;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  min-height: 30px;
  font-family: var(--uterpy-font);
}

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

.checked-box2 input[type="checkbox"]+label span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #d6d3d0;
  cursor: pointer;
  border-radius: 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;
}

.checked-box2 label span:before {
  font-family: 'icomoon' !important;
  content: "\e913";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: 0px;
  color: var(--uterpy-base);
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

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

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

/***
=============================================
Shop Page Shop Details
=============================================
***/
.shop-page--shop-details {
  position: relative;
  display: block;
  padding: 0px 0px 90px;
}

.shop-page--shop-details .title-box {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.shop-page--shop-details .title-box h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
}


/***
=====================================================
Cart Page
=====================================================
***/
.cart-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 115px 0px 120px;
}

.cart-page__left {
  position: relative;
  display: block;
  margin-right: -30px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 800px;
  }
}

.cart-table {
  margin-bottom: 24px;
}

.cart-table thead th {
  color: var(--uterpy-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding: 0;
  border: none;
  padding-bottom: 7px;
  font-family: var(--uterpy-font);
  text-transform: capitalize;
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid #eaeaea;
}

.cart-table tbody td {
  font-size: 16px;
  font-weight: 600;
  color: var(--uterpy-black);
  vertical-align: middle;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 85px;
  margin-right: 35px;
}

.cart-table .product-box .img-box .inner {
  position: relative;
  display: block;
  width: 85px;
  border-radius: 3px;
  overflow: hidden;
}

.cart-table .product-box .img-box img {
  width: 100%;
}

.product-box-croos-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
  height: 25px;
  width: 25px;
  background-color: #f42647;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  z-index: 2;
}

.cart-table h3 {
  color: var(--uterpy-black);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  margin: 0;
  text-transform: none;
  font-family: var(--uterpy-font);
}

.cart-table h3 a {
  color: var(--uterpy-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--uterpy-base);
}

.cart-cupon__form-box {
  position: relative;
  display: block;
}

.cart-cupon__sub-title {
  font-size: 18px;
  color: var(--uterpy-black);
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 16px;
}

.cart-cupon__form {
  position: relative;
  display: block;
}

.cart-cupon__input {
  width: 100%;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 210px;
  font-family: var(--uterpy-font);
  font-size: 15px;
  color: rgba(38, 34, 34, .50);
  height: 60px;
  border: 1px solid #dddddd;
  outline: none;
  font-weight: 400;
  margin-bottom: 23px;
  outline: none;
}

.cart-cupon__form input[type="text"]:focus {
  border: 1px solid #dddddd;
}

.cart-cupon__form ::placeholder {
  color: rgba(38, 34, 34, .50);
}

.cart-cupon__form button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none !important;
  background-color: var(--uterpy-black);
  color: #ffffff;
  padding: 0px 60px 0px;
  font-size: 16px;
  line-height: 60px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 0;
  font-family: var(--uterpy-font);
}

.cart-cupon__form button:hover {
  color: #ffffff;
}

.cart-cupon__form button.thm-btn::before {
  background: var(--uterpy-base);
}

.cart-cupon__btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--uterpy-black);
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cart-cupon__btn:hover {
  color: var(--uterpy-base);
}

.cart-cupon__btn:before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--uterpy-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-cupon__btn:hover:before {
  background: var(--uterpy-base);
}

.cart-page__right {
  position: relative;
  display: block;
  margin-left: 40px;
  margin-top: 5px;
}

.cart-page__total-box {
  position: relative;
  display: block;
}

.cart-page__total-table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
  background-color: #f8f8f8;
  padding-bottom: 25px;
}

.cart-page__total-table {
  min-width: 330px;
  width: 100%;
}

.cart-page__total-table tbody {
  position: relative;
}

.cart-page__total-table tbody tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0px;
  border-bottom: 1px solid #e4e2e0;
  margin-left: 20px;
  margin-right: 20px;
}

.cart-page__total-table tbody tr:first-child {
  background-color: #f9eded;
  padding: 13px 20px;
  border-bottom: 0;
  margin: 0;
}

.cart-page__total-table tbody tr:last-child {
  border-bottom: 0;
}

.cart-page__total-table tbody tr td {
  font-size: 18px;
  font-weight: 600;
  color: var(--uterpy-black);
}

.cart-page__total-table tbody tr td .flat-rate {
  color: #090909;
  font-size: 16px;
  line-height: 20px;
}

.cart-page__total-table tbody tr td .shipping-usa {
  font-size: 14px;
  color: rgba(9, 9, 9, 0.7);
  line-height: 20px;
}

.cart-page__total-table tbody tr td .change-address {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--uterpy-base);
  line-height: 14px;
}

.cart-page__total-table tbody tr td .change-address a {
  color: var(--uterpy-base);
}

.cart-page__total-table tbody tr td .change-address:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--uterpy-base);
}

.proceed-checkout {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--uterpy-base);
  border: none;
  outline: none;
  padding: 9px 0;
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.proceed-checkout:hover {
  background-color: var(--uterpy-black);
  color: #ffffff;
}

.cart-page .product-quantity {
  position: relative;
  display: block;
  max-width: 152px;
  border-radius: 0px;
  margin-right: 20px;
}

.cart-page .product-quantity-box {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 0px;
  overflow: hidden;
  padding-left: 1px;
}

.cart-page .product-quantity-box .input-group.bootstrap-touchspin {
  position: relative;
  width: 150px;
  height: 60px;
}

.cart-page .product-quantity-box input.quantity-spinner.form-control {
  position: relative;
  display: block;
  padding: 0;
  width: 50px;
  flex: none;
  height: 60px;
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  margin: 0 auto;
  text-align: center;
  border: none;
  font-family: var(--uterpy-font);
  z-index: 5;
  left: 50px;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 100%;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
  position: relative;
  display: block;
  margin-left: 0px;
  background: #f7f7f7;
  color: var(--uterpy-black);
  cursor: pointer;
  height: 60px;
  width: 50px;
  margin: 0;
  padding: 0;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  float: right;
  border-left: none;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  float: left;
  border-right: none;
}

.cart-page .product-quantity-box .form-control {
  background: #f7f7f7;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
  position: absolute;
  top: 11px;
  left: 0px;
  right: 10px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e951";
  color: var(--uterpy-black);
  font-size: 15px;
  padding: 0;
  line-height: 60px;
  width: 35px;
  height: 35px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(180deg);
  font-weight: 700;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e951";
  color: var(--uterpy-black);
  font-size: 15px;
  padding: 0;
  line-height: 60px;
  width: 35px;
  height: 35px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

/*** 
=============================================
    Checkout Area Css
=============================================
***/
.checkout-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.checkout-area .form .title {
  position: relative;
  display: block;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 8px;
  margin-bottom: 25px;
}

.checkout-area .form .title h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--uterpy-font);
}

.checkout-area .form form .field-label {
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px;
  text-transform: none;
}

.checkout-area form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.checkout-area .form form .field-input input[type="text"],
.checkout-area .form form .field-input input[type="email"],
.checkout-area .form form .field-input input[type="tel"] {
  position: relative;
  display: block;
  border: 1px solid #e0e0e0;
  color: rgba(9, 9, 9, 0.5);
  font-size: 15px;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
  border-radius: 0px;
  width: 100%;
  outline: none;
  transition: all 500ms ease;
}

.checkout-area .form form .field-input textarea {
  position: relative;
  display: block;
  border: 1px solid #e0e0e0;
  color: rgba(9, 9, 9, 0.5);
  font-size: 15px;
  font-weight: 400;
  height: 120px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 20px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  outline: none;
}

.checkout__select-box {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.checkout__select-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100% !important;
}

.checkout__select-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.checkout__select-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  background-color: #ffffff !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: rgba(9, 9, 9, 0.5) !important;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  line-height: 60px;
}

.checkout__select-box .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 25px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--uterpy-black);
}

.checkout-area__checkbox {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.checkout-area__checkbox-single+.checkout-area__checkbox-single {
  margin-top: 0px;
}

.checkout-area__checkbox-single label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: rgba(9, 9, 9, 0.87);
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
  cursor: pointer;
}

.checkout-area__checkbox-single input[type="checkbox"] {
  display: none;
}

.checkout-area__checkbox-single input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  border: 1px solid #d6d3d0;
  cursor: pointer;
  border-radius: 0%;
  transition: all 300ms ease;
}

.checkout-area__checkbox-single label span:before {
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  content: "";
  background: #d6d3d0;
  border-radius: 0%;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checkout-area__checkbox-single input[type="checkbox"]:checked+label span {
  border-color: #d6d3d0;
}

.checkout-area__checkbox-single input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}

.checkout-area__sidebar {
  position: relative;
  display: block;
  margin-left: 45px;
}

.checkout-area__sidebar-single {
  position: relative;
  display: block;
  background: #f7f7f7;
  padding: 26px 20px 37px;
  margin-bottom: 30px;
}

.checkout-area__sidebar-single.mb0 {
  margin-bottom: 0;
  padding-bottom: 55px;
}

.checkout-area__sidebar-single .title {
  position: relative;
  display: block;
  border-bottom: 1px solid #e4e2e0;
  padding-bottom: 11px;
}

.checkout-area__sidebar-single .title h3 {
  color: #262222;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--uterpy-font);
}

.checkout-area__sidebar-single ul {
  position: relative;
  display: block;
}

.checkout-area__sidebar-single ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e2e0;
  padding-top: 24px;
  padding-bottom: 23px;
}

.checkout-area__sidebar-single ul li.bg {
  position: relative;
  z-index: 1;
}

.checkout-area__sidebar-single ul li.bg::before {
  position: absolute;
  top: -1px;
  left: -20px;
  bottom: -1px;
  right: -20px;
  background: #f7efef;
  content: "";
  z-index: -1;
}

.checkout-area__sidebar-single ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.checkout-area__sidebar-single ul li .text-box {
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-area__sidebar-single ul li .text-box .img-box {
  position: relative;
  display: block;
  margin-right: 15px;
  width: 50px;
  overflow: hidden;
}

.checkout-area__sidebar-single ul li .text-box .img-box img {
  width: 100%;
}

.checkout-area__sidebar-single ul li .title-one {
  position: relative;
  display: block;
}

.checkout-area__sidebar-single ul li .title-one p {
  color: var(--uterpy-black);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.checkout-area__sidebar-single ul li .title-box {
  position: relative;
  display: block;
}

.checkout-area__sidebar-single ul li .title-box p {
  color: var(--uterpy-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.checkout-area__sidebar-single ul li .title-box p span {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.checkout-area__sidebar-single ul li .price {
  position: relative;
  display: block;
  line-height: 0;
}

.checkout-area__sidebar-single ul li .price p {
  color: var(--uterpy-black);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.checkout-area__sidebar-single ul li .price .text1 {
  color: var(--uterpy-black);
  font-size: 16px;
  line-height: 26px;
}

.checkout-area__sidebar-single ul li .price span {
  color: rgba(var(--thm-black-rgb), 0.7);
  font-size: 14px;
  line-height: 20px;
}

.checkout-area__sidebar-single ul li .price a {
  position: relative;
  display: block;
  color: var(--uterpy-base);
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  margin-top: 5px;
}

.checkout__payment {
  position: relative;
  display: block;
  margin-bottom: 10px;
  margin-top: 40px;
}

.checkout__payment__item {
  position: relative;
  display: block;
  border: 1px solid #232323;
  padding: 14px 20px 13px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-bottom: 10px;
}

.checkout__payment__item.mb0 {
  margin-bottom: 0;
}

.checkout__payment__title {
  display: flex;
  color: var(--uterpy-black);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  align-items: center;
  cursor: pointer;
  font-family: var(--uterpy-font);
}

.checkout__payment__title::before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1px solid #0d0d0d;
  border-radius: 50%;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--uterpy-base);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: transparent;
  border-color: var(--thm-base);
  content: '\f00c';
}

.checkout__payment__content {
  font-size: 15px;
  line-height: 25px;
  margin-top: 13px;
}

.checkout__payment__checkbox {
  position: relative;
  display: block;
  margin-top: 28px;
}

.checkout__payment__checkbox label {
  color: rgb(38, 34, 34, 0.87);
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  padding-left: 25px;
}

.checkout__payment-btn {
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
}

.checkout__payment-btn a {
  width: 100%;
}

/*--------------------------------------------------------------
# Boxed
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}

body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  box-shadow: 0px 0px 100px 0px rgba(var(--uterpy-black-rgb), 0.08);
}
body.boxed-wrapper .main-header__bottom-contact-box{
  display: none;
}