/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common    
--------------------------------------------------------------*/
:root {
  --Coreclean-font: "Google Sans", sans-serif;
  --Coreclean-font-two: "Onest", sans-serif;
  --Coreclean-gray: #626f82;
  --Coreclean-gray-rgb: 98, 111, 130;
  --Coreclean-white: #ffffff;
  --Coreclean-white-rgb: 255, 255, 255;
  --Coreclean-base: #98242d;
  --Coreclean-base-rgb: 253, 96, 58;
  --Coreclean-gray-bg: #022c43;
  --Coreclean-black: #1c1c1c;
  --Coreclean-black-rgb: 28, 28, 28;
}

::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--Coreclean-base);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--Coreclean-base);
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--Coreclean-font);
  color: var(--Coreclean-gray);
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
}

button {
  outline: none;
  outline-width: 0cap;
}

button:focus,
button:hover {
  outline: none;
  outline-width: 0cap;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--Coreclean-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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 {
  font-family: var(--Coreclean-font-two);
  color: var(--Coreclean-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: 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;
}

/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: -100%;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--Coreclean-black);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup.popup-visible {
  left: 0px;
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner {
  position: relative;
  display: block;
  padding: 40px 35px;
  padding-top: 32px;
}

.chat-popup .close-chat {
  position: absolute;
  display: flex;
  left: 0px;
  top: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--Coreclean-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.chat-popup .chat-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type="text"],
.chat-popup .chat-form .form-group input[type="email"],
.chat-popup .chat-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
  outline: none;
}

.chat-popup .chat-form .form-group button {
  width: 100%;
  padding: 11px 40px 11px;
  border-radius: 5px;
  border: none;
}

.chat-popup .chat-form .form-group button:hover {
  color: var(--Coreclean-black);
}

.chat-popup .chat-form .form-group button.thm-btn::before {
  background: var(--Coreclean-white);
}

.chat-icon {
  position: fixed;
  display: inline-block;
  left: 30px;
  bottom: 45px;
  z-index: 99;
}

.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--Coreclean-base);
  z-index: 1;
  border: none;
}

.chat-icon button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.2);
  border-radius: 5px;
  z-index: -1;
}

/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;

  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  transform: translateX(0%);
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--Coreclean-base);
  border-color: var(--Coreclean-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--Coreclean-white-rgb), 0.5);
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  background-color: var(--Coreclean-black);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: rgba(var(--Coreclean-white-rgb), 0.7);
  border: none;
  border-radius: var(--Coreclean-bdr-radius);
  outline: none;
  transition: all 500ms ease;
  background-color: rgba(var(--Coreclean-white-rgb), 0.05);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
  background-color: var(--Coreclean-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:before {
  background-color: rgba(var(--Coreclean-white-rgb), 1);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--Coreclean-base);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--Coreclean-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--Coreclean-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--Coreclean-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--Coreclean-white-rgb), 0.1);
  border-radius: 50%;
  color: var(--Coreclean-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--Coreclean-base);
  border-radius: 50%;
  transition: 0.5s;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--Coreclean-white);
}

/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}

.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(--Coreclean-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--Coreclean-font-two);
  padding: 14px 40px 13px;
  border-radius: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--Coreclean-black);
  content: "";
  transform: scaleY(0) rotateX(0deg);
  border-radius: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.thm-btn:hover {
  color: var(--Coreclean-white);
}

.thm-btn:hover:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -5px;
  margin-bottom: 48px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: var(--Coreclean-base);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--Coreclean-font-two);
}

.section-title__title {
  margin: 0;
  color: var(--Coreclean-black);
  font-size: 46px;
  line-height: 56px;
  font-weight: 700;
  margin-top: 7px;
}

.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(--Coreclean-base);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--Coreclean-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--Coreclean-black);
  color: var(--Coreclean-white);
  cursor: pointer;
}

/* Preloader Css*/
.handle-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--Coreclean-black);
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 30px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 99999999;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 45px auto;

  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;

  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;

  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 70px;
  line-height: 70px;
  font-weight: 600;
  letter-spacing: 15px;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  position: absolute;
  top: 0;
  left: 0;
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  opacity: 0;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.3s;
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.5s;
}

/**
animation: spinner 1s infinite linear;
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
**/

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  /**border-top-color: rgba(255, 255, 255, 0.5); **/
}

/* Animation preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 30px;
    letter-spacing: 10px;
  }
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--Coreclean-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: 0%;
}

.scroll-to-top i {
  color: var(--Coreclean-white);
  font-size: 20px;
  line-height: 50px;
  font-weight: 700;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
}

.scroll-to-top:hover {
  background-color: var(--Coreclean-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header__top {
  position: relative;
  display: block;
  background-color: var(--Coreclean-base);
  z-index: 1;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 0;
}

.main-header__top-left {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 35px;
  width: 35px;
  background-color: var(--Coreclean-black);
  border-radius: 5px;
  z-index: 1;
}

.main-menu__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--Coreclean-white);
  border-radius: 5px;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.main-menu__social a:hover:before {
  transform: scaleX(1);
}

.main-menu__social a:hover {
  color: var(--Coreclean-base);
}

.main-menu__social a + a {
  margin-left: 10px;
}

.main-header__top-right {
  position: relative;
  display: block;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li + li {
  margin-left: 40px;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li .icon i {
  font-size: 18px;
  color: var(--Coreclean-white);
}

.main-header__contact-list li .text {
  margin-left: 15px;
}

.main-header__contact-list li .text p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.main-header__contact-list li .text p a {
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--Coreclean-black);
}

.main-menu {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 22.5px 0;
}

.main-menu__main-menu-box {
  display: flex;
  align-items: center;
}

.main-menu__search-cart-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-left: 0px;
}
.main-menu__search-cart-btn-box a {
  font-size: 20px;
  color: #fff;
  background: var(--Coreclean-base);
  padding: 10px 18px;
  border-radius: 30px;
  line-height: 1;
  font-weight: 700;
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--Coreclean-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--Coreclean-black);
}

.main-menu__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--Coreclean-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--Coreclean-black);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 0;
  height: 35px;
  width: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu--one {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--Coreclean-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu--one {
  width: 35px;
}

.icon-dots-menu--two {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--Coreclean-base);
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu--two {
  width: 25px;
}

.icon-dots-menu--three {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--Coreclean-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu--three {
  width: 35px;
}

.stricky-header.main-menu {
  background-color: var(--Coreclean-white);
}

.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 {
  padding-top: 30px;
  padding-bottom: 25px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 45px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--Coreclean-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  font-family: var(--Coreclean-font-two);
}

.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 2px;
  right: -16px;
  font-family: "icomoon" !important;
  content: "\e907";
  font-size: 12px;
  transition: transform 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--Coreclean-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: 280px;
  -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: rgb(255, 255, 255);
  padding: 0;
}

.shadow-box {
  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(--Coreclean-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--Coreclean-white);
  font-family: var(--Coreclean-font-two);
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.1);
}

.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: 0;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li.current > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li.current > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li.current > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li.current > a {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--Coreclean-white);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li.current > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li.current > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li.current > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li.current > a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu__wrapper .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 0 !important;
}

.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(--Coreclean-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--Coreclean-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--Coreclean-black);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--Coreclean-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 2147483000;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  visibility: hidden;
  -webkit-transition:
    opacity 350ms ease,
    visibility 0ms linear 350ms;
  transition:
    opacity 350ms ease,
    visibility 0ms linear 350ms;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  -webkit-transition:
    opacity 350ms ease,
    visibility 0ms linear 0ms;
  transition:
    opacity 350ms ease,
    visibility 0ms linear 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
}

.mobile-nav__wrapper.expanded .mobile-nav__overlay {
  opacity: 0.6;
}

.mobile-nav__content {
  width: min(300px, 86vw);
  max-width: 100%;
  background-color: var(--Coreclean-black);
  z-index: 2;
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  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;
  will-change: transform;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition:
    opacity 450ms ease,
    visibility 450ms ease,
    -webkit-transform 450ms ease;
  transition:
    opacity 450ms ease,
    visibility 450ms ease,
    -webkit-transform 450ms ease;
  transition:
    opacity 450ms ease,
    visibility 450ms ease,
    transform 450ms ease;
  transition:
    opacity 450ms ease,
    visibility 450ms ease,
    transform 450ms ease,
    -webkit-transform 450ms ease;
}

.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: var(--Coreclean-white);
  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(--Coreclean-font);
  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(--Coreclean-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--Coreclean-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(--Coreclean-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(--Coreclean-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(--Coreclean-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(--Coreclean-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--Coreclean-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--Coreclean-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(--Coreclean-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--Coreclean-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;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: 0px;
  margin-bottom: 0;
}

.home-showcase__inner {
  padding: 40px 40px 32px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: #000000;
  overflow: hidden;
}

.home-showcase__image > img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home-showcase__image:hover > img {
  opacity: 0.6;
}

.home-showcase__image:hover .home-showcase__buttons {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 13px 20px 9px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item + .home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__buttons__item:before {
  background-color: var(--Coreclean-white);
}

.home-showcase__buttons__item:hover {
  color: var(--Coreclean-black);
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--Coreclean-black);
  margin-top: 18px;
  text-transform: capitalize;
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--Coreclean-white, #ffffff);
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-two .main-menu {
  box-shadow: none;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.1);
  z-index: 1;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-two__left {
  display: block;
}

.main-menu-two__logo {
  display: block;
  padding: 30px 0;
}

.main-menu-two__main-menu-box {
  display: flex;
  align-items: center;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border: 1px solid #dbe7ff;
  border-radius: 50%;
  font-size: 18px;
  color: var(--Coreclean-gray);
  background-color: var(--Coreclean-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  border: 1px solid var(--Coreclean-base);
}

.main-menu-two__cart {
  position: relative;
  display: block;
}

.main-menu-two__cart a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border: 1px solid #dbe7ff;
  border-radius: 50%;
  font-size: 18px;
  color: var(--Coreclean-gray);
  background-color: var(--Coreclean-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart a:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  border: 1px solid var(--Coreclean-base);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
}

/* .main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--Coreclean-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--Coreclean-black);
} */

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header--three {
  position: relative;
  display: block;
}

.main-header--three .container {
  max-width: 1350px;
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four:before {
  background-color: rgba(235, 232, 228, 0.4);
}

.stricky-header.main-menu-four {
  background-color: var(--Coreclean-white);
}

.main-menu-four .main-menu__list > li > a,
.stricky-header.main-menu-four .main-menu__list > li > a {
  color: var(--Coreclean-gray);
}

.main-menu-four .main-menu__list > li.current > a,
.main-menu-four .main-menu__list > li:hover > a,
.stricky-header.main-menu-four .main-menu__list > li.current > a,
.stricky-header.main-menu-four .main-menu__list > li:hover > a {
  color: var(--Coreclean-base);
}

.main-menu-four .main-menu__search {
  color: var(--Coreclean-black);
}

.main-menu-four .main-menu__search:hover {
  color: var(--Coreclean-base);
}

.main-menu-four .main-menu__cart {
  color: var(--Coreclean-black);
}

.main-menu-four .main-menu__cart:hover {
  color: var(--Coreclean-base);
}

.main-menu-four .main-menu__search-cart-box:before {
  background-color: #ebe8e4;
}

.main-menu-four .main-menu__btn {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

.main-menu-four .main-menu__btn:before {
  background-color: var(--Coreclean-black);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition:
    opacity 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    opacity 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    transform 500ms ease,
    opacity 500ms ease;
  transition:
    transform 500ms ease,
    opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--Coreclean-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.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(--Coreclean-base);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--Coreclean-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover:before {
  width: 150%;
  border-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  background-color: var(--Coreclean-black);
  overflow: hidden;
  z-index: 5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.03);
}

.banner-one__shape-bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: plus-lighter;
  z-index: -1;
}

.banner-one__shape-1 {
  position: absolute;
  width: 537px;
  height: 502px;
  left: -255px;
  top: 32px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.banner-one__shape-2 {
  position: absolute;
  width: 537px;
  height: 502px;
  left: -268px;
  bottom: 75px;
  background: rgba(46, 114, 255, 0.1);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.banner-one__shape-3 {
  position: absolute;
  width: 537px;
  height: 502px;
  right: -250px;
  top: 5px;
  background: rgba(46, 114, 255, 0.3);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.banner-one__shape-4 {
  position: absolute;
  bottom: 75px;
  left: 695px;
  z-index: -1;
}

.banner-one__shape-4 img {
  width: auto;
}

.banner-one__shape-5 {
  position: absolute;
  bottom: 60px;
  right: 215px;
  z-index: -1;
}

.banner-one__shape-5 img {
  width: auto;
}

.banner-one__left {
  position: relative;
  display: block;
  margin-right: -30px;
}

.banner-one__title-box {
  position: relative;
  display: block;
}

.banner-one__title {
  font-size: 50px;
  color: var(--Coreclean-white);
  line-height: 1.3em;
  font-weight: 700;
}

.banner-one__title span {
  color: var(--Coreclean-base);
}

.banner-one__text {
  font-size: 18px;
  color: rgba(var(--Coreclean-white-rgb), 0.7);
  line-height: 28px;
  margin-top: 28px;
  margin-bottom: 42px;
}

.banner-one__btn-box {
  position: relative;
  display: block;
}

.banner-one__btn-box .thm-btn::before {
  background-color: var(--Coreclean-white);
}

.banner-one__btn-box .thm-btn:hover {
  color: var(--Coreclean-base);
}

.banner-one__satisfied-partner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 55px;
}

.banner-one__satisfied-partner-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-one__satisfied-partner-list li {
  position: relative;
  display: block;
}

.banner-one__satisfied-partner-list li + li {
  margin-left: -12px;
}

.banner-one__satisfied-partner-img {
  position: relative;
  display: block;
  max-width: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.banner-one__satisfied-partner-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--Coreclean-white);
}

.banner-one__satisfied-partner-content {
  position: relative;
  display: block;
}

.banner-one__satisfied-partner-content .odometer-formatting-mark {
  display: none;
}

.banner-one__satisfied-partner-count-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 7px;
}

.banner-one__satisfied-partner-count-box p {
  font-size: 24px;
  color: var(--Coreclean-black);
  font-weight: 700;
  line-height: 24px !important;
  font-family: var(--Coreclean-font-two) !important;
}

.banner-one__satisfied-partner-count-box span {
  font-size: 24px;
  color: var(--Coreclean-white);
  font-weight: 700;
  line-height: 24px;
  font-family: var(--Coreclean-font-two);
}

.banner-one__satisfied-partner-text {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: rgba(var(--Coreclean-white-rgb), 0.7);
}

.banner-one__right {
  position: relative;
  display: block;
  margin-left: 170px;
  margin-right: -50px;
}

.banner-one__img-box {
  position: relative;
  display: block;
}

.banner-one__img {
  position: relative;
  display: block;
}

.banner-one__img img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.banner-one__video-link {
  position: absolute;
  top: 115px;
  left: 130px;
}

.banner-one__video-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(244, 103, 68, 0.1);
  border-radius: 50%;
}

.banner-one__video-icon-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(244, 103, 68, 0.2);
  border-radius: 50%;
}

.banner-one__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: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--Coreclean-white);
  background-color: #f46744;
  border-radius: 50%;
  margin: 0 auto 0;
  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;
}

.banner-one__video-icon:hover {
  background-color: var(--Coreclean-white);
  color: var(--Coreclean-base);
}

.banner-one__video-link .ripple,
.banner-one__video-icon .ripple:before,
.banner-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.banner-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.banner-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.banner-one__google-rating {
  position: absolute;
  bottom: 138px;
  left: -130px;
  background: rgba(var(--Coreclean-white-rgb), 0.2);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.03);
  border-radius: 9px;
  padding: 20px 20px 20px;
  max-width: 192px;
  width: 100%;
}

.banner-one__google-rating-img {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.banner-one__google-rating-img img {
  width: auto;
}

.banner-one__google-rating-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.banner-one__google-rating-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.banner-one__google-rating-star span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--Coreclean-base);
}

.banner-one__google-rating-count {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.banner-one__google-rating-count p {
  font-size: 18px;
  color: var(--Coreclean-white);
  font-weight: 500;
}

.banner-one__google-rating-count span {
  font-size: 18px;
  color: var(--Coreclean-white);
  font-weight: 500;
}

.bubbleContainer {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

div[class^="bubble-"] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../images/shapes/buble.png) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

.bubble-1 {
  bottom: 0px;
  left: 60%;
  -webkit-animation: bubble-movement 10s infinite ease-in -5.7s;
  animation: bubble-movement 10s infinite ease-in -5.7s;
}

.bubble-2 {
  bottom: 0px;
  left: 90%;
  -webkit-animation: bubble-movement 10s infinite ease-in -4.94s;
  animation: bubble-movement 10s infinite ease-in -4.94s;
}

.bubble-3 {
  bottom: 0px;
  left: 20%;
  -webkit-animation: bubble-movement 4s infinite ease-in -1.2s;
  animation: bubble-movement 4s infinite ease-in -1.2s;
}

.bubble-4 {
  bottom: 0px;
  left: 40%;
  -webkit-animation: bubble-movement 10s infinite ease-in -1.58s;
  animation: bubble-movement 10s infinite ease-in -1.58s;
}

.bubble-5 {
  bottom: 0px;
  left: 75%;
  -webkit-animation: bubble-movement 7s infinite ease-in -6.31s;
  animation: bubble-movement 7s infinite ease-in -6.31s;
}

.bubble-6 {
  bottom: 0px;
  left: 45%;
  -webkit-animation: bubble-movement 10s infinite ease-in -0.51s;
  animation: bubble-movement 10s infinite ease-in -0.51s;
}

.bubble-7 {
  bottom: 0px;
  left: 10%;
  -webkit-animation: bubble-movement 15s infinite ease-in -3.37s;
  animation: bubble-movement 15s infinite ease-in -3.37s;
}

.bubble-8 {
  bottom: 0px;
  left: 65%;
  -webkit-animation: bubble-movement 10s infinite ease-in -0.66s;
  animation: bubble-movement 10s infinite ease-in -0.66s;
}

.bubble-9 {
  bottom: 0px;
  left: 30%;
  -webkit-animation: bubble-movement 4s infinite ease-in -5.81s;
  animation: bubble-movement 4s infinite ease-in -5.81s;
}

.bubble-10 {
  bottom: 0px;
  left: 95%;
  -webkit-animation: bubble-movement 10s infinite ease-in -3.98s;
  animation: bubble-movement 10s infinite ease-in -3.98s;
}

.bubble-11 {
  bottom: 0px;
  left: 41%;
  -webkit-animation: bubble-movement 15s infinite ease-in -3.98s;
  animation: bubble-movement 15s infinite ease-in -3.98s;
}

.bubble-12 {
  bottom: 0px;
  left: 46%;
  -webkit-animation: bubble-movement 10s infinite ease-in -3.98s;
  animation: bubble-movement 10s infinite ease-in -3.98s;
}

.bubble-13 {
  bottom: 0px;
  left: 50%;
  -webkit-animation: bubble-movement 4s infinite ease-in -3.98s;
  animation: bubble-movement 4s infinite ease-in -3.98s;
}

.bubble-14 {
  bottom: 0px;
  left: 70%;
  -webkit-animation: bubble-movement 4s infinite ease-in -3.98s;
  animation: bubble-movement 4s infinite ease-in -3.98s;
}

.bubble-15 {
  bottom: 0px;
  left: 58%;
  -webkit-animation: bubble-movement 4s infinite ease-in -3.98s;
  animation: bubble-movement 4s infinite ease-in -3.98s;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 2;
}

.main-slider-two__bg-shpae {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.main-slider-two__bg-shpae-2 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.06;
  z-index: -1;
}

.main-slider-two__img {
  position: absolute;
  right: 300px;
  bottom: 0;
  opacity: 0;
  transform: translateX(300px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  z-index: 1;
}

.swiper-slide-active .main-slider-two__img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-two__img:before {
  content: "";
  position: absolute;
  top: 60px;
  left: 49px;
  right: 0;
  bottom: 80px;
  background-color: var(--Coreclean-base);
  border-radius: 50%;
  z-index: -1;
}

.main-slider-two__img img {
  width: auto;
}

.main-slider-two__shape-1 {
  position: absolute;
  top: 200px;
  left: 100px;
  opacity: 0.4;
  z-index: -1;
}

.main-slider-two__shape-1 img {
  width: auto;
}

.main-slider-two__shape-2 {
  position: absolute;
  top: 100px;
  right: 100px;
  opacity: 0.4;
  z-index: -1;
}

.main-slider-two__shape-2 img {
  width: auto;
}

.main-slider-two__shape-3 {
  position: absolute;
  bottom: 65px;
  left: 200px;
  opacity: 0.4;
  z-index: -1;
}

.main-slider-two__shape-3 img {
  width: auto;
}

.main-slider-two__shape-4 {
  position: absolute;
  top: 160px;
  left: 1110px;
  z-index: -1;
}

.main-slider-two__shape-4 img {
  width: auto;
}

.main-slider-two__shape-5 {
  position: absolute;
  bottom: 67px;
  right: 100px;
  opacity: 0.4;
  z-index: -1;
}

.main-slider-two__shape-5 img {
  width: auto;
}

.main-slider-two .container {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  z-index: 30;
}

.main-slider-two__content {
  position: relative;
  display: block;
  max-width: 650px;
  width: 100%;
  z-index: 50;
}

.main-slider-two__sub-title {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  background-color: var(--Coreclean-base);
  padding: 8px 20px 8px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-120px);
  transform: perspective(400px) rotateY(0deg) translateX(-120px);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-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__sub-title h4 {
  color: var(--Coreclean-white);
  font-size: 14px;
  line-height: 24px;
  font-family: var(--Coreclean-font-two);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.main-slider-two__big-title {
  position: relative;
  display: block;
  margin-top: 22px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-50%);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-50%);
  transform: perspective(400px) rotateY(0deg) translateX(-50%);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__big-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: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-two__big-title h2 {
  color: var(--Coreclean-black);
  font-size: 46px;
  line-height: 1.3em;
  font-weight: 800;
}

.main-slider-two__big-title h2 span {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-base);
  font-weight: 800;
}

.main-slider-two__big-title h2 span::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 10px;
  right: 2px;
  height: 5px;
  background-color: var(--Coreclean-base);
  opacity: 0.5;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.main-slider-two__text {
  position: relative;
  display: block;
  margin-top: 29px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(150px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(150px);
  transform: perspective(400px) rotateY(0deg) translateX(150px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-two__text p {
  font-size: 18px;
}

.main-slider-two__bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 48px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider-two .swiper-slide-active .main-slider-two__bottom {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-two__bottom-btn {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-two__video {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-slider-two__video-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(244, 103, 68, 0.1);
  border-radius: 50%;
}

.main-slider-two__video-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(244, 103, 68, 0.2);
  border-radius: 50%;
}

.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: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--Coreclean-white);
  background-color: #f46744;
  border-radius: 50%;
  margin: 0 auto 0;
  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;
}

.main-slider-two__video-icon:hover {
  background-color: var(--Coreclean-white);
  color: var(--Coreclean-base);
}

.main-slider-two__video .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.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__nav {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%) translateX(0);
  z-index: 100;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  color: #ffffff;
  background-color: var(--Coreclean-black);
  border-color: var(--Coreclean-black);
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
  display: none;
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 5;
}

.main-slider-three__form-box {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 670px;
  margin: 0 auto 0;
  background-color: rgba(var(--Coreclean-black-rgb), 0.85);
  border: 0px solid rgba(var(--Coreclean-base-rgb), 0.2);
  padding: 55px 55px 55px;
  border-radius: 10px;
  z-index: 10;
}

.main-slider-three__form {
  position: relative;
  display: block;
}

.main-slider-three__form .row {
  --bs-gutter-x: 15px;
}

.main-slider-three__input-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.main-slider-three__input-box input[type="text"],
.main-slider-three__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: rgba(var(--Coreclean-white-rgb), 0.1);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  color: var(--Coreclean-white);
  display: block;
  border-radius: 5px;
}

.main-slider-three__input-box textarea {
  color: var(--Coreclean-white);
  height: 90px;
  width: 100%;
  background-color: rgba(var(--Coreclean-white-rgb), 0.1);
  padding: 15px 20px 15px;
  border: none;
  outline: none;
  border-radius: 5px;
}

.main-slider-three__btn {
  border: none;
}

.main-slider-three__btn .thm-btn::before {
  background-color: var(--Coreclean-white);
}

.main-slider-three__btn .thm-btn:hover {
  color: var(--Coreclean-black);
}

.main-slider-three__btn-box .thm-btn {
  border: none;
}

.main-slider-three__btn-box .thm-btn::before {
  background-color: var(--Coreclean-white);
}

.main-slider-three__btn-box .thm-btn:hover {
  color: var(--Coreclean-black);
}

.main-slider-three__input-box.text-message-box {
  height: 90px;
}

.main-slider-three__input-box .select-box .nice-select {
  background-color: rgba(var(--Coreclean-white-rgb), 0.1);
  color: var(--Coreclean-white);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border-radius: 5px;
  border: none;
  margin-bottom: 0px;
  float: none;
}

.main-slider-three__input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
  border-bottom: 2px solid var(--Coreclean-white);
  border-right: 2px solid var(--Coreclean-white);
}

#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--Coreclean-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--Coreclean-base) none repeat scroll 0 0;
  border: 2px solid var(--Coreclean-base);
  border-radius: 0;
  color: var(--Coreclean-white);
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: var(--Coreclean-black) !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--Coreclean-black) !important;
  background: var(--Coreclean-black) !important;
  color: var(--Coreclean-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: var(--Coreclean-white);
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: var(--Coreclean-black);
  color: var(--Coreclean-white);
  border-color: var(--Coreclean-black);
}

#ui-datepicker-div.ui-widget {
  font-family: var(--Coreclean-font);
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--Coreclean-white);
}

.main-slider-three .container {
  position: relative;
  padding-top: 240px;
  padding-bottom: 240px;
  max-width: 1350px;
  z-index: 30;
}

.image-layer-three {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  transition:
    opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  transition:
    transform 7000ms ease,
    opacity 1500ms ease-in;
  transition:
    transform 7000ms ease,
    opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  z-index: 1;
}

.image-layer-three:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--Coreclean-black-rgb), 0.82);
}

.main-slider-three .swiper-slide-active .image-layer-three {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.main-slider-three .shape1 {
  position: absolute;
  bottom: 0px;
  right: -30px;
  opacity: 1;
  z-index: 1;
}

.main-slider-three__content {
  position: relative;
  display: block;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  padding-left: 55px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-120px);
  transform: perspective(400px) rotateY(0deg) translateX(-120px);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -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-three .swiper-slide-active .main-slider-three__sub-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-three__sub-title::before {
  position: absolute;
  top: 11px;
  left: 0px;
  width: 40px;
  height: 2px;
  background: var(--Coreclean-base);
  content: "";
}

.main-slider-three__sub-title h4 {
  color: var(--Coreclean-white);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--Coreclean-font-two);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.main-slider-three__title {
  position: relative;
  display: block;
  margin-top: 22px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-150px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-150px);
  transform: perspective(400px) rotateY(0deg) translateX(-150px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -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-three .swiper-slide-active .main-slider-three__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-three__title h2 {
  color: var(--Coreclean-white);
  font-size: 46px;
  line-height: 1.3em;
  font-weight: 800;
}

.main-slider-two__title h2 span {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-base);
  font-weight: 800;
}

.main-slider-two__title h2 span::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 10px;
  right: 2px;
  height: 5px;
  background-color: var(--Coreclean-base);
  opacity: 0.5;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.main-slider-three__text {
  position: relative;
  display: block;
  margin-top: 29px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(150px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(150px);
  transform: perspective(400px) rotateY(0deg) translateX(150px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -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-three .swiper-slide-active .main-slider-three__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-three__text p {
  color: var(--Coreclean-white);
  font-size: 18px;
}

.main-slider-three__bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 48px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 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-three .swiper-slide-active .main-slider-three__bottom {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-three__bottom-btn {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-three__video {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-slider-three__video-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(244, 103, 68, 0.1);
  border-radius: 50%;
}

.main-slider-three__video-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(244, 103, 68, 0.2);
  border-radius: 50%;
}

.main-slider-three__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: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--Coreclean-white);
  background-color: #f46744;
  border-radius: 50%;
  margin: 0 auto 0;
  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;
}

.main-slider-three__video-icon:hover {
  background-color: var(--Coreclean-white);
  color: var(--Coreclean-base);
}

.main-slider-three__video .ripple,
.main-slider-three__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  box-shadow: 0 0 0 0 rgba(244, 103, 68, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider-three__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-three__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-three__google-rating {
  position: absolute;
  bottom: -105px;
  left: 380px;
  border-radius: 9px;
  padding: 20px 20px 20px;
  max-width: 192px;
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-white-rgb), 0.22);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12) -21%,
    rgba(0, 0, 0, 0.1) 98.75%
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.main-slider-three__google-rating::before {
  position: absolute;
  bottom: -21px;
  right: 25px;
  border-top: 20px solid var(--Coreclean-white);
  border-left: 0px solid transparent;
  border-right: 16px solid transparent;
  content: "";
  opacity: 0.2;
}

.main-slider-three__google-rating-img {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.main-slider-three__google-rating-img img {
  width: auto;
}

.main-slider-three__google-rating-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.main-slider-three__google-rating-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.main-slider-three__google-rating-star span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--Coreclean-white);
}

.main-slider-three__google-rating-count {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.main-slider-three__google-rating-count p {
  font-size: 18px;
  color: var(--Coreclean-white);
  font-weight: 500;
}

.main-slider-three__google-rating-count span {
  font-size: 15px;
  color: var(--Coreclean-white);
  font-weight: 500;
}

.main-slider-three__nav {
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 100;
  transform: translateY(-50%);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 0;
  gap: 20px;
}

.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--Coreclean-white-rgb), 0.25);
  border: 2px solid rgba(var(--Coreclean-white-rgb), 0.25);
  border-radius: 50%;
  margin: 0;
  padding: 17px 0px;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  color: rgba(var(--Coreclean-white-rgb), 1);
  border: 2px solid rgba(var(--Coreclean-white-rgb), 1);
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}

/*--------------------------------------------------------------
# Sliding Text One 
--------------------------------------------------------------*/
.sliding-text-one {
  position: relative;
  display: block;
  background-color: var(--Coreclean-base);
  padding: 30px 0 30px;
  z-index: 1;
}

.sliding-text-one__wrap {
  position: relative;
  display: block;
}

.sliding-text-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
}

.sliding-text-one__list li {
  position: relative;
  display: block;
  float: left;
  margin-right: 35px;
}

.sliding-text-one__list li span {
  position: relative;
  display: block;
  width: 80px;
  height: 40px;
  border: 1px solid rgba(var(--Coreclean-white-rgb), 1);
  border-radius: 20px;
  top: 15px;
}

.sliding-text-one__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 45px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--Coreclean-white-rgb), 1);
  font-size: 80px;
  line-height: 0.8em;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--Coreclean-font-two);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sliding-text-one__list li .sliding-text-one__title:hover {
  color: transparent;
  -webkit-text-stroke: 1px transparent;
}

.sliding-text-one__title:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--Coreclean-white);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text-one__list li:hover .sliding-text-one__title:before {
  width: 100%;
  color: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# Experience One
--------------------------------------------------------------*/
.experience-one {
  position: relative;
  display: block;
  background-color: #f1f5f9;
  padding: 120px 0 90px;
  z-index: 1;
}

.experience-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.experience-one__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 35px 30px 32px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.experience-one__single:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--Coreclean-base);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.experience-one__single:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.experience-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: var(--Coreclean-base);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100' height='100' viewBox='0 0 100 100'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAAXNSR0IArs4c6QAABTZJREFUeF7tncvLVVUYxn+S2aywgqiETCKICMksUpxIimV2oQjTBtmsvyBr1qjLpImgONGCIjGCQrIGGRF00XJSmiKKFwoKInBgYlG2H9srzud3ztm3dTtnv2v4fWev913Pb6/9nL3P2uudQ/p2E3A7sAS4C7gG+Ae4GCG1K4DzwCngG+AIcDxC3JEh5iQKPhd4BniyEOJB4MpEeQwLexB4F3gPOBM7r9hA5hVn5GbgOeDW2INtGO8vYAfwWjmDGh7e7uMxgTwFvAEsaJdqsqME5pUi+ssxMogFRAN6KcaAAsb4DHgI+DNgDGIA2VlM+U0hBxGx70PACuBsqJihgewqvrmsD5V8on71jexe4LcQ8UMCebv8JhUi79R9ngaWhoASCsg0XaZGwT9Z3jed83l2hADSBxiOwY/Acp+e4huIbqie9nnGTEBfXj3FJ5B3gI0TIGCIFL15ii8gfbpMBfUUH0DeBJ4NcdpNYJ+dPaUrkD56RtV50slTugDps2dUQWntKW2BmGdUIYFW9yltgJhnVMNofZ/SFIh5Rn0Y7pONPKUJkGl+NtVc5mZH6JfHe+o8+6oLxDyjGYBhn67lKXWAmGd0h1HbU6qAmGf4g1HLU8YBMc/wD8P1ONJTRgExzwgHw/UsT7mjWGtwYTDUMCCvAy+Ez8ciAN8C940Dsq74erbHpIqqwHbgeRdxcIZoNaF+uNdSTmtxFVhWLmWdsQzoReDVuHlYtFKB78qVLP8DuQr4CbjeJEqmwP3FQrz97pKln171ON1aOgV2aw2bA/Ip8EC6XCxyqcB8AbmuzkMvkyyKAo8IyEpAC4mtpVdgq4DofQ29A2EtvQIHBMR+G08PwmVwQkA+Atbmk1OvMzktIB8Cj/ZahnwGf0pAPgAeyyenXmdiQDLDb0AMSGYKZJaOzRADkpkCmaVjM8SAZKZAZunYDDEgmSmQWTo2QwxIZgpklo7NEAOSmQKZpWMzxIBkpkBm6dgMMSCZKZBZOjZDDEhmCmSWjs0QA5KZApmlYzPEgGSmQGbp2AzJEYhe8tTLntbSK3BpKane3NFG+dbSK3DpkjUNG+Wnl9JPBj8IyBPFDs3v++nPeumowG4BuSVmwZKOCU/74ZvcS58qw3DntI92Asa3wAGx19rS01JRsmUOiCql/Zw+p15nsAHYNbjXiW3JlO58+AW4WeUCB4HoD9pew1p8BVS1TlspzqpBZfck8WF8Dyx2YYdtYPZlWaQkfmr9i/gHsAj4dRwQ7ZulEqS39U+f6CNWdZ6vB6OO2nNxfvF86zBwY/QU+xPw4WJ7v72XD3fcrqT6KqyNtQyK/5Pk8XJ/gFk9V+3bKxiaUnq8Ys2PAqoW+smorqqA6DhdvjRTZD7WuimwCtg3ros6QBwU85RuMLSfzMdVXdQFon7MU6rUHP3/kZ7RxNSHdW+e0hzKWM/oCsQ8pRmQSs/wAcQ8pR6UWp7hC4j60eXroN2nDKVT2zN8AnFQ7D5lpqqNPMM3EPOUmYo29owQQMxT/lO1lWeEAtJ3T2ntGSGB9NVTOnlGaCB985TOnhEDSF88xYtnxAIy7Z7izTNiAnFQvipWVCysd3M7EZ/y6hmxgSje1eUPMqqzNMlNCxIE44uQg2jy+L1rHtsGq5F17Szy8VrmqSpEqj0YtMUEooGoio/WEa8OOip/nR8tCt5sAbb663J8T7GBuGzWlGfc+qIynAqS5dY+B95yqwljJpcKiBvjDWWlS73jeDdwbfFG1zzgYiQRNP6/gd+B42XpDl2ejkWKPyvMv7o86jUG0cifAAAAAElFTkSuQmCC' x='0' y='0' width='100' height='100'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100' height='100' viewBox='0 0 100 100'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAAXNSR0IArs4c6QAABTZJREFUeF7tncvLVVUYxn+S2aywgqiETCKICMksUpxIimV2oQjTBtmsvyBr1qjLpImgONGCIjGCQrIGGRF00XJSmiKKFwoKInBgYlG2H9srzud3ztm3dTtnv2v4fWev913Pb6/9nL3P2uudQ/p2E3A7sAS4C7gG+Ae4GCG1K4DzwCngG+AIcDxC3JEh5iQKPhd4BniyEOJB4MpEeQwLexB4F3gPOBM7r9hA5hVn5GbgOeDW2INtGO8vYAfwWjmDGh7e7uMxgTwFvAEsaJdqsqME5pUi+ssxMogFRAN6KcaAAsb4DHgI+DNgDGIA2VlM+U0hBxGx70PACuBsqJihgewqvrmsD5V8on71jexe4LcQ8UMCebv8JhUi79R9ngaWhoASCsg0XaZGwT9Z3jed83l2hADSBxiOwY/Acp+e4huIbqie9nnGTEBfXj3FJ5B3gI0TIGCIFL15ii8gfbpMBfUUH0DeBJ4NcdpNYJ+dPaUrkD56RtV50slTugDps2dUQWntKW2BmGdUIYFW9yltgJhnVMNofZ/SFIh5Rn0Y7pONPKUJkGl+NtVc5mZH6JfHe+o8+6oLxDyjGYBhn67lKXWAmGd0h1HbU6qAmGf4g1HLU8YBMc/wD8P1ONJTRgExzwgHw/UsT7mjWGtwYTDUMCCvAy+Ez8ciAN8C940Dsq74erbHpIqqwHbgeRdxcIZoNaF+uNdSTmtxFVhWLmWdsQzoReDVuHlYtFKB78qVLP8DuQr4CbjeJEqmwP3FQrz97pKln171ON1aOgV2aw2bA/Ip8EC6XCxyqcB8AbmuzkMvkyyKAo8IyEpAC4mtpVdgq4DofQ29A2EtvQIHBMR+G08PwmVwQkA+Atbmk1OvMzktIB8Cj/ZahnwGf0pAPgAeyyenXmdiQDLDb0AMSGYKZJaOzRADkpkCmaVjM8SAZKZAZunYDDEgmSmQWTo2QwxIZgpklo7NEAOSmQKZpWMzxIBkpkBm6dgMMSCZKZBZOjZDDEhmCmSWjs0QA5KZApmlYzPEgGSmQGbp2AzJEYhe8tTLntbSK3BpKane3NFG+dbSK3DpkjUNG+Wnl9JPBj8IyBPFDs3v++nPeumowG4BuSVmwZKOCU/74ZvcS58qw3DntI92Asa3wAGx19rS01JRsmUOiCql/Zw+p15nsAHYNbjXiW3JlO58+AW4WeUCB4HoD9pew1p8BVS1TlspzqpBZfck8WF8Dyx2YYdtYPZlWaQkfmr9i/gHsAj4dRwQ7ZulEqS39U+f6CNWdZ6vB6OO2nNxfvF86zBwY/QU+xPw4WJ7v72XD3fcrqT6KqyNtQyK/5Pk8XJ/gFk9V+3bKxiaUnq8Ys2PAqoW+smorqqA6DhdvjRTZD7WuimwCtg3ros6QBwU85RuMLSfzMdVXdQFon7MU6rUHP3/kZ7RxNSHdW+e0hzKWM/oCsQ8pRmQSs/wAcQ8pR6UWp7hC4j60eXroN2nDKVT2zN8AnFQ7D5lpqqNPMM3EPOUmYo29owQQMxT/lO1lWeEAtJ3T2ntGSGB9NVTOnlGaCB985TOnhEDSF88xYtnxAIy7Z7izTNiAnFQvipWVCysd3M7EZ/y6hmxgSje1eUPMqqzNMlNCxIE44uQg2jy+L1rHtsGq5F17Szy8VrmqSpEqj0YtMUEooGoio/WEa8OOip/nR8tCt5sAbb663J8T7GBuGzWlGfc+qIynAqS5dY+B95yqwljJpcKiBvjDWWlS73jeDdwbfFG1zzgYiQRNP6/gd+B42XpDl2ejkWKPyvMv7o86jUG0cifAAAAAElFTkSuQmCC' x='0' y='0' width='100' height='100'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  transition-delay: 0.1s;
  transition: all 500ms ease;
  z-index: 1;
}

.experience-one__single:hover .experience-one__icon {
  background-color: var(--Coreclean-base);
}

.experience-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--Coreclean-white);
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.experience-one__single:hover .experience-one__icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
  color: var(--Coreclean-white);
}

.experience-one__content {
  margin-left: 30px;
  position: relative;
  display: block;
  flex: 1;
}

.experience-one__content-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
}

.experience-one__content-title a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.experience-one__content-title a:hover {
  color: var(--Coreclean-base);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-one__shape1 {
  position: absolute;
  top: 65px;
  right: 40px;
  opacity: 0.8;
  z-index: -1;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 45px;
}
.main-menu__left{ display:none;}
.about-one__img {
  position: relative;
  display: block;
  width: 555px;
  height: 655px;
  overflow: hidden;
  clip-path: url(#octagonClip);
  -webkit-clip-path: url(#octagonClip);
  z-index: 1;
}

.about-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-one__experience-year {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 252px;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.about-one__experience-year-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    padding: 15px 0 15px;
    background: rgba(255, 255, 255, 0.06);
}

.about-one__experience-year-inner h3 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 48px;
    position: relative;
    top: 5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.about-one__experience-year-inner h5 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 26px;
    font-weight: 700;
    margin-left: 20px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.about-one__shape-1 {
  position: absolute;
  top: 0;
  right: 10px;
  border-width: 25px;
  border-color: rgb(255, 215, 0);
  border-style: solid;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  z-index: -1;
}

.about-one__right {
  position: relative;
  display: block;
}

.about-one__right .section-title {
  margin-bottom: 26px;
}

.about-one__text {
  font-size: 17px;
  padding-bottom: 30px;
}

.about-one__text a {
  color: var(--Coreclean-gray);
}

.about-one__bottom {
  position: relative;
  display: flex;
}

.about-one__bottom-left {
  position: relative;
  display: block;
}

.about-one__bottom-left h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--Coreclean-base);
  line-height: 26px;
}

.about-one__bottom-left p {
  padding-top: 17px;
  padding-bottom: 25px;
}

.about-one__points {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background-color: var(--Coreclean-base);
  border-radius: 50%;
}

.about-one__points li .icon > span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--Coreclean-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-one__points li:hover .icon > span {
  transform: scale(0.9);
}

.about-one__points li h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.about-one__btn {
  position: relative;
  background: var(--Coreclean-base);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-one--two {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 98px;
  z-index: 1;
}

.about-two__bg-color {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5ff 48%, #ffffff 100%);
  z-index: -1;
}

.about-two__shape-1 {
  position: absolute;
  bottom: 0;
  left: -235px;
  width: 397px;
  height: 372px;
  background: var(--Coreclean-base);
  filter: blur(150px);
  opacity: 0.3;
  z-index: -1;
}

.about-two__shape-2 {
  position: absolute;
  bottom: 160px;
  right: -240px;
  width: 397px;
  height: 372px;
  background: var(--Coreclean-base);
  filter: blur(150px);
  opacity: 0.3;
  z-index: -1;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 27px;
}

.about-two__left-img-box {
  position: relative;
  display: block;
  margin-right: -22px;
}

.about-two__left-img-1 {
  position: relative;
  display: block;
  margin-bottom: 21px;
  overflow: hidden;
  border-radius: 12px;
}

.about-two__left-img-1::before {
  background: rgba(255, 225, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.about-two__left-img-1:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-two__left-img-1 img {
  width: 100%;
  border-radius: 12px;
}

.about-two__left-img-2 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.about-two__left-img-2::before {
  background: rgba(255, 225, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.about-two__left-img-2:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-two__left-img-2 img {
  width: 100%;
  border-radius: 8px;
}

.about-two__left-img-box-2 {
  position: relative;
  display: block;
  margin-left: 13px;
}

.about-two__left-img-3 {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-two__left-img-3::before {
  background: rgba(255, 225, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.about-two__left-img-3:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-two__left-img-3 img {
  width: 100%;
  border-radius: 12px;
}

.about-two__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.about-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: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  font-size: 18px;
  color: var(--Coreclean-black);
  background-color: rgba(var(--Coreclean-white-rgb), 0.3);
  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;
}

.about-two__video-icon:hover {
  color: var(--Coreclean-white);
}

.about-two__video-icon:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border: 1px solid rgba(var(--Coreclean-white-rgb), 0.2);
  border-radius: 50%;
  z-index: -1;
}

.about-two__video-icon:after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: var(--Coreclean-white);
  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;
}

.about-two__video-icon:hover:after {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--Coreclean-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--Coreclean-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--Coreclean-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--Coreclean-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-two__left-big-title {
  position: relative;
  display: block;
  font-size: 108px;
  line-height: 120px;
  text-transform: uppercase;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(var(--Coreclean-base-rgb), 0.13);
  margin-top: 21px;
  margin-left: -60px;
  font-family: var(--Coreclean-font);
}

.about-two__right {
  position: relative;
  display: block;
  margin-right: -50px;
}

.about-two__right .section-title {
  margin-bottom: 23px;
}

.about-two__client-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: var(--Coreclean-white);
  border-radius: 20px;
  padding: 16px 23px 16px;
  border: 1px solid #f1f1f2;
  margin: 29px 0 33px;
}

.about-two__client-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border: 1px solid #f1f1f2;
  border-radius: 50%;
}

.about-two__client-img {
  position: relative;
  display: block;
  max-width: 98px;
  width: 100%;
}

.about-two__client-img img {
  width: 100%;
  border-radius: 50%;
}

.about-two__client-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-two__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.about-two__sub-title {
  font-weight: 700;
  font-family: var(--Coreclean-font-two);
  color: var(--Coreclean-black);
  margin-top: 12px;
}

.about-two__sub-title span {
  color: var(--Coreclean-base);
}

.about-two__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-two__points-list {
  position: relative;
  display: block;
}

.about-two__points-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-two__points-list li + li {
  margin-top: 14px;
}

.about-two__points-list li .icon {
  position: relative;
  display: inline-block;
}

.about-two__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--Coreclean-base);
}

.about-two__points-list li p {
  font-weight: 600;
  color: var(--Coreclean-black);
}

.about-two__btn {
  position: relative;
  display: block;
  margin-top: 35px;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  background-color: var(--Coreclean-base);
  padding: 44px 0 29px;
  z-index: 1;
}

.counter-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: color-dodge;
  opacity: 0.15;
  z-index: -1;
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.counter-two__single {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 17px;
}

.counter-one__content-box {
  position: relative;
  display: block;
}

.counter-one__content-box h3 {
  font-size: 72px;
  color: var(--Coreclean-white);
  font-family: var(--Coreclean-font-two) !important;
  line-height: 72px !important;
  font-weight: 700;
}

.counter-one__text {
  font-size: 22px;
  color: var(--Coreclean-white);
  font-weight: 700;
  line-height: 22px;
}

.counter-one .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 20px 0 120px;
  z-index: 1;
}

.why-choose-one .row {
  align-items: center;
}

.why-choose-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.03;
  z-index: -1;
  mix-blend-mode: luminosity;
}

.why-choose-one__shape-1 {
  position: absolute;
  top: 70px;
  right: 25px;
  opacity: 0.06;
  z-index: -1;
}

.why-choose-one__shape-1 img {
  width: auto;
}

.why-choose-one__shape-2 {
  position: absolute;
  bottom: 50px;
  left: -25px;
  opacity: 0.1;
  filter: grayscale(1);
  z-index: -1;
}

.why-choose-one__shape-2 img {
  width: auto;
}

.why-choose-one__left {
  position: relative;
  display: block;
  margin-right: -60px;
}

.why-choose-one__left .section-title {
  margin-bottom: 31px;
}

.why-choose-one__text {
  margin-bottom: 36px;
}

.why-choose-one__points-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.why-choose-one__points {
  position: relative;
  display: block;
}

.why-choose-one__points li {
  position: relative;
  display: flex;
  gap: 15px;
}

.why-choose-one__points li + li {
  margin-top: 29px;
}

.why-choose-one__points li .icon {
  position: relative;
  display: block;
  top: 3px;
}

.why-choose-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--Coreclean-base);
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.why-choose-one__points li:hover .icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.why-choose-one__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-one__points li .content h3 {
  font-size: 25px;
  line-height: 25px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 9px;
}

.why-choose-one__points li .content h3 a {
  color: var(--Coreclean-black);
}

.why-choose-one__points li .content h3 a:hover {
  color: var(--Coreclean-base);
}

.why-choose-one__btn-box {
  position: relative;
  display: block;
  margin-top: 40px;
}

.why-choose-one__btn-box .thm-btn {
  background-color: var(--Coreclean-base);
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-right: -100px;
  z-index: 1;
}

.why-choose-one__circle {
  position: absolute;
  top: 48px;
  right: 100px;
  height: 448px;
  width: 448px;
  border-radius: 50%;
  border: 2px dashed var(--Coreclean-base);
  transform: rotate(0deg);
  z-index: -1;
}

.why-choose-one__content-one {
  position: relative;
  display: block;
  z-index: 1;
  border-radius: 15px;
}

.why-choose-one__content-one::before {
  position: absolute;
  left: -5px;
  bottom: 0;
  right: 0;
  top: 0;
  background: var(--Coreclean-base);
  content: "";
  z-index: -1;
  border-radius: 15px;
}

.why-choose-one__img-one {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  z-index: 1;
}

.why-choose-one__img-one::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;
}

.why-choose-one__img-one:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.why-choose-one__img-one img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
  border-radius: 15px;
}

.why-choose-one__img-one:hover img {
  transform: scale(1);
}

.why-choose-one__content-two {
  position: relative;
  display: block;
  margin-top: 85px;
  border-radius: 15px;
}

.why-choose-one__content-two::before {
  position: absolute;
  left: -5px;
  bottom: 0;
  right: 0;
  top: 0;
  background: var(--Coreclean-base);
  content: "";
  z-index: -1;
  border-radius: 15px;
}

.why-choose-one__img-two {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  z-index: 1;
}

.why-choose-one__img-two::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;
}

.why-choose-one__img-two:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.why-choose-one__img-two img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
  border-radius: 15px;
}

.why-choose-one__img-two:hover img {
  transform: scale(1);
}

/*==============================================
   location One
===============================================*/
.location-one {
  position: relative;
  display: block;
  padding: 120px 0 85px;
  z-index: 1;
}

.location-one__shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.location-one__shape2 {
  position: absolute;
  top: 55px;
  right: 35px;
  opacity: 0.3;
  z-index: -1;
}

.location-one__main-tab-box {
  position: relative;
  display: block;
}

.location-one__button-box {
  position: relative;
  display: block;
  margin-right: 50px;
}

.location-one__map-img {
  position: relative;
  display: block;
  opacity: 0.4;
}

.location-one__map-img img {
  width: 100%;
}

.location-one__main-tab-box .tab-buttons {
  position: static;
  display: block;
}

.location-one__main-tab-box .tab-buttons .tab-btn {
  position: static;
  display: inline-block;
}

.location-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.location-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.location-one__point-1 {
  position: absolute;
  top: 37%;
  left: 140px;
}

.location-one__markar {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.location-one__markar:before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: 3px;
  left: 3px;
  background-color: var(--Coreclean-base);
  content: "";
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.location-one__point-1:hover .location-one__markar:before {
  background-color: var(--Coreclean-black);
}

.location-one__markar:after {
  content: "\e94f";
  font-family: "icomoon" !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 16px;
  color: var(--Coreclean-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-one__popup-box {
  position: absolute;
  top: 15px;
  right: -100px;
  z-index: 2;
  opacity: 0;
  transform: perspective(400px) rotateX(90deg) translateY(10px);
  transform-origin: bottom;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.location-one__point-1:hover .location-one__popup-box {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg) translateY(0);
  transition-delay: 0.3s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.location-one__popup {
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 12px 12px;
  border-radius: 12px;
}

.location-one__popup-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 250px;
}

.location-one__popup-img {
  position: relative;
  display: block;
  width: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.location-one__popup-img img {
  width: 100%;
  border-radius: 10px;
}

.location-one__popup-content {
  position: relative;
  display: block;
}

.location-one__popup-content p {
  font-size: 14px;
  line-height: 20px;
}

.location-one__popup-content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--Coreclean-black);
  position: relative;
  display: block;
  margin-top: 7px;
}

.location-one__point-2 {
  left: 33%;
  top: inherit;
  bottom: 30%;
}

.location-one__point-3 {
  left: 57%;
  top: 42%;
}

.location-one__point-4 {
  left: auto;
  top: 36%;
  right: 11%;
}

.location-one__point-5 {
  left: auto;
  top: auto;
  bottom: 26%;
  right: 17%;
}

.location-one__markar .ripple,
.location-one__markar .ripple:before,
.location-one__markar .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(253, 96, 58, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(253, 96, 58, 0.5);
  -webkit-box-shadow: 0 0 0 0 rgba(253, 96, 58, 0.5);
  box-shadow: 0 0 0 0 rgba(253, 96, 58, 0.5);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.location-one__markar .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.location-one__markar .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.location-one__right {
  position: relative;
  display: block;
}

.location-one__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 30px 30px 30px;
  margin-left: 20px;
  border-radius: 5px;
  border-bottom: 3px solid var(--Coreclean-base);
}

.location-one__content-title-box {
  position: relative;
  display: block;
}

.location-one__content-title-box h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 10px;
}

.location-one__content-details {
  position: relative;
  display: block;
  margin-top: 20px;
}

.location-one__content-details-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 8px;
}

.location-one__content-details-list {
  position: relative;
  display: block;
}

.location-one__content-details-list li {
  position: relative;
  display: block;
}

.location-one__content-details-list li + li {
  margin-top: 10px;
}

.location-one__content-details-list li p {
  position: relative;
  display: block;
}

.location-one__content-details-list li p a {
  position: relative;
  display: block;
  color: var(--Coreclean-black);
  font-weight: 600;
}

.location-one__content-details-list li p a:hover {
  color: var(--Coreclean-base);
}

.location-one__btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  padding: 150px 0 142px;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.video-one__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--Coreclean-black-rgb), 0.9);
  z-index: -1;
}

.video-one .shape1 {
  position: absolute;
  top: 30px;
  left: 25px;
  opacity: 0.7;
  z-index: -1;
}

.video-one .shape2 {
  position: absolute;
  bottom: 30px;
  right: 0px;
  opacity: 0.65;
  z-index: -1;
}

.video-one__inner {
  position: relative;
  display: block;
  text-align: right;
  z-index: 1;
}

.video-one__img {
  position: absolute;
  bottom: -143px;
  left: 0;
  z-index: -1;
}

.video-one__img img {
  width: auto;
}

.video-one__video-link {
  position: relative;
  display: inline-block;
}

.video-one__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: 85px;
  height: 85px;
  line-height: 89px;
  text-align: center;
  font-size: 21px;
  color: var(--Coreclean-base);
  background-color: var(--Coreclean-base);
  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;
}

.video-one__video-icon:hover {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-black);
}

.video-one__video-icon:before {
  position: absolute;
  top: 13px;
  left: 13px;
  right: 13px;
  bottom: 13px;
  content: "";
  background-color: var(--Coreclean-white);
  border-radius: 50%;
  z-index: -1;
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-one__title {
  font-size: 46px;
  color: var(--Coreclean-white);
  font-weight: 700;
  line-height: 56px;
  margin-top: 45px;
  margin-bottom: 27px;
}

.video-one__text {
  color: rgba(var(--Coreclean-white-rgb), 0.7);
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color: #f1f5f9;
  padding: 120px 0 120px;
  z-index: 1;
}

.services-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  z-index: 1;
}

.services-one__single-inner {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  padding: 45px 35px 45px;
  z-index: 1;
}

.services-one__single-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  opacity: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  z-index: -1;
}

.services-one__single-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(var(--Coreclean-black-rgb), 0.8);
  content: "";
  border-radius: 20px;
  z-index: -1;
}

.services-one__single:hover .services-one__single-bg {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 77px;
  width: 77px;
  background-color: var(--Coreclean-base);
  border-radius: 10px;
  margin-bottom: 25px;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-white);
  font-size: 40px;
}

.services-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
}

.services-one__title a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__title a {
  color: var(--Coreclean-white);
}

.services-one__text {
  padding-bottom: 27px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__text {
  color: var(--Coreclean-white);
}

.services-one__btn {
  padding: 11px 32px 11px;
}

.services-one__single:hover .services-one__btn {
  color: var(--Coreclean-black);
}

.services-one__btn:before {
  background-color: var(--Coreclean-white);
}

.services-one__single:hover .services-one__btn:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.services-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.services-one__carousel.owl-theme .owl-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.services-one__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 10px;
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 10px;
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.services-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.services-one__carousel.owl-theme .owl-nav .owl-next span,
.services-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.services-one__carousel.owl-theme .owl-nav .owl-next:hover,
.services-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-black);
}

/*
-----------------------------------------------
# Testimonial One
----------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--Coreclean-base);
  padding: 120px 0px 80px;
  z-index: 1;
}

.testimonial-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: color-dodge;
  opacity: 0.15;
  z-index: -1;
}

.testimonial-one .section-title {
  margin-bottom: 13px;
}

.testimonial-one .section-title__tagline {
  color: var(--Coreclean-white);
}

.testimonial-one .section-title__title {
  color: var(--Coreclean-white);
}

.testimonial-one .auto-container {
  position: relative;
  display: block;
}

.testimonial-one__inner {
  position: relative;
  display: block;
  padding: 40px 0px 40px;
}

.testimonial-one__inner ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
  margin-left: -15px;
  margin-right: -15px;
}

.testimonial-one__inner ul + ul {
  margin-top: 30px;
}

.testimonial-one__inner ul li {
  position: relative;
  display: block;
  float: left;
  max-width: 550px;
  width: 100%;
  margin: 0 15px;
}

.single-testimonial-one {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(var(--Coreclean-black-rgb), 0.9);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 35px 60px 40px;
}

.single-testimonial-one .top-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-testimonial-one .top-box .left {
  position: relative;
  display: flex;
  align-items: center;
}

.single-testimonial-one .top-box .left .point {
  position: relative;
  display: block;
  margin-right: 5px;
}

.single-testimonial-one .top-box .left .point p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 30px;
  font-family: var(--Coreclean-font-two);
}

.single-testimonial-one .top-box .left .rating {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 15px;
  flex: 1;
}

.single-testimonial-one .top-box .left .rating > li {
  position: relative;
  display: block;
  color: var(--Coreclean-base);
  font-size: 16px;
  margin: 0;
}

.single-testimonial-one .top-box .left .rating > li + li {
  margin-left: 5px;
}

.single-testimonial-one .top-box .right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-testimonial-one .top-box .right .icon {
  position: relative;
  display: block;
  color: var(--Coreclean-white);
  opacity: 0.05;
  font-size: 70px;
  line-height: 0;
  transform: rotate(180deg);
}

.single-testimonial-one .text-box {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  padding-top: 24px;
}

.single-testimonial-one .text-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-testimonial-one .author-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 22px;
}

.single-testimonial-one .author-box .img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.single-testimonial-one .author-box .img img {
  width: 100%;
}

.single-testimonial-one .author-box .text {
  position: relative;
  display: block;
  padding-left: 15px;
  flex: 1;
}

.single-testimonial-one .author-box .text h4 {
  color: var(--Coreclean-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

.single-testimonial-one .author-box .text p {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  background-color: #f1f5f9;
  padding: 120px 0 90px;
  z-index: 1;
}

.team-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.02;
  z-index: -1;
}

.team-one__single {
  position: relative;
  display: block;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 19px 32px 0px rgba(15, 66, 41, 0.14);
  padding: 20px;
  margin-bottom: 30px;
}

.team-one__img {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.team-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 20%,
    rgba(255, 255, 255, 0) 68%
  );
  opacity: 0.8;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  transform: scaleY(1);
}

.team-one__img img {
  width: 100%;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05);
}

.team-one__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.team-one__icon > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--Coreclean-base);
  box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-size: 16px;
  color: var(--Coreclean-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__social-box {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
}

.team-one__social {
  position: relative;
  display: block;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transform-origin: top center;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.team-one__single .team-one__icon:hover .team-one__social {
  transform: scaleY(1);
}

.team-one__social li + li {
  margin-top: 10px;
}

.team-one__social li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.25);
  color: var(--Coreclean-base);
  font-size: 16px;
  height: 50px;
  width: 50px;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social li a:hover {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

.team-one__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--Coreclean-base);
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -15px;
  padding: 15px 15px 15px;
  border-radius: 5px;
  z-index: 2;
}

.team-one__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 9px;
}

.team-one__name a {
  color: var(--Coreclean-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--Coreclean-white);
}

.team-one__sub-title {
  color: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.pricing-one__single {
  position: relative;
  display: block;
  background-color: #f1f5f9;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.pricing-one__single::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--Coreclean-base);
  height: 175px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%);
  content: "";
  z-index: -1;
}

.pricing-one__single::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--Coreclean-base);
  height: 178px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%);
  content: "";
  opacity: 0.5;
  z-index: -1;
}

.pricing-one__single-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 39px 0 40px;
  z-index: 1;
}

.pricing-one__title {
  font-size: 24px;
  color: var(--Coreclean-white);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__price-box {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__price {
  font-size: 36px;
  color: var(--Coreclean-white);
  font-weight: 700;
  line-height: 36px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__price span {
  font-size: 18px;
  position: relative;
  left: -10px;
}

.pricing-one__price-list {
  position: relative;
  display: block;
  margin-top: 80px;
  margin-bottom: 32px;
}

.pricing-one__price-list li {
  position: relative;
  display: block;
  color: var(--Coreclean-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__price-list li + li {
  margin-top: 5px;
}

.pricing-one__btn-box {
  position: relative;
  display: block;
}

.pricing-one__btn {
  padding: 11px 25px 11px;
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

.pricing-one__single:hover .pricing-one__btn {
  color: var(--Coreclean-white);
}

.pricing-one__btn:before {
  background-color: var(--Coreclean-black);
}

.pricing-one__single:hover .pricing-one__btn:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/

.faq-one {
  position: relative;
  display: block;
  background-color: #f1f5f9;
  padding: 120px 0 120px;
  z-index: 1;
}

.faq-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.02;
  z-index: -1;
}

.faq-one .row {
  align-items: center;
}

.faq-one__left-content {
  position: relative;
  display: block;
}

.faq-one__left-content .section-title {
  margin-bottom: 33px;
}

.faq-one__left-content-text {
  position: relative;
  display: block;
}

.faq-one__left-content-text p {
  margin: 0;
}

.faq-one__left-content-list {
  position: relative;
  display: block;
  margin-top: 21px;
}

.faq-one__left-content-list li {
  position: relative;
  display: block;
  padding-left: 30px;
}

.faq-one__left-content-list li + li {
  margin-top: 7px;
}

.faq-one__left-content-list li i {
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--Coreclean-base);
  font-size: 14px;
  line-height: 14px;
}

.faq-one__left-content-list li h4 {
  color: var(--Coreclean-gray-bg);
  font-size: 18px;
  line-height: 26px;
}

.faq-one__left-content-btn {
  position: relative;
  display: block;
  margin-top: 33px;
}

.faq-one__right-content {
  position: relative;
  display: block;
}

.faq-one__right-content .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--Coreclean-gray-rgb), 0.2);
  background: var(--Coreclean-white);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right-content .faq-one-accrodion .accrodion.active {
  border: 1px solid var(--Coreclean-base);
  background: var(--Coreclean-white);
}

.faq-one__right-content .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  background-color: transparent;
  padding: 20px 25px 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right-content .faq-one-accrodion .accrodion.active .accrodion-title {
  border-bottom: 1px solid var(--Coreclean-base);
  background-color: transparent;
}

.faq-one__right-content .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: var(--Coreclean-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right-content .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 20px;
}

.faq-one__right-content .faq-one-accrodion .accrodion-title h4::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 17px;
  color: var(--Coreclean-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  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;
  width: 40px;
  height: 40px;
  background-color: var(--Coreclean-base);
}

.faq-one__right-content
  .faq-one-accrodion
  .accrodion.active
  .accrodion-title
  h4::before {
  content: "\f107";
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  border: 1px solid var(--Coreclean-base);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__right-content .faq-one-accrodion .accrodion-content {
  position: relative;
  border-radius: 20px;
  background-color: var(--Coreclean-white);
  padding: 24px 25px 22px;
}

.faq-one__right-content .faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Before After One
--------------------------------------------------------------*/
.before-after-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.before-after-one__img-box {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 4px solid var(--Coreclean-white);
}

.before-after-one__img-box .before-after {
  position: relative;
}

.before-after-one__img-box .before-after .twentytwenty-container img {
  width: 100%;
  border-radius: 20px;
}

.before-after-one__img-box
  .before-after
  .twentytwenty-horizontal
  .twentytwenty-before-label:before {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100px;
  height: 100px;
  line-height: 90px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0px;
  padding: 0px;
  background: transparent;
  z-index: 1;
  transform: rotate(-45deg);
  text-transform: uppercase;
  display: none;
}

.before-after-one__img-box
  .before-after
  .twentytwenty-horizontal
  .twentytwenty-before-label:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.before-after-one__img-box
  .before-after
  .twentytwenty-horizontal
  .twentytwenty-after-label:before {
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 140px;
  text-align: center;
  font-size: 16px;
  background: transparent;
  font-weight: 700;
  color: #fff;
  margin: 0px;
  padding: 0px;
  bottom: 0px;
  transform: rotate(-45deg);
  z-index: 1;
  text-transform: uppercase;
  display: none;
}

.before-after-one__img-box.before-after
  .twentytwenty-horizontal
  .twentytwenty-after-label:after {
  position: absolute;
  content: "";
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.twentytwenty-after-label,
.twentytwenty-before-label {
  opacity: 1 !important;
}

.before-after-one__img-box .twentytwenty-handle {
  background-color: var(--Coreclean-base);
}

.before-after-one__img-box
  .twentytwenty-horizontal
  .twentytwenty-handle:before {
  height: 290px;
  top: -292px;
}

.before-after-one__img-box .twentytwenty-horizontal .twentytwenty-handle:after {
  height: 275px;
}

.before-after-one__img-box .twentytwenty-overlay {
  border-radius: 10px;
}

.before-after-one__tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.before-after-one__tag span {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  font-family: var(--Coreclean-font-two);
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  padding: 8px 20px 8px;
  border-radius: 12px;
}

.before-after-one__tag-2 {
  left: inherit;
  right: 20px;
}

/*--------------------------------------------------------------
# Appointment One
--------------------------------------------------------------*/
.appointment-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.appointment-one__img1 {
  position: absolute;
  bottom: -50px;
  right: -45px;
  z-index: -1;
}

.appointment-one .shape2 {
  position: absolute;
  top: -35px;
  left: -10px;
}

.appointment-one__shape-1 {
  position: absolute;
  top: 50px;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.appointment-one__shape-1 img {
  width: auto;
}

.appointment-one__left {
  position: relative;
  display: block;
  padding-top: 146px;
}

.appointment-one__address {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.appointment-one__address li {
  position: relative;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.appointment-one__address-content {
  position: relative;
  display: block;
  text-align: center;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 26px 0 23px;
}

.appointment-one__address-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appointment-one__address-icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--Coreclean-black);
  font-weight: 600;
}

.appointment-one__address-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--Coreclean-black);
  margin-top: 14px;
  margin-bottom: 8px;
}

.appointment-one__address-number {
  font-size: 14px;
  color: var(--Coreclean-black);
}

.appointment-one__address-number a {
  color: var(--Coreclean-black);
}

.appointment-one__right {
  position: relative;
  display: block;
}

.appointment-one__right-content {
  position: relative;
  display: block;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 53px 30px 30px;
}

.appointment-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 35px;
}

.appointment-one__form {
  position: relative;
  display: block;
}

.appointment-one__form .row {
  --bs-gutter-x: 20px;
}

.appointment-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.appointment-one__input-box input[type="text"],
.appointment-one__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(120, 142, 155, 0.15);
  border-radius: 5px;
  background-color: var(--Coreclean-white);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--Coreclean-black);
  font-family: var(--Coreclean-font-two);
  opacity: 0.53;
  font-weight: 500;
}

.appointment-one__input-box textarea {
  font-size: 16px;
  color: var(--Coreclean-black);
  height: 158px;
  width: 100%;
  background-color: var(--Coreclean-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(120, 142, 155, 0.15);
  border-radius: 5px;
  font-family: var(--Coreclean-font-two);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  opacity: 0.53;
}

.appointment-one__btn {
  border: none;
  font-size: 16px;
  padding: 11px 25px 11px;
  border-radius: 5px;
}

.appointment-one__btn::before {
  border-radius: 5px;
}

.appointment-one__input-box.text-message-box {
  height: 158px;
}

/*--------------------------------------------------------------
# Appointment Two
--------------------------------------------------------------*/
.appointment-two {
  position: relative;
  display: block;
  background-color: #f1f5f9;
}

/*--------------------------------------------------------------
# Appointment Three
--------------------------------------------------------------*/
.appointment-two.style3 {
  background: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.blog-one__single {
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 20px;
  margin-bottom: 30px;
  z-index: 1;
}

.blog-one__single:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 5px;
  left: 0;
  right: 0;
  background-color: var(--Coreclean-base);
  border-radius: 2px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-one__single:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.blog-one__img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.blog-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(60, 91, 101) 0%,
    rgba(60, 91, 101, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(60, 91, 101) 0%,
    rgba(60, 91, 101, 0) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(60, 91, 101) 0%,
    rgba(60, 91, 101, 0) 100%
  );
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom 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: 1;
}

.blog-one__single:hover .blog-one__img:before {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.blog-one__img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05);
}

.blog-one__tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-one__tag li {
  position: relative;
  display: block;
}

.blog-one__tag li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--Coreclean-white);
  font-weight: 500;
  line-height: 14px;
  background-color: var(--Coreclean-base);
  padding: 12px 16px 12px;
  border-radius: 8px;
}

.blog-one__tag li a:hover {
  color: var(--Coreclean-black);
  background-color: var(--Coreclean-white);
}

.blog-one__content {
  position: relative;
  display: block;
  padding: 35px 10px 18px;
}

.blog-two__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-two__meta li {
  position: relative;
  display: block;
}

.blog-two__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--Coreclean-gray);
}

.blog-two__meta li a span {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-black);
  font-size: 16px;
  line-height: 16px;
}

.blog-two__meta li a:hover {
  color: var(--Coreclean-base);
}

.blog-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 27px;
  margin-bottom: 35px;
}

.blog-one__title a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__title a {
  color: var(--Coreclean-base);
}
.stats-section {
  padding: 40px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e2ddd9;
  background: #98242d;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;padding-top: 50px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #98242d;
}

.stat-icon i {
  font-size: 24px;
}
.stat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-number {
  margin-bottom: 4px;
  color: #98242d;
  font-size: 1.5rem;
  font-weight: 800;
}
.stat-label {
  color: #000;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  bottom: 80px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.site-footer__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #010130;
  mix-blend-mode: hue;
  z-index: -1;
}

.site-footer__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--Coreclean-black-rgb), 0.98);
  z-index: -1;
}

.site-footer__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.45;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 117px 0 110px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: 3px;
}

.footer-widget__logo {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  color: var(--Coreclean-white);
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__social a {
  position: relative;
  height: 35px;
  width: 35px;
  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;
  color: var(--Coreclean-black);
  background-color: var(--Coreclean-white);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--Coreclean-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.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;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a + a {
  margin-left: 10px;
}

.footer-widget__explore {
  position: relative;
  display: block;
  margin-left: 47px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.footer-widget__title {
  font-size: 24px;
  color: var(--Coreclean-white);
  line-height: 24px;
  font-weight: 700;
}

.footer-widget__explore-list-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-widget__explore-list {
  position: relative;
  display: block;
}

.footer-widget__explore-list li + li {
  margin-top: 11px;
}

.footer-widget__explore-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--Coreclean-white);
  padding-left: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-widget__explore-list li a:hover {
  color: var(--Coreclean-base);
  padding-left: 22px;
}

.footer-widget__explore-list li a:before {
  content: "\e908";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  color: var(--Coreclean-white);
  font-family: "icomoon" !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__explore-list li a:hover:before {
  color: var(--Coreclean-base);
}

.footer-widget__service {
  position: relative;
  display: block;
}

.footer-widget__service-list {
  position: relative;
  display: block;
}

.footer-widget__service-list li + li {
  margin-top: 11px;
}

.footer-widget__service-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--Coreclean-white);
  padding-left: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-widget__service-list li a:hover {
  color: var(--Coreclean-base);
  padding-left: 22px;
}

.footer-widget__service-list li a:before {
  content: "\e908";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  color: var(--Coreclean-white);
  font-family: "icomoon" !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__service-list li a:hover:before {
  color: var(--Coreclean-base);
}

.footer-widget__newsletter {
  position: relative;
  display: block;
}

.footer-widget__newsletter-text {
  font-size: 16px;
  color: var(--Coreclean-white);
}

.footer-widget__email-box {
  position: relative;
  display: block;
  padding-top: 37px;
}

.footer-widget__email-input-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.footer-widget__email-input-box input[type="email"] {
  height: 48px;
  width: 100%;
  background-color: var(--Coreclean-white);
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--Coreclean-black);
  border: none;
  padding-left: 15px;
  padding-right: 20px;
  font-family: var(--Coreclean-font-two);
  border-radius: 10px;
}

.footer-widget__subscribe-btn {
  outline: none;
  border: none;
  width: 100%;
  background-color: var(--Coreclean-base);
  padding: 11px 40px 11px;
  font-weight: 500;
}

.footer-widget__subscribe-btn i {
  font-size: 15px;
  padding-left: 2px;
}

.footer-widget__subscribe-btn:hover {
  color: var(--Coreclean-black);
}

.footer-widget__subscribe-btn:before {
  background-color: var(--Coreclean-white);
}

.site-footer__bottom {
  position: relative;
  display: block;
  padding: 36px 0;
  z-index: 1;
  background-color: rgba(var(--Coreclean-black-rgb), 1);
  margin-top: -15px;
}

.site-footer__bottom-inner {
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}

.site-footer__bottom-text {
  color: var(--Coreclean-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
}
.site-footer__bottom-text a {
  color: var(--Coreclean-base);
  padding: 0;
}
.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
  padding-left: 25px;
  padding-right: 30px;
}

.site-footer__bottom-menu li:first-child {
  padding-left: 0px;
}

.site-footer__bottom-menu li:last-child {
  padding-right: 0px;
}

.site-footer__bottom-menu li::before {
  position: absolute;
  top: 11px;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--Coreclean-white);
  border-radius: 50%;
  content: "";
}

.site-footer__bottom-menu li:last-child::before {
  display: none;
}

.site-footer__bottom-menu li a {
  color: var(--Coreclean-white);
  font-size: 17px;
  line-height: 27px;
}

.site-footer__bottom-menu li a:hover {
  color: var(--Coreclean-base);
}

/*--------------------------------------------------------------
# Working Process
--------------------------------------------------------------*/
.working-process {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 110px 0 112px;
  background-color: var(--Coreclean-black);
  z-index: 1;
}

.working-process__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: left top;
  opacity: 0.05;
  z-index: -1;
}

.working-process .shape1 {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: -1;
  opacity: 0.5;
}

.working-process .shape2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  opacity: 0.1;
  z-index: -1;
}

.working-process__top {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 52px;
}

.working-process__top h3 {
  font-size: 46px;
  color: var(--Coreclean-white);
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 17px;
}

.working-process__top p {
  color: var(--Coreclean-white);
}

.working-process__single {
  position: relative;
  display: block;
  text-align: center;
}

.working-process__content {
  position: relative;
  display: block;
  padding: 30px 15px 27px;
  border-radius: 5px;
  z-index: 1;
}

.working-process__content:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(5, 53, 83, 0.5);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleX(1);
}

.working-process__single:hover .working-process__content:before {
  transform: scaleX(0);
}

.working-process__content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 5px;
  background-color: var(--Coreclean-base);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.working-process__single:hover .working-process__content:after {
  transform: scaleY(1);
}

.working-process__icon {
  position: relative;
  display: block;
}

.working-process__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--Coreclean-base);
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.working-process__single:hover .working-process__icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
  color: var(--Coreclean-white);
}

.working-process__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 19px;
  margin-bottom: 14px;
}

.working-process__title a {
  color: var(--Coreclean-white);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.working-process__title a:hover {
  color: var(--Coreclean-black);
}

.working-process__text {
  color: #eeeeee;
}

.working-process__step {
  position: relative;
  display: block;
  margin-top: 14px;
}

.working-process__step p {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-white);
}

.working-process__step p:before {
  position: absolute;
  top: 0;
  right: -12px;
  height: 10px;
  width: 10px;
  font-size: 16px;
  font-weight: 400;
  counter-increment: count;
  content: "" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  color: var(--Coreclean-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

/*--------------------------------------------------------------
# Uniqueness
--------------------------------------------------------------*/
.uniqueness {
  position: relative;
  display: block;
  padding: 109px 0 90px;
}

.uniqueness__top {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 52px;
}

.uniqueness__top h3 {
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 17px;
}

.uniqueness__top p {
  color: var(--Coreclean-black);
}

.uniqueness__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 38px 40px 32px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.uniqueness__single:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--Coreclean-base);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.uniqueness__single:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.uniqueness__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 9px;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: var(--Coreclean-black);
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-two__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 500px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #022c43;
  background: linear-gradient(
    360deg,
    rgba(2, 44, 67, 0.69) 0%,
    rgba(2, 44, 67, 0.4) 53%,
    rgba(2, 44, 67, 0.25) 100%
  );
  content: "";
}

.testimonial-two .shape1 {
  position: absolute;
  top: 0;
  left: -20px;
  opacity: 0.05;
  z-index: -1;
}

.testimonial-two__left {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonial-two__left .section-title {
  margin-bottom: 32px;
}

.testimonial-two .section-title__title {
  color: var(--Coreclean-white);
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  padding-top: 48px;
  z-index: 1;
}

.testimonial-two__single-icon {
  position: absolute;
  right: 45px;
  bottom: 30px;
  z-index: 2;
}

.testimonial-two__single-icon span::before {
  position: relative;
  display: inline-block;
  color: rgba(var(--Coreclean-base-rgb), 1);
  font-size: 50px;
  line-height: 50px;
}

.testimonial-two__single-img {
  position: absolute;
  top: 0px;
  left: 45px;
  width: 90px;
  z-index: 5;
}

.testimonial-two__single-img::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px solid var(--Coreclean-base);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.testimonial-two__single-img-inner {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-two__single-img-inner img {
  width: 100%;
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  background: var(--Coreclean-white);
  padding: 76px 45px 37px;
  border-radius: 10px;
  z-index: 1;
}

.testimonial-two__single-content {
  position: relative;
  display: block;
}

.testimonial-two__single-content p {
  margin: 0;
}

.testimonial-two__single-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-two__single-content-bottom .author-box {
  position: relative;
  display: block;
  padding-left: 15px;
}

.testimonial-two__single-content-bottom .author-box::before {
  position: absolute;
  top: 7px;
  left: 0;
  bottom: 8px;
  width: 2px;
  background: var(--Coreclean-base);
  content: "";
}

.testimonial-two__single-content-bottom .author-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.testimonial-two__single-content-bottom .author-box p {
  color: var(--Coreclean-base);
}

.testimonial-two__single-content-bottom .rating {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 33px;
  flex: 1;
}

.testimonial-two__single-content-bottom .rating > li {
  position: relative;
  display: block;
  color: var(--Coreclean-base);
  font-size: 16px;
  margin: 0;
}

.testimonial-two__single-content-bottom .rating > li + li {
  margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 45px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 10px;
  color: var(--Coreclean-white);
  background-color: rgba(var(--Coreclean-base-rgb), 1);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 10px;
  color: var(--Coreclean-white);
  background-color: rgba(var(--Coreclean-base-rgb), 1);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  color: var(--Coreclean-black);
  background-color: var(--Coreclean-white);
}

.testimonial-two__form-box {
  position: relative;
  display: block;
  background-color: var(--Coreclean-base);
  border-radius: 10px;
  padding: 52px 45px 55px;
  border: 5px solid rgba(var(--Coreclean-black-rgb), 0.3);
  z-index: 5;
}

.testimonial-two__form-title-box {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.testimonial-two__form-title {
  font-size: 34px;
  line-height: 34px;
  color: var(--Coreclean-white);
  font-weight: 600;
}

.testimonial-two__form-sub-title {
  color: var(--Coreclean-white);
  font-weight: 500;
  margin-top: 6px;
}

.testimonial-two__form {
  position: relative;
  display: block;
}

.testimonial-two__input-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.testimonial-two__input-box input[type="text"],
.testimonial-two__input-box input[type="email"],
.testimonial-two__input-box textarea {
  height: 60px;
  width: 100%;
  line-height: 60px;
  background-color: var(--Coreclean-white);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 15px;
  color: var(--Coreclean-gray);
  display: block;
  font-weight: 400;
  border-radius: 10px;
}

.testimonial-two__input-box .select-box .nice-select {
  background-color: var(--Coreclean-white);
  border: none;
  color: var(--Coreclean-gray);
  font-size: 15px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0px;
  float: none;
}

.testimonial-two__input-box .select-box .nice-select:after {
  position: absolute;
  top: 48%;
  right: 20px;
  border-bottom: 2px solid var(--Coreclean-gray);
  border-right: 2px solid var(--Coreclean-gray);
}

.testimonial-two__input-box .nice-select .option:hover,
.testimonial-two__input-box .nice-select .option.focus,
.testimonial-two__input-box .nice-select .option.selected.focus {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

.testimonial-two__input-box textarea {
  height: 150px;
}

.testimonial-two__form-btn-box {
  position: relative;
  display: block;
}

.testimonial-two__form-btn-box button {
  border: none;
}

.testimonial-two__form-btn-box .thm-btn {
  background: var(--Coreclean-black);
  width: 100%;
}

.testimonial-two__form-btn-box .thm-btn:hover {
  color: var(--Coreclean-black);
}

.testimonial-two__form-btn-box .thm-btn::before {
  background-color: var(--Coreclean-white);
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  padding: 110px 0 90px;
  z-index: 1;
}

.project-one .container {
  max-width: 1640px;
}

.project-one__section-title {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 52px;
}

.project-one__section-title h3 {
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 17px;
}

.project-one__section-title p {
  color: var(--Coreclean-black);
}

.project-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-one__img {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.project-one__img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 5px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.85);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
}

.project-one__single:hover .project-one__img:before {
  opacity: 1;
}

.project-one__img img {
  width: 100%;
  border-radius: 5px;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.project-one__single:hover .project-one__img img {
  transform: scale(1);
}

.project-one__content {
  position: absolute;
  bottom: 23px;
  left: 23px;
  right: 23px;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 18px 32px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 19px;
  opacity: 0;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.project-one__single:hover .project-one__content {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.project-one__sub-title {
  color: var(--Coreclean-black);
}

.project-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 5px;
}

.project-one__title a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__title a:hover {
  color: var(--Coreclean-base);
}

.project-one__one-arrow {
  position: relative;
  display: block;
}

.project-one__one-arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--Coreclean-base);
  font-size: 18px;
  color: var(--Coreclean-white);
  border-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__one-arrow a:hover {
  background-color: var(--Coreclean-black);
  color: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  background-color: transparent;
  z-index: 1;
}

.team-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.team-two:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background-color: var(--Coreclean-base);
  z-index: -1;
}

.team-two:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background-color: var(--Coreclean-base);
  z-index: -2;
}

.team-two .section-title__tagline {
  color: var(--Coreclean-white);
}

.team-two .section-title__title {
  color: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  background-color: var(--Coreclean-base);
  z-index: 1;
}

.contact-one__shpae-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.07;
  z-index: -1;
}

.contact-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 57px 0 55px;
}

.contact-one__content {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--Coreclean-white);
}

.contact-one__btn {
  color: var(--Coreclean-black);
  background-color: var(--Coreclean-white);
  padding: 18px 50px 16px;
}

/*--------------------------------------------------------------
# Call One
--------------------------------------------------------------*/
.call-one {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 2;
  margin-bottom: -90px;
}

.call-one__inner {
  position: relative;
  display: flex;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 49px 60px 44px;
  border-bottom: 3px solid var(--Coreclean-base);
}

.call-one__left {
  position: relative;
  display: block;
  max-width: 480px;
  width: 100%;
}

.call-one__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 15px;
}

.call-one__number {
  font-size: 24px;
  color: var(--Coreclean-black);
  font-weight: 600;
  font-family: var(--Coreclean-font-two);
}

.call-one__number a {
  color: var(--Coreclean-black);
}

.call-one__text {
  margin-left: 60px;
}

/*--------------------------------------------------------------
# uniqueness Two
--------------------------------------------------------------*/
.uniqueness-two {
  background-color: #f1f5f9;
  padding: 100px 0 80px;
}

.uniqueness-two .uniqueness__top {
  text-align: left;
}

/*--------------------------------------------------------------
# uniqueness Three
--------------------------------------------------------------*/
.uniqueness.style3 {
  position: relative;
  display: block;
  background-color: #f1f5f9;
  padding-top: 195px;
}

/*--------------------------------------------------------------
# uniqueness Four
--------------------------------------------------------------*/
.uniqueness.style4 {
  background-color: #f1f5f9;
}

/*--------------------------------------------------------------
# Video Two
--------------------------------------------------------------*/
.video-two .video-one__inner {
  text-align: left;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.blog-three__single {
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
}

.blog-three__single-inner {
  position: relative;
  display: block;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  z-index: 1;
}

.blog-three__img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.blog-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  background-color: rgba(var(--Coreclean-black-rgb), 0.7);
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom 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: 1;
}

.blog-three__single:hover .blog-three__img:before {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.blog-three__img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__single:hover .blog-three__img img {
  transform: scale(1.05);
}

.blog-three__content {
  position: relative;
  display: block;
  margin-top: 21px;
  margin-bottom: 21px;
}

.blog-three__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-three__meta li + li {
  margin-left: 15px;
}

.blog-three__meta li a {
  font-size: 14px;
  color: var(--Coreclean-gray);
}

.blog-three__meta li a i {
  font-size: 15px;
  padding-right: 4px;
}

.blog-three__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 17px;
  margin-bottom: 20px;
}

.blog-three__title a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__title a:hover {
  color: var(--Coreclean-base);
}

.blog-three__btn {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--Coreclean-black);
  font-family: var(--Coreclean-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__btn i {
  font-size: 15px;
  padding-left: 10px;
}

.blog-three__single:hover .blog-three__btn {
  color: var(--Coreclean-base);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
}

.page-header-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 2, 19);
  background: linear-gradient(
    40deg,
    rgba(0, 2, 19, 0.85) 25%,
    rgba(var(--Coreclean-black-rgb), 1) 50%,
    rgba(0, 2, 19, 0.9) 65%
  );
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 157px 0 150px;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 46px;
  color: var(--Coreclean-white);
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 3px;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  font-family: var(--Coreclean-font-two);
  color: var(--Coreclean-base);
}

.thm-breadcrumb li + li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--Coreclean-white);
}

.thm-breadcrumb li span {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page-1 {
  padding: 120px 0 120px;
}

.blog-page-2 {
  padding: 120px 0 120px;
}

.blog-page__pagination {
  position: relative;
  display: block;
  text-align: center;
  padding: 30px 0 0px;
}

.blog-page__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 10px;
}

.blog-page__pagination .pg-pagination li:last-child {
  margin-right: 0;
}

.blog-page__pagination .pg-pagination li a {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  color: var(--Coreclean-black);
  background-color: #eef3f5;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--Coreclean-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-page__pagination .pg-pagination li a:hover {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 110px 0 110px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
  margin-right: 20px;
  z-index: 1;
}

.blog-details__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  z-index: 1;
}

.blog-details__img img {
  width: 100%;
  border-radius: 15px;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__meta li + li {
  margin-left: 30px;
}

.blog-details__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--Coreclean-base);
}

.blog-details__meta li a i {
  color: var(--Coreclean-base);
  padding-right: 10px;
}

.blog-details__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
  margin-top: 30px;
  margin-bottom: 22px;
}

.blog-details__text-1 {
  padding-bottom: 26px;
}

.blog-details__quote-box {
  position: relative;
  display: block;
  text-align: center;
  background-color: #f1f5f9;
  padding: 80px 65px 55px;
  margin-top: 52px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.blog-details__quote-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.blog-details__quote-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-details__quote-icon span {
  font-size: 20px;
  color: var(--Coreclean-base);
}

.blog-details__img-boxes {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__img-boxes-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-boxes-single img {
  width: 100%;
  border-radius: 10px;
}

.blog-details__tag-social-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 2px solid #eef3f5;
  margin-top: 46px;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.blog-details__tag {
  position: relative;
  display: block;
}

.blog-details__tag-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 15px;
}

.blog-details__tag-list {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__tag-list a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--Coreclean-black);
  background-color: #eef3f5;
  padding: 4px 12px;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tag-list a:hover {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

.blog-details__tag-list a + a {
  margin-left: 10px;
}

.blog-details__social {
  position: relative;
  display: block;
}

.blog-details__social-list {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__social-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: var(--Coreclean-base);
  border-radius: 50%;
  color: var(--Coreclean-white);
  font-size: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-black);
}

.blog-details__social-list a + a {
  margin-left: 10px;
}

.blog-details__prev-next-post {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-details__prev-post {
  position: relative;
  display: block;
}

.blog-details__prev-post a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--Coreclean-black);
  font-weight: 700;
  font-family: var(--Coreclean-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__prev-post a span {
  padding-right: 15px;
}

.blog-details__prev-post a:hover {
  color: var(--Coreclean-base);
}

.blog-details__next-post {
  position: relative;
  display: block;
}

.blog-details__next-post a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--Coreclean-black);
  font-weight: 700;
  font-family: var(--Coreclean-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__next-post a span {
  padding-left: 15px;
}

.blog-details__next-post a:hover {
  color: var(--Coreclean-base);
}

.author {
  position: relative;
  display: block;
  background-color: #f4f9fb;
  padding-top: 37px;
  padding-bottom: 37px;
  padding-left: 205px;
  padding-right: 50px;
  border-radius: 15px;
  margin-top: 60px;
  margin-bottom: 55px;
  z-index: 1;
}

.author__img {
  position: absolute;
  width: 140px;
  top: 42px;
  left: 34px;
  overflow: hidden;
  border-radius: 50%;
}

.author__img img {
  width: 100%;
  border-radius: 50%;
}

.author__content {
  position: relative;
  display: block;
}

.author__content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.author__content p {
  padding-top: 4px;
  padding-bottom: 12px;
}

.author__social {
  position: relative;
  display: flex;
  align-items: center;
}

.author__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--Coreclean-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.author__social a:hover {
  opacity: 1;
}

.author__social a + a {
  margin-left: 10px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

.comment-one__single {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-bottom: 27px;
  margin-bottom: 34px;
}

.comment-one__single:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 124px;
  right: 0;
  height: 1px;
  background-color: #eef3f5;
}

.comment-one__single-2 {
  margin-left: 70px;
}

.comment-one__single-3:before {
  display: none;
}

.comment-one__content {
  position: relative;
  margin-left: 25px;
  max-width: 565px;
  width: 100%;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--Coreclean-black);
  margin-bottom: 12px;
  font-weight: 700;
}

.comment-one__content h3 span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--Coreclean-font);
}

.comment-one__btn {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--Coreclean-base);
  font-family: var(--Coreclean-font-two);
  text-transform: capitalize;
  margin-top: 13px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-one__btn:hover {
  color: var(--Coreclean-base);
}

.comment-one__btn:before {
  background-color: var(--Coreclean-black);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form {
  position: relative;
  display: block;
}

.comment-form .comment-form__title {
  margin-top: -13px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.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: 58px;
  width: 100%;
  border: 0.5px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 10px;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: rgba(var(--Coreclean-black-rgb), 0.53);
  display: block;
  font-weight: 500;
  font-family: var(--Coreclean-font-two);
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: rgba(var(--Coreclean-black-rgb), 0.53);
  height: 158px;
  width: 100%;
  background-color: transparent;
  padding: 15px 20px 20px;
  border: 0.5px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 10px;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  font-family: var(--Coreclean-font-two);
}

.comment-form__btn {
  border: none;
  background-color: var(--Coreclean-base);
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 15px 20px 14px;
}

.comment-form__btn::before {
  background-color: var(--Coreclean-black);
  border-radius: 5px;
}

.comment-form__input-box.text-message-box {
  height: 158px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single + .sidebar__single {
  margin-top: 45px;
}

.sidebar__title {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
  display: block;
  border-radius: 15px;
  background-color: rgba(var(--Coreclean-base-rgb), 1);
  padding: 25px;
}

.sidebar__search-input-box {
  position: relative;
  display: block;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  border-radius: 9px;
  outline: none;
  background-color: rgba(var(--Coreclean-white-rgb), 0.15);
  color: rgba(var(--Coreclean-white-rgb), 1);
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  height: 56px;
  width: 100%;
  padding-right: 80px;
  font-family: var(--Coreclean-font-two);
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: rgba(var(--Coreclean-white-rgb), 1);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: rgba(var(--Coreclean-white-rgb), 1);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: rgba(var(--Coreclean-white-rgb), 1);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: rgba(var(--Coreclean-white-rgb), 1);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: rgba(var(--Coreclean-white-rgb), 1);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: rgba(var(--Coreclean-white-rgb), 1);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: rgba(var(--Coreclean-white-rgb), 1);
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sidebar__about {
  position: relative;
  display: block;
  text-align: center;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  padding: 35px 40px 35px;
}

.sidebar__about-img {
  position: relative;
  display: block;
}

.sidebar__about-img img {
  width: auto;
  border-radius: 20px;
}

.sidebar__about-content {
  position: relative;
  display: block;
  margin-top: 25px;
}

.sidebar__about-content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.sidebar__about-content p {
  padding-top: 15px;
  padding-bottom: 17px;
}

.sidebar__about-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__about-social a {
  position: relative;
  height: 30px;
  width: 30px;
  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;
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.sidebar__about-social a + a {
  margin-left: 10px;
}

.sidebar__about-social a:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-black);
}

.sidebar__about-social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--Coreclean-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.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;
}

.sidebar__about-social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.sidebar__category {
  position: relative;
  display: block;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgb(0 0 0 / 7%);
  padding: 32px 25px 42px;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  margin-bottom: 25px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li + li {
  margin-top: 22px;
}

.sidebar__category-list li a {
  color: var(--Coreclean-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--Coreclean-font-two);
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 10px;
  padding: 10px 15px 10px;
  align-items: center;
  justify-content: space-between;
}

.sidebar__category-list li a:hover {
  color: var(--Coreclean-base);
}

.sidebar__category-list li.active a {
  color: var(--Coreclean-base);
}

.sidebar__category-list li a span {
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--Coreclean-base);
  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;
  font-size: 18px;
  color: var(--Coreclean-black);
  font-weight: 600;
  font-family: var(--Coreclean-font-two);
  background-color: #f1f5f9;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.sidebar__category-list li a:hover span {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

.sidebar__category-list li.active a span {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 32px 30px 30px;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgb(0 0 0 / 7%);
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-bottom: 19px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  position: relative;
  display: flex;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li + li {
  margin-top: 26px;
}

.sidebar__post-image {
  margin-right: 20px;
}

.sidebar__post-image > img {
  width: 80px;
  border-radius: 4px;
}

.sidebar__post-content {
  position: relative;
  top: -5px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 28px;
}

.sidebar__post-content h3 a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.sidebar__post-content h3 span {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  display: block;
  font-family: var(--Coreclean-font);
  color: var(--Coreclean-black);
}

.sidebar__post-list li:hover .sidebar__post-content h3 a {
  color: var(--Coreclean-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  padding: 32px 20px 35px;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgb(0 0 0 / 7%);
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-bottom: 19px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 12px;
  color: var(--Coreclean-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #eef3f5;
  position: relative;
  display: inline-block;
  padding: 5px 12px 3px;
  margin-left: 5px;
  font-weight: 700;
  font-family: var(--Coreclean-font-two);
  border-radius: 10px;
}

.sidebar__tags-list a + a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--Coreclean-white);
  background: var(--Coreclean-base);
}

.sidebar__help {
  position: relative;
  display: block;
  background-color: var(--Coreclean-base);
  border-radius: 15px;
  padding: 30px 25px 35px;
}

.sidebar__help-title {
  font-size: 30px;
  color: var(--Coreclean-white);
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 16px;
}

.sidebar__help-text {
  color: var(--Coreclean-white);
}

.sidebar__help-call {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--Coreclean-white);
  max-width: 280px;
  width: 100%;
  padding: 12px 20px 12px;
  overflow: hidden;
  margin-top: 17px;
  border-radius: 10px;
  z-index: 1;
}

.sidebar__help-call:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45px;
  background-color: var(--Coreclean-base);
  opacity: 0.15;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: -1;
}

.sidebar__help-call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: var(--Coreclean-base);
  border-radius: 50%;
  font-size: 15px;
  color: var(--Coreclean-white);
}

.sidebar__help-call-number {
  margin-left: 15px;
}

.sidebar__help-call-number h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.sidebar__help-call-number h4 a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__help-call-number h4 a:hover {
  color: var(--Coreclean-base);
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  position: relative;
  display: block;
  background-color: #f1f5f9;
  padding: 110px 0 80px;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
  position: relative;
  display: block;
  padding: 110px 0 80px;
}

.services-page .services-one__single {
  margin-bottom: 30px;
}

.why-choose-two {
  background-color: #f1f5f9;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.service-details__sidebar {
  position: relative;
  display: block;
}

.service-details__service-list-box {
  position: relative;
  display: block;
  background-color: #f1f8fb;
  padding: 32px 20px 13px;
  border-radius: 15px;
}

.service-details__service-title {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 25px;
}

.service-details__service-list {
  margin: 0;
}

.service-details__service-list li a {
  color: var(--Coreclean-black);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 16px 20px 15px;
  font-family: var(--Coreclean-font-two);
  border-radius: 27px;
  z-index: 1;
}

.service-details__service-list li:hover a,
.service-details__service-list li.active a {
  color: var(--Coreclean-white);
}

.service-details__service-list li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--Coreclean-base);
  border-radius: 27px;
  transform: scaleY(0) rotateX(0deg);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
}

.service-details__service-list li a:hover:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.service-details__service-list li.active a:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.service-details__service-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--Coreclean-black);
  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;
  font-size: 15px;
  z-index: 1;
}

.service-details__service-list li:hover a span,
.service-details__service-list li.active a span {
  color: var(--Coreclean-white);
}

.service-details__download-box {
  position: relative;
  display: block;
  margin-top: 35px;
  margin-bottom: 35px;
}

.service-details__download-list {
  position: relative;
  display: block;
}

.service-details__download-list li + li {
  margin-top: 10px;
}

.service-details__download-list li a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--Coreclean-base);
  font-size: 20px;
  font-weight: 600;
  color: var(--Coreclean-white);
  font-family: var(--Coreclean-font-two);
  border-radius: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__download-list li:hover a {
  background-color: var(--Coreclean-black);
  color: var(--Coreclean-white);
}

.service-details__download-list li a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: var(--Coreclean-black);
  font-size: 30px;
  color: var(--Coreclean-white);
  margin-right: 25px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__download-list li:hover a span {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
}

.service-details__help {
  text-align: center;
  border-radius: 20px;
}

.service-details__help .sidebar__help-call {
  margin: 17px auto 0;
  border-radius: 30px;
}

.service-details__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.service-details__content-box {
  position: relative;
  display: block;
}

.service-details__content-box-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.service-details__content-box-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--Coreclean-black-rgb), 1);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.service-details__content-box-img:hover:before {
  opacity: 0.5;
}

.service-details__content-box-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.service-details__content-box-img:hover img {
  transform: scale(1.05) rotate(0deg);
}

.service-details__text-1 {
  padding-top: 29px;
  padding-bottom: 26px;
}

.service-details__how-it-works {
  position: relative;
  display: block;
  margin-top: 42px;
  margin-bottom: 42px;
}

.service-details__title-two {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 32px;
}

.service-details__how-it-works-video {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.service-details__how-it-works-video img {
  width: 100%;
  border-radius: 20px;
}

.service-details__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.service-details__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: 85px;
  height: 85px;
  line-height: 89px;
  text-align: center;
  font-size: 21px;
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
  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;
}

.service-details__video-icon:hover {
  background-color: var(--Coreclean-black);
  color: var(--Coreclean-white);
}

.service-details__video-link .ripple,
.service-details__video-icon .ripple:before,
.service-details__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--Coreclean-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.service-details__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.service-details__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.service-details__why-us {
  position: relative;
  display: block;
}

.service-details__why-us .row {
  --bs-gutter-x: 20px;
}

.service-details__why-us .service-details__title-two {
  margin-bottom: 36px;
}

.service-details__why-us-text-1 {
  padding-bottom: 32px;
}

.service-details__why-us-single {
  position: relative;
  display: block;
  text-align: center;
  background-color: #f1f8fb;
  padding: 45px 25px 37px;
  border-radius: 20px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__why-us-single:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
}

.service-details__why-us-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  background-color: var(--Coreclean-base);
  border-radius: 10px;
  margin: 0 auto 0;
}

.service-details__why-us-icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--Coreclean-white);
}

.service-details__why-us-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 25px;
  margin-bottom: 14px;
}

.service-details__benefit {
  position: relative;
  display: block;
  margin-top: 15px;
}

.service-details__faq {
  position: relative;
  display: block;
  background-color: #f1f5f9;
}

.service-details__faq .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border-radius: 0;
}

.service-details__faq .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 30px 16px;
  background-color: var(--Coreclean-base);
  border-radius: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details__faq .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--Coreclean-white);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__faq .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 10px;
}

.service-details__faq .faq-one-accrodion .accrodion.active .accrodion-title {
  background-color: var(--Coreclean-base);
}

.service-details__faq .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--Coreclean-white);
}

.service-details__faq .faq-one-accrodion .accrodion-title h4::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--Coreclean-white);
  position: absolute;
  top: 50%;
  right: 0px;
  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;
}

.service-details__faq
  .faq-one-accrodion
  .accrodion.active
  .accrodion-title
  h4::before {
  content: "\f106";
  font-weight: 900;
  color: var(--Coreclean-white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-details__faq .faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 20px 30px 8px;
  background-color: #f1f5f9;
  border-radius: 15px;
}

.service-details__faq .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.project-details__sidebar {
  position: relative;
  display: block;
}

.project-details__project-list-box {
  position: relative;
  display: block;
  background-color: #f1f8fb;
  padding: 32px 20px 13px;
  border-radius: 15px;
}

.project-details__project-list {
  position: relative;
  display: block;
  margin: 0;
}

.project-details__project-list li a {
  color: var(--Coreclean-black);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 16px 20px 15px;
  font-family: var(--Coreclean-font-two);
  border-radius: 27px;
  z-index: 1;
}

.project-details__project-list li:hover a {
  color: var(--Coreclean-white);
}

.project-details__project-list li.active a {
  color: var(--Coreclean-white);
}

.project-details__project-list a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--Coreclean-base);
  border-radius: 27px;
  transform: scaleY(0) rotateX(0deg);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
}

.project-details__project-list li a:hover:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.project-details__project-list li.active a:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.project-details__project-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--Coreclean-black);
  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;
  font-size: 15px;
  z-index: 1;
}

.project-details__project-list li:hover a span,
.project-details__project-list li.active a span {
  color: var(--Coreclean-white);
}

.project-details__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.project-details__video {
  position: relative;
  display: block;
}

.project-details__video-img {
  position: relative;
  display: block;
  z-index: 1;
}

.project-details__video-img img {
  width: 100%;
  border-radius: 20px;
}

.project-details__project-value {
  position: relative;
  display: block;
  margin-top: 30px;
}

.project-details__project-value .row {
  --bs-gutter-x: 0px;
}

.project-details__project-value-single {
  position: relative;
  display: block;
  text-align: center;
  padding: 29px 0px 30px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.1);
  z-index: 1;
}

.project-details__project-value-single p {
  color: var(--Coreclean-gray);
}

.project-details__project-value-single h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--Coreclean-black);
  line-height: 18px;
  margin-top: 12px;
}

.project-details__project-value-single-two {
  border-left: 0;
  border-right: 0;
}

.project-details__requirment {
  position: relative;
  display: block;
  margin-top: 50px;
  margin-bottom: 47px;
}

.project-details__requirment-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 21px;
}

.project-details__requirment-text-1 {
  padding-bottom: 23px;
}

.project-details__work-process {
  position: relative;
  display: block;
}

.project-details__work-process-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 21px;
}

.project-details__work-process-inner {
  position: relative;
  display: block;
  margin-top: 27px;
}

.project-details__work-process-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-details__work-process-content {
  position: relative;
  display: block;
  text-align: center;
  padding: 50px 20px 38px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.1);
  border-radius: 20px;
}

.project-details__work-process-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.project-details__work-process-icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--Coreclean-base);
}

.project-details__work-process-title-2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--Coreclean-black);
  line-height: 20px;
  margin-bottom: 16px;
}

.project-details__work-process-text-2 {
  color: var(--Coreclean-gray);
}

.project-details__work-process-img {
  position: relative;
  display: block;
}

.project-details__work-process-img img {
  width: 100%;
  border-radius: 20px;
}

.project-details__solution {
  position: relative;
  display: block;
  margin-top: 52px;
}

.project-details__solution-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 27px;
}

.project-details__faq {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 110px 0 80px;
}

/*--------------------------------------------------------------
# Appointment Page
--------------------------------------------------------------*/
.appointment-page {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.appointment-page .container {
  max-width: 800px;
}

.appointment-page__inner {
  position: relative;
  display: block;
}

.appointment-page__title {
  position: relative;
  display: block;
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  margin-bottom: 38px;
}

.appointment-page__form {
  position: relative;
  display: block;
}

.appointment-page__form .row {
  --bs-gutter-x: 20px;
}

.appointment-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.appointment-page__input-box input[type="text"],
.appointment-page__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.2);
  border-radius: 5px;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: rgba(var(--Coreclean-gray-rgb), 1);
  font-weight: 500;
  font-family: var(--Coreclean-font-two);
}

.appointment-page__input-box .select-box .nice-select {
  background-color: transparent;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.2);
  border-radius: 5px;
  color: rgba(var(--Coreclean-gray-rgb), 1);
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-bottom: 20px;
  font-family: var(--Coreclean-font-two);
}

.appointment-page__input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
  border-bottom: 2px solid var(--Coreclean-gray);
  border-right: 2px solid var(--Coreclean-gray);
}

.appointment-page__input-box textarea {
  font-size: 16px;
  height: 158px;
  width: 100%;
  background-color: transparent;
  color: rgba(var(--Coreclean-gray-rgb), 1);
  padding: 15px 20px 20px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.2);
  border-radius: 5px;
  font-family: var(--Coreclean-font-two);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.appointment-page__btn {
  border: none;
  padding: 18px 25px 13px;
  display: block;
  margin: 0 auto;
}

.appointment-page__input-box.text-message-box {
  height: 158px;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-two.faq-page {
  padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  background: var(--Coreclean-white);
  padding: 120px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__img {
  position: relative;
  display: block;
  mix-blend-mode: difference;
}

.error-page__img img {
  width: auto;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 62px;
}

.error-page__content h2 {
  color: var(--Coreclean-base);
  font-size: 35px;
  line-height: 1.2em;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.error-page__content p {
  color: var(--Coreclean-black);
  margin: 0;
}

.error-page__content .btn-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.team-carousel-page .team-one__single {
  margin-bottom: 0;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  margin: 0 !important;
  margin-top: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(var(--Coreclean-black-rgb), 0.3);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  background-color: transparent;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 3px solid var(--Coreclean-base);
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot.active:before {
  transform: scale(1);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

/*--------------------------------------------------------------
# Project Carousel Page
--------------------------------------------------------------*/
.project-carousel-page {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.project-carousel-page .project-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Carousel Page
--------------------------------------------------------------*/
.pricing-carousel-page {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.pricing-carousel-page .pricing-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Carousel Page
--------------------------------------------------------------*/
.blog-carousel-page {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.blog-carousel-page .blog-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonial Page
--------------------------------------------------------------*/
.testimonial-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  background-color: #f1f8fb;
}

.testimonial-page .testimonial-two__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Testimonial Carousel Page
--------------------------------------------------------------*/
.testimonial-carousel-page {
  position: relative;
  display: block;
  padding: 110px 0 110px;
  background-color: #f1f8fb;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
  position: relative;
  display: block;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 450px;
  width: 100%;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 110px 0px 110px;
  z-index: 1;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(120, 142, 155, 0.15);
  border-radius: 20px;
  padding: 60px 60px 60px;
}

.contact-page__left {
  position: relative;
  display: block;
}

.contact-page__left-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 26px;
}

.contact-page__form {
  position: relative;
  display: block;
  margin-top: 27px;
}

.contact-page__form .row {
  --bs-gutter-x: 20px;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(120, 142, 155, 0.15);
  border-radius: 5px;
  background-color: var(--Coreclean-white);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: rgba(var(--Coreclean-black-rgb), 0.53);
  font-family: var(--Coreclean-font-two);
  font-weight: 500;
}

.contact-page__input-box .select-box .nice-select {
  background-color: var(--Coreclean-white);
  border-radius: 5px;
  border: 1px solid rgba(120, 142, 155, 0.15);
  color: rgba(var(--Coreclean-black-rgb), 0.53);
  font-size: 16px;
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-bottom: 20px;
  font-family: var(--Coreclean-font-two);
}

.contact-page__input-box textarea {
  font-size: 16px;
  color: var(--Coreclean-black);
  height: 158px;
  width: 100%;
  background-color: var(--Coreclean-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(120, 142, 155, 0.15);
  border-radius: 5px;
  font-family: var(--Coreclean-font-two);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  opacity: 0.53;
}

.contact-page__btn {
  border: none;
  padding: 15px 20px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.contact-page__btn::before {
  border-radius: 5px;
}

.contact-page__input-box.text-message-box {
  height: 158px;
}

.contact-page__right {
  position: relative;
  display: block;
}

.contact-page__address {
  position: relative;
  display: block;
  padding: 59px 30px 53px;
  border-radius: 10px;
  border: 1px solid rgba(120, 142, 155, 0.15);
}

.contact-page__address-sub-title {
  font-size: 18px;
  color: var(--Coreclean-black);
  font-weight: 700;
  line-height: 18px;
}

.contact-page__address-title {
  font-size: 30px;
  color: var(--Coreclean-black);
  font-weight: 700;
  line-height: 40px;
  margin-top: 25px;
  margin-bottom: 16px;
}

.contact-page__address-text {
  color: var(--Coreclean-gray);
}

.contact-page__address-list {
  position: relative;
  display: block;
  margin-top: 47px;
}

.contact-page__address-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-page__address-list li + li {
  margin-top: 21px;
}

.contact-page__address-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-page__address-list li .icon span {
  font-size: 18px;
  color: var(--Coreclean-gray);
}

.contact-page__address-list li .text {
  margin-left: 15px;
}

.contact-page__address-list li .text h5 {
  font-size: 18px;
  color: var(--Coreclean-gray);
  font-weight: 600;
  line-height: 28px;
}

.contact-page__address-list li .text h5 a {
  color: var(--Coreclean-gray);
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  padding: 110px 0 110px;
}

.testimonial-three__left {
  position: relative;
  display: block;
}

.testimonial-three__img-box {
  position: relative;
  display: block;
}

.testimonial-three__img-box img {
  width: 100%;
}

.testimonial-three__right {
  position: relative;
  display: block;
  margin-left: 40px;
  margin-right: 80px;
  padding-top: 80px;
}

.testimonial-three__carousel {
  position: relative;
  display: block;
}

.testimonial-three__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.testimonial-three__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.testimonial-three__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  font-family: var(--Coreclean-font-two);
  padding-top: 12px;
  padding-bottom: 28px;
}

.testimonial-three__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-three__client-img {
  position: relative;
  display: block;
  width: 70px;
  margin-left: 6px;
}

.testimonial-three__client-img:before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  border: 1px solid var(--Coreclean-base);
  border-radius: 50%;
}

.testimonial-three__client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-three__client-content {
  margin-left: 30px;
}

.testimonial-three__client-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 6px;
}

.testimonial-three__client-sub-title {
  font-size: 14px;
  color: var(--Coreclean-black);
  line-height: 14px;
}

.testimonial-three__carousel.owl-theme .owl-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  bottom: 25px;
  right: 0;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  color: var(--Coreclean-white);
  background-color: rgba(var(--Coreclean-base-rgb), 0.5);
  font-size: 13px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  color: var(--Coreclean-white);
  background-color: rgba(var(--Coreclean-base-rgb), 0.5);
  font-size: 13px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev:hover {
  color: var(--Coreclean-white);
  background-color: rgba(var(--Coreclean-base-rgb), 1);
}

/*--------------------------------------------------------------
# Pricing  Two
--------------------------------------------------------------*/
.pricing-two {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  background-color: #f1f5f9;
  z-index: 1;
}

.pricing-two__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.pricing-two__single {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.1);
  border-bottom: 5px solid var(--Coreclean-base);
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 52px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
}

.pricing-two__top {
  position: relative;
  display: block;
  border-bottom: 6px solid var(--Coreclean-base);
  padding: 30px 20px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.pricing-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin: 0 auto 20px;
  background-color: var(--Coreclean-base);
  border-radius: 50%;
  z-index: 1;
}

.pricing-two__icon:before {
  content: "";
  position: absolute;
  top: -40px;
  bottom: -4px;
  left: -2px;
  right: -2px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.3);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: -1;
}

.pricing-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--Coreclean-white);
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.pricing-two__single:hover .pricing-two__icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.pricing-two__title-and-price-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pricing-two__title-box {
  position: relative;
  display: block;
}

.pricing-two__title {
  font-size: 25px;
  color: var(--Coreclean-base);
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-two__price-box {
  position: relative;
  display: block;
  padding: 9px 0 4px;
  padding-left: 20px;
  z-index: 1;
}

.pricing-two__price-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -100px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.2);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.pricing-two__single:hover .pricing-two__price-box:before {
  background-color: rgba(var(--Coreclean-base-rgb), 1);
}

.pricing-two__price {
  font-size: 30px;
  color: var(--Coreclean-base);
  font-weight: 700;
  line-height: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-two__single:hover .pricing-two__price {
  color: var(--Coreclean-white);
}

.pricing-two__price .dolar {
  font-size: 20px;
  position: relative;
  display: inline-block;
  top: -8px;
}

.pricing-two__price .month {
  font-size: 20px;
  position: relative;
  display: inline-block;
  margin-left: -6px;
}

.pricing-two__bottom {
  position: relative;
  display: block;
  padding: 21px 30px 30px;
}

.pricing-two__price-list {
  position: relative;
  display: block;
}

.pricing-two__price-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pricing-two__price-list li + li {
  margin-top: 10px;
}

.pricing-two__price-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-two__price-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--Coreclean-base);
}

.pricing-two__price-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.pricing-two__price-list li .text p {
  font-size: 16px;
  font-weight: 500;
}

.pricing-two__btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.pricing-two__btn-box .thm-btn {
  background-color: var(--Coreclean-base);
}

/*--------------------------------------------------------------
# Working Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 120px 0px 90px;
  background-color: #f1f5f9;
  overflow: hidden;
  z-index: 1;
}

.process-one .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}

.process-one .shape2 {
  position: absolute;
  bottom: 0px;
  right: -70px;
  opacity: 0.15;
  z-index: -1;
}

.process-one .container {
  position: relative;
}

.process-one__line {
  position: absolute;
  top: 245px;
  left: 150px;
  right: 150px;
  border-top: 1px dashed var(--Coreclean-base);
  z-index: -1;
}

.process-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 22px;
}

.process-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  margin: 0 auto 27px;
  background-color: var(--Coreclean-base);
  border-radius: 50%;
  transition-delay: 0.1s;
  transition: all 500ms ease;
  z-index: 1;
}

.process-one__single:hover .process-one__icon {
  background-color: var(--Coreclean-black);
}

.process-one__icon:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.2);
  border-radius: 50%;
  z-index: -1;
}

.process-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--Coreclean-white);
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.process-one__single:hover .process-one__icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
  color: var(--Coreclean-white);
}

.process-one__count {
  position: absolute;
  right: -20px;
  top: 0;
  background-color: rgba(var(--Coreclean-base-rgb), 1);
  border: 2px solid var(--Coreclean-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.process-one__count::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--Coreclean-white);
  counter-increment: count;
  content: "0" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process-one__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 16px;
}

.process-two {
  padding: 120px 0px 90px;
  background: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# Faq Two
--------------------------------------------------------------*/
.faq-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.faq-two__inner {
  position: relative;
  display: block;
  max-width: 850px;
  margin: 0 auto 0;
}

.faq-two__inner .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}

.faq-two__inner .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 30px 16px;
  background-color: rgba(var(--Coreclean-gray-rgb), 0.1);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-two__inner .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--Coreclean-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-two__inner .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 10px;
}

.faq-two__inner .faq-one-accrodion .accrodion.active .accrodion-title {
  background-color: var(--Coreclean-base);
}

.faq-two__inner .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--Coreclean-white);
}

.faq-two__inner .faq-one-accrodion .accrodion-title h4::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--Coreclean-black);
  position: absolute;
  top: 50%;
  right: 0px;
  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;
}

.faq-two__inner
  .faq-one-accrodion
  .accrodion.active
  .accrodion-title
  h4::before {
  content: "\f106";
  font-weight: 900;
  color: var(--Coreclean-white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-two__inner .faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 20px 30px 8px;
  background-color: #f1f5f9;
}

.faq-two__inner .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/***
=============================================
Product
=============================================
***/
.product {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single + .product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
}

.product__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--Coreclean-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: var(--Coreclean-extra);
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 5px;
  padding: 30px 20px 30px;
}

.shop-search form {
  position: relative;
}

.shop-search form input[type="search"],
.shop-search form input[type="text"] {
  width: 100%;
  height: 60px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.1);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--Coreclean-gray);
  font-family: var(--Coreclean-font);
  border-radius: 5px;
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type="submit"] {
  background-color: var(--Coreclean-base);
  color: var(--Coreclean-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
  background-color: var(--Coreclean-black);
  color: var(--Coreclean-white);
}

.product__price-ranger {
  position: relative;
  padding: 30px 20px 30px;
  margin: 0;
  background-color: var(--Coreclean-extra);
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 5px;
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: rgba(var(--Coreclean-base-rgb), 0.1);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--Coreclean-base);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--Coreclean-base);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger
  .price-ranger
  .ranger-min-max-block
  input[type="submit"] {
  position: relative;
  display: block;
  background: var(--Coreclean-base);
  float: right;
  text-align: center;
  border: none;
  color: var(--Coreclean-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__price-ranger
  .price-ranger
  .ranger-min-max-block
  input[type="submit"]:hover {
  background: var(--Coreclean-black);
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}

.shop-category {
  position: relative;
  display: block;
  background-color: var(--Coreclean-extra);
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding: 30px 20px 30px;
  border-radius: 5px;
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--Coreclean-gray);
  margin-bottom: 15px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--Coreclean-gray);
  font-weight: 500;
  border-radius: 10px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.1);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--Coreclean-base);
}

.shop-category ul li a:after {
  position: absolute;
  right: 5px;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background-color: var(--Coreclean-base);
  content: "\f061";
  font-family: "Font Awesome 5 Free" !important;
  opacity: 1;
  font-size: 12px;
  font-weight: 700;
  color: var(--Coreclean-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-category ul li a:hover:after {
  background-color: var(--Coreclean-black);
}

.shop-product-tags {
  position: relative;
  display: block;
  background-color: var(--Coreclean-extra);
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding: 30px 15px 30px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.shop-product-tags .product__sidebar-title {
  margin-left: 5px;
}

.shop-product__tags-list {
  margin-top: -10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--Coreclean-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: rgba(var(--Coreclean-base-rgb), 0.1);
  display: inline-block;
  padding: 5px 20px 5px;
  margin-left: 5px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.shop-product__tags-list a + a {
  margin-left: 5px;
  margin-top: 10px;
}

.shop-product__tags-list a:hover {
  color: var(--Coreclean-white);
  background: var(--Coreclean-base);
}

.shop-product-reviews {
  position: relative;
  display: block;
  background-color: var(--Coreclean-extra);
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding: 30px 20px 30px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li + li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type="radio"] + label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--Coreclean-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--Coreclean-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type="radio"]:checked + label i {
  border-color: var(--Coreclean-base);
}

.sidebar-rating-box ul li input[type="radio"]:checked + label i::before {
  transform: scale(1);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  background-color: var(--Coreclean-extra);
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding: 30px 20px 30px;
  border-radius: 5px;
}

.shop-product-recent-products ul {
  position: relative;
  display: block;
  padding: 0;
}

.shop-product-recent-products ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddbdb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--Coreclean-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.shop-product-recent-products ul li:hover .img::before {
  opacity: 1;
}

.shop-product-recent-products ul li .img img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
  transform: scale(1);
}

.shop-product-recent-products ul li .img a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Coreclean-white);
  font-size: 16px;
  line-height: 0;
  transform: translateY(10px) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
  color: var(--Coreclean-white);
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li .content .title h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--Coreclean-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--Coreclean-base);
}

.shop-product-recent-products ul li .content .price {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
  color: var(--Coreclean-base);
}

.shop-product-recent-products ul li .content .review {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-product-recent-products ul li .content .review i {
  color: #ffc009;
  font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
  color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i + i {
  margin-left: 5px;
}

.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 130px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 16px;
  font-weight: 400;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .select-box .nice-select {
  background-color: var(--Coreclean-extra);
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.product__all {
  position: relative;
  display: block;
}

.product__all-tab {
  position: relative;
  display: block;
}

.product__all-tab-button {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 5;
}

.product__all-tab-button ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px 15px;
  border-radius: 5px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.product__all-tab-button ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
  background-color: var(--Coreclean-base);
}

.product__all-tab-button ul li + li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--Coreclean-base);
  font-size: 18px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
  transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
  color: var(--Coreclean-white);
}

.product__all-tab .tabs-content-box {
  position: relative;
  display: block;
}

.product__all-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(5px);
  transform-origin: top bottom;
}

.product__all-tab
  .tab-content-box-item.tab-content-box-item-active
  .product__all-tab-content-box-item {
  opacity: 1;
  transform: translateY(0px);
  transform-origin: bottom top;
}

.product__all-tab-single {
  position: relative;
  display: block;
}

.single-product-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-white);
  padding: 0 0 30px;
  border-radius: 5px;
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style1:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0;
  z-index: 5;
}

.single-product-style1__overlay li {
  position: relative;
  display: block;
}

.single-product-style1__overlay li + li {
  margin-top: 8px;
}

.single-product-style1__overlay li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  color: var(--Coreclean-base);
  line-height: 35px;
  font-weight: 600;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li + li {
  margin-left: 8px;
}

.single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  color: var(--Coreclean-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 23px 10px 0px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  margin-top: 12px;
}

.single-product-style1__content-left h4 a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--Coreclean-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--Coreclean-gray);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--Coreclean-base);
  margin-right: 5px;
}

.single-product-style1__content-right {
  position: relative;
  display: block;
}

.single-product-style1__review {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--Coreclean-extra);
  padding: 3.5px 6px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-base);
  font-size: 16px;
  margin-right: 5px;
  top: -2px;
}

.single-product-style1__review p {
  color: var(--Coreclean-black);
  font-weight: 500;
}

.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-white);
  border-radius: 5px;
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 20px 0px;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i {
  color: var(--Coreclean-base);
  font-size: 16px;
}

.single-product-style2__review i + i {
  margin-left: 5px;
}

.single-product-style2__text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.single-product-style2__text h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--Coreclean-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--Coreclean-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--Coreclean-gray);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--Coreclean-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li + li {
  margin-left: 8px;
}

.single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
  color: var(--Coreclean-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

/***
=============================================
Product Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.product-details__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.product-details__left-inner {
  position: relative;
  display: block;
}

.product-details__thumb-box {
  position: relative;
  display: block;
  max-width: 400px;
  margin-top: 20px;
}

#shop-details-one__thumb {
  z-index: 10;
}

.product-details__thumb-img {
  position: relative;
  display: block;
  width: 125px !important;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--Coreclean-base);
  opacity: 0;
  transition: all 500ms ease;
}

#shop-details-one__thumb
  .swiper-slide-thumb-active
  .product-details__thumb-img:before {
  opacity: 1;
}

.product-details__content-box {
  position: relative;
  display: block;
}

.product-details__img {
  position: relative;
  display: block;
}

.product-details__img img {
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 15px;
}

.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--Coreclean-black);
  background-color: var(--Coreclean-white);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.product-details__nav .swiper-button-prev i {
  transform: rotate(180deg);
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}

.product-details__right {
  position: relative;
  display: block;
  margin-top: -7px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--Coreclean-base);
}

.product-details__reveiw i + i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--Coreclean-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Coreclean-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type="radio"]:checked + label {
  color: var(--Coreclean-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type="radio"] + label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid var(--Coreclean-gray);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--Coreclean-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type="radio"]:checked + label i {
  border-color: var(--Coreclean-base);
}

.product-details__select-size
  ul
  li
  input[type="radio"]:checked
  + label
  i::before {
  transform: scale(1);
  opacity: 1;
}

.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--Coreclean-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--Coreclean-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--Coreclean-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--Coreclean-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-2 {
  position: relative;
  display: block;
}

.product-details__social {
  position: relative;
  display: block;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--Coreclean-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Coreclean-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: rgba(var(--Coreclean-base-rgb), 0.1);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a + a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--Coreclean-white);
  background-color: var(--Coreclean-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 116px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--Coreclean-black);
  background-color: rgba(var(--Coreclean-base-rgb), 0.1);
  padding: 16px 25px 16px;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--Coreclean-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--Coreclean-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.product-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.product-details__tab-content-inner {
  position: relative;
  display: block;
  padding: 40px 40px 50px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.product-details__description-content {
  position: relative;
  display: block;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--Coreclean-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
  font-weight: 700;
}

.product-details__additional-information-content {
  position: relative;
  display: block;
}

.product-details__additional-information-text-1 {
  padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.review-one__content-top .info h2 span {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-left: 5px;
  font-family: var(--Coreclean-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--Coreclean-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0px 0px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 37px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 400;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--Coreclean-base);
}

.review-form-one__rate i + i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 16px;
  color: var(--Coreclean-gray);
  height: 160px;
  width: 100%;
  background-color: var(--Coreclean-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
  border-radius: 5px;
}

.review-form-one__input-box.text-message-box {
  height: 160px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--Coreclean-gray);
  display: block;
  font-weight: 400;
  border-radius: 5px;
}

.review-form-one__form .thm-btn {
  position: relative;
  border: none;
}

/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/
.related-products {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.related-products__title {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.related-products__title h3 {
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: capitalize;
}

.related-products__title p {
  margin: 0;
}

.single-product-style1.instyle--2 {
  margin-bottom: 0px;
}

.related-products .owl-carousel.owl-dot-style1 .owl-dots {
  margin-top: 0px !important;
}

/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--Coreclean-white);
  padding: 114px 0px 120px;
}

.cart-page__left {
  position: relative;
  display: block;
}

.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: 1170px;
  }
}

.cart-table {
  margin-bottom: 0px;
}

.cart-table thead th {
  color: var(--Coreclean-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  padding-bottom: 22px;
}

.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 rgba(var(--Coreclean-black-rgb), 0.15);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--Coreclean-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 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: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 35px;
}

.cart-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 10px;
}

.cart-table h3 {
  color: var(--Coreclean-black);
  font-size: 20px;
  margin-left: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}

.cart-table h3 a {
  color: var(--Coreclean-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--Coreclean-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--Coreclean-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--Coreclean-gray);
  font-weight: 700;
}

.cart-table .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-black);
  font-size: 16px;
  cursor: pointer;
}

.cart-page__right {
  position: relative;
  display: block;
}

.cart-page__sidebar {
  position: relative;
  display: block;
  padding: 38px 20px 40px;
  background-color: rgba(var(--Coreclean-base-rgb), 0.1);
  border-radius: 5px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.cart-page__shipping {
  position: relative;
  display: block;
}

.cart-page__shipping-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 25px;
}

.cart-page__shipping-form {
  position: relative;
  display: block;
}

.cart-page__shipping-form .row {
  --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
  background-color: var(--Coreclean-white);
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0px;
  float: none;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
}

.cart-page__shipping-input-box .nice-select .option:hover,
.cart-page__shipping-input-box .nice-select .option.focus,
.cart-page__shipping-input-box .nice-select .option.selected.focus {
  background-color: var(--Coreclean-base);
}

.cart-page__shipping-input-box input[type="email"],
.cart-page__shipping-input-box input[type="text"] {
  width: 100%;
  height: 50px;
  background-color: var(--Coreclean-white);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--Coreclean-gray);
  font-family: var(--Coreclean-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__btn-box {
  position: relative;
  display: block;
}

.cart-page__btn-box .thm-btn {
  width: 100%;
  border: none;
  padding: 10px 50px 10px;
}

.cart-page__coupon-code {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 23px;
  padding-bottom: 30px;
}

.cart-page__coupon-code-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__coupon-code-text {
  margin-bottom: 16px;
}

.cart-page__coupon-code-form {
  position: relative;
  display: block;
}

.cart-page__coupon-code-form input[type="email"],
.cart-page__coupon-code-form input[type="text"] {
  width: 100%;
  height: 50px;
  background-color: var(--Coreclean-white);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--Coreclean-gray);
  font-family: var(--Coreclean-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
  width: 100%;
  padding: 10px 50px 10px;
  border: none;
  margin-top: 20px;
}

.cart-total {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-weight: 500;
}

.cart-total li + li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--Coreclean-black);
  font-size: 18px;
  margin-right: 80px;
  font-weight: 700;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--Coreclean-base);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
  line-height: 0px;
}

.cart-page__buttons-1 .thm-btn {
  padding: 25px 30px 25px;
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
  line-height: 0px;
}

.cart-page__buttons-2 .thm-btn {
  padding: 25px 30px 25px;
}

/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding: 53px 50px 60px;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title a {
  color: var(--Coreclean-base);
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 700;
  margin-top: 16px;
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--Coreclean-gray);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-white);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  border-radius: 10px;
  outline: none;
  resize: none;
}

.billing_input_box textarea:focus {
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--Coreclean-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--Coreclean-font);
}

.billing_details .checked-box input[type="checkbox"] {
  display: none;
}

.billing_details .checked-box input[type="checkbox"] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--Coreclean-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--Coreclean-white);
  border-right: 2px solid var(--Coreclean-white);
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked + label span {
  border-color: var(--Coreclean-white);
}

.billing_details
  .checked-box
  input[type="checkbox"]:checked
  + label
  span:before {
  opacity: 1;
}

.billing_details_form .select-box .nice-select {
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-white);
  border-radius: 10px;
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.billing_details_form .nice-select .option:hover,
.billing_details_form .nice-select .option.focus,
.billing_details_form .nice-select .option.selected.focus {
  background-color: var(--Coreclean-base);
}

.billing_details_form-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.billing_details_form-btn-1 {
  position: relative;
  display: block;
}

.billing_details_form-btn-1 .thm-btn {
  border: none;
}

.billing_details_form-btn-2 {
  position: relative;
  display: block;
}

.billing_details_form-btn-2 .thm-btn {
  border: none;
}

.sidebar-order-summary {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding: 37px 30px 45px;
  z-index: 1;
}

.sidebar-order-summary .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--Coreclean-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--Coreclean-white);
  content: "";
}

.sidebar-order-summary .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.sidebar-order-summary__list {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list > li:last-child {
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.sidebar-order-summary__list > li > .left-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .left-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list > li > .right-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .right-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list > li > .right-text > ul {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .right-text > ul > li {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .right-text > ul > li + li {
  margin-top: 5px;
}

.sidebar-order-summary__list > li > .right-text > ul > li input[type="radio"] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.sidebar-order-summary__list > li > .right-text > ul > li label {
  position: relative;
  display: block;
  padding-right: 24px;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list
  > li
  > .right-text
  > ul
  > li
  input[type="radio"]
  + label
  i {
  position: absolute;
  top: 6px;
  right: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--Coreclean-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list > li > .right-text > ul > li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--Coreclean-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list
  > li
  > .right-text
  > ul
  > li
  input[type="radio"]:checked
  + label
  i {
  border-color: var(--Coreclean-base);
}

.sidebar-order-summary__list
  > li
  > .right-text
  > ul
  > li
  input[type="radio"]:checked
  + label
  i::before {
  transform: scale(1);
}

.sidebar-order-summary__Payment {
  position: relative;
  display: block;
  margin-top: 37px;
}

.checkout__payment {
  position: relative;
  margin-bottom: 30px;
}

.checkout__payment__item + .checkout__payment__item {
  margin-top: 23px;
}

.checkout__payment__title {
  display: flex;
  color: var(--Coreclean-black);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  align-items: center;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--Coreclean-white);
  border: 2px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--Coreclean-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--Coreclean-base);
  border-color: var(--Coreclean-base);
  content: "\f00c";
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--Coreclean-gray);
  font-weight: 400;
  margin-top: 15px;
}

.sidebar-order-summary__bottom {
  position: relative;
  display: block;
}

.sidebar-order-summary__bottom .text1 {
  margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
  color: var(--Coreclean-base);
  text-decoration: underline;
}

.sidebar-order-summary__checked {
  position: relative;
  display: block;
  margin-top: 20px;
}

.sidebar-order-summary__checked label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--Coreclean-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--Coreclean-font);
}

.sidebar-order-summary__checked label a {
  color: var(--Coreclean-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
  display: none;
}

.sidebar-order-summary__checked input[type="checkbox"] + label span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--Coreclean-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.sidebar-order-summary__checked label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--Coreclean-white);
  border-right: 2px solid var(--Coreclean-white);
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked + label span {
  border-color: var(--Coreclean-white);
}

.sidebar-order-summary__checked
  input[type="checkbox"]:checked
  + label
  span:before {
  opacity: 1;
}

.sidebar-order-summary__btn {
  position: relative;
  display: block;
  margin-top: 27px;
}

/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.wishlist-page {
  position: relative;
  display: block;
  background: var(--Coreclean-white);
  padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
  .wishlist-table {
    min-width: 1170px;
  }
}

.wishlist-table {
  margin-bottom: 0px;
}

.wishlist-table thead th {
  color: var(--Coreclean-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
}

.wishlist-table tbody tr {
  vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
}

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--Coreclean-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.wishlist-table .product-box {
  display: flex;
  align-items: center;
}

.wishlist-table .cross-icon {
  position: relative;
  display: block;
}

.wishlist-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--Coreclean-black);
  font-size: 16px;
}

.wishlist-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-left: 35px;
  margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  border-radius: 10px;
}

.wishlist-table h3 {
  color: var(--Coreclean-black);
  font-size: 20px;
  margin-left: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--Coreclean-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--Coreclean-base);
}

.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--Coreclean-white);
  padding: 115px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-extra);
  width: 100%;
  height: 60px;
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-family: var(--Coreclean-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
  border-color: var(--Coreclean-base);
  background-color: var(--Coreclean-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--Coreclean-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  border: none;
  justify-content: space-between;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Coreclean-gray);
  background-color: var(--Coreclean-white);
  color: var(--Coreclean-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--Coreclean-font);
  font-weight: 500;
  padding: 10px 15px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--Coreclean-base);
  background-color: var(--Coreclean-white);
}

.sign-up-one__form form .google-facebook a + a {
  margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 10px;
}

.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 22px;
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
  color: var(--Coreclean-base);
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--Coreclean-black);
}

/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--Coreclean-white);
  padding: 115px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--Coreclean-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), 0.15);
  background-color: var(--Coreclean-extra);
  width: 100%;
  height: 60px;
  color: var(--Coreclean-gray);
  font-size: 16px;
  font-family: var(--Coreclean-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus {
  border-color: var(--Coreclean-base);
  background-color: var(--Coreclean-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--Coreclean-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: space-between;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--Coreclean-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--Coreclean-font);
}

.login-one__form form .checked-box1 input[type="checkbox"] + label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--Coreclean-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  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;
}

.login-one__form
  form
  .checked-box1
  input[type="checkbox"]:checked
  + label
  span {
  border-color: var(--Coreclean-base);
}

.login-one__form
  form
  .checked-box1
  input[type="checkbox"]:checked
  + label
  span:before {
  transform: scale(1);
}

.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--Coreclean-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--Coreclean-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--Coreclean-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--Coreclean-black);
}

.login-one__form form .create-account p a {
  color: var(--Coreclean-base);
  font-weight: 500;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 40px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--Coreclean-gray-rgb), 0.5);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--Coreclean-gray-rgb), 0.5);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--Coreclean-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--Coreclean-white);
  background: var(--Coreclean-base);
  border-color: var(--Coreclean-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--Coreclean-gray-rgb), 0.5);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--Coreclean-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--Coreclean-gray-rgb), 0.5);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--Coreclean-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* ── Section ── */
/* ══ Our Promise – DOF Cards ══ */
.why-hire {
  padding: 90px 24px;
  background: #ffffff;
}

.why-hire__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.Promise {
  text-align: center;
  margin-bottom: 52px;
}

.why-hire__eyebrow {
  display: inline-block;
  font-size: 18px;
  color: var(--Coreclean-base);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--Coreclean-font-two);
  margin-bottom: 10px;
}

.why-hire__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--Coreclean-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.why-hire__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* DOF — siblings blur and recede */
.why-hire__list:has(.mc4:hover) .mc4 {
  filter: blur(2px) brightness(0.85);
  transform: scale(0.96);
  opacity: 0.65;
  transition: filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

/* DOF — hovered card snaps sharp and lifts */
.why-hire__list:has(.mc4:hover) .mc4:hover {
  filter: blur(0) brightness(1);
  transform: translateY(-14px) scale(1.04);
  opacity: 1;
  box-shadow:
    0 40px 64px rgba(0, 0, 0, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.10),
    0 4px 12px rgba(152, 36, 45, 0.15);
}

@media (max-width: 1100px) {
  .why-hire__list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .why-hire__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .why-hire__list { grid-template-columns: 1fr; }
}

.mc4 {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2ddd9;
  border-radius: 20px;
  padding: 28px 22px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.mc4-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(152, 36, 45, 0.09);
  color: var(--Coreclean-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.mc4:hover .mc4-icon {
  background: var(--Coreclean-base);
  color: #fff;
}

.mc4-icon i { font-size: 22px; }

.mc4-rule {
  width: 26px;
  height: 2px;
  background: rgba(152, 36, 45, 0.25);
  margin-bottom: 14px;
  flex-shrink: 0;
  border-radius: 2px;
}

.mc4-title {
  color: var(--Coreclean-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  font-family: var(--Coreclean-font-two);
}

.mc4-desc {
  color: var(--Coreclean-gray);
  font-size: 13.5px;
  line-height: 1.65;
  flex: 1;
}

.mc4-tab {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 36px;
  background: var(--Coreclean-base);
  border-radius: 28px 0 20px 0;
  opacity: 0.15;
  transition: opacity 0.3s ease;
}

.mc4:hover .mc4-tab {
  opacity: 1;
}

.trust-strip {
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
}

/* divider between items */
.trust-item + .trust-item {
  border-left: 1px solid #eef2ee;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 28px;
  gap: 14px;
  transition: transform 0.2s;
}

.trust-item:hover {
  transform: translateY(-3px);
}

/* ── Icon wrappers ── */
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Google Guaranteed */
.gg-badge {
  width: 64px;
  height: 64px;
  background: #34a853;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(52, 168, 83, 0.3);
}

.gg-badge i {
  font-size: 28px;
  color: #ffffff;
}

/* Woman Owned */
.wo-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #e91e8c;
  background: #fff0f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wo-badge i {
  font-size: 26px;
  color: #e91e8c;
}

/* Google Stars */
.stars-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.google-wordmark {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.g-blue {
  color: #4285f4;
}
.g-red {
  color: #ea4335;
}
.g-yellow {
  color: #fbbc05;
}
.g-green {
  color: #34a853;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars i {
  font-size: 20px;
  color: #fbbc05;
}

/* Local Business */
.local-badge {
  width: 64px;
  height: 64px;
  background: #f0f4ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.local-badge i {
  font-size: 28px;
  color: #4a6cf7;
}

/* ── Labels ── */
.trust-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-label__title {
  font-size: 18px;
  font-weight: 700;
  color: #0f1c17;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.trust-label__sub {
  font-size: 16px;
  font-family: var(--Coreclean-font);
  color: var(--Coreclean-gray);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 20px;
    gap: 4px;
  }

  .trust-item + .trust-item {
    border-left: none;
  }

  .trust-item:nth-child(2n + 1) {
    border-right: 1px solid #eef2ee;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid #eef2ee;
    padding-bottom: 28px;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    padding-top: 28px;
  }
}

@media (max-width: 420px) {
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .trust-item + .trust-item {
    border-left: none;
    border-top: 1px solid #eef2ee;
  }

  .trust-item:nth-child(2n + 1) {
    border-right: none;
  }
}

/*--------------------------------------------------------------
# Home Hero Glass Header Overrides
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0 0;
}

.main-header .main-menu {
  background: transparent;
  box-shadow: none;
}

.main-header .main-menu__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 50px;
  justify-content: space-between;
  border-radius: 999px;
  transition: all 0.3s ease;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  backdrop-filter: blur(50px) saturate(120%);
  -webkit-backdrop-filter: blur(50px) saturate(120%);
  border: 1.9px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 6px 28px rgba(209, 133, 0, 0.28);
}

.main-header.is-sticky {
  padding-top: 10px;
}

.main-header.is-sticky .main-menu__wrapper {
  max-width: 1120px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.3);
}

.main-header .main-menu__wrapper .container {
  max-width: none;
  padding-left: 28px;
  padding-right: 28px;
}

.main-header .main-menu__wrapper-inner {
  min-height: 76px;
  flex-wrap: nowrap;
  justify-content: center;
}

.main-header .main-menu__logo {
  padding: 0;
  flex: 0 0 auto;
}

.main-header .main-menu__logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 58px;
  padding: 8px 16px;
}

.main-header .main-menu__logo img {
  width: 154px;
  max-width: 100%;
  filter: none;
}

.main-header .main-menu__main-menu-box {
  gap: 30px;
}

.main-header .main-menu .main-menu__list > li + li {
  margin-left: 35px;
}

.main-header .main-menu .main-menu__list > li > a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.main-header .main-menu .main-menu__list > li.current > a,
.main-header .main-menu .main-menu__list > li:hover > a {
  color: var(--Coreclean-base);
  text-shadow: none;
}

.main-header .main-menu__nav-sidebar-icon {
  display: none;
}

.main-menu__header-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 28px;
  background: var(--Coreclean-base);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(244, 103, 68, 0.3);
  transition: all 300ms ease;
}

.main-menu__header-btn:hover {
  color: var(--Coreclean-base);
  background: #fff;
  transform: translateY(-2px);
}

.stricky-header { display: none !important;
}
.banner-one {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 170px 0 40px;
  background-color: transparent;
  background-position: center;background-repeat: no-repeat;background-size: cover;isolation: isolate;}
.banner__inner{    min-height: 330px; padding: 160px 0 55px;}
.banner-one::before {
  display: none;
}

.banner-one::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.banner-one__shape-bg-1,
.banner-one__shape-1,
.banner-one__shape-2,
.banner-one__shape-3,
.banner-one__shape-4,
.banner-one__shape-5,
.bubbleContainer {
  display: none;
}

.banner-one .row {
  justify-content: center;
}

.banner-one > .container {
  position: relative;
  z-index: 2;
}

.banner-one .col-xl-6 {
  width: 100%;
  max-width: 1000px;
  flex: 0 0 100%;
}

.banner-one__left {
  margin: 0 auto;
  text-align: center;
  animation: heroRise 850ms ease both;
}

.banner-one__title {
  font-size: clamp(42px, 5.6vw, 54px);
  line-height: 1.3em;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.5);
}

.banner-one__title span {
  color: var(--Coreclean-base);
  display: block;
}

.banner-one__text {
  max-width: 720px;
  margin: 24px auto 38px;
  color: #000;
  color: #98242d;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.banner-one__btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-one__btn-box .thm-btn {
  min-width: 164px;
  box-shadow: 0 16px 36px rgba(244, 103, 68, 0.28);
}

.banner-one__btn-box .banner-one__btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.banner-one__btn-box .banner-one__btn-outline::before {
  background: #fff;
}

.banner-one__btn-box .banner-one__btn-outline:hover {
  color: var(--Coreclean-base);
  border-color: #fff;
}

.banner-one__satisfied-partner {
  justify-content: center;
  margin-top: 44px;
}
.banner-one__satisfied-partner img {
  max-width: 600px;
}
.banner-one__satisfied-partner-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.banner-one__satisfied-partner-count-box {
  margin-bottom: 0;
}

.banner-one__satisfied-partner-count-box p,
.banner-one__satisfied-partner-count-box span {
  color: #fff;
}

.banner-one__satisfied-partner-text {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 1199px) {
  .main-header {
    padding: 14px 16px 0;
  }

  .main-header .main-menu__wrapper {
    max-width: none;
  }

  .main-header .main-menu__main-menu-box {
    gap: 18px;
  }

  .main-menu__header-btn {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main-header {
    padding: 12px 12px 0;
  }

  .main-header .main-menu__wrapper {
    border-radius: 28px;
  }

  .main-header .main-menu__wrapper .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .main-header .main-menu__wrapper-inner {
    min-height: 64px;
  }

  .main-header .main-menu__logo img {
    width: 126px;
  }

  .main-header .main-menu__logo a {
    min-width: 148px;
    min-height: 50px;
    padding: 7px 12px;
  }

  .main-header .main-menu .mobile-nav__toggler {
    color: #fff;
    font-size: 24px;
  }

 
  .page-wrapper .banner-one__title {
    font-size: 38px;
  }

  .page-wrapper .banner-one__text {
    font-size: 17px;
    line-height: 28px;
  }

  .page-wrapper .banner-one__satisfied-partner {
    align-items: center;
  }

  .page-wrapper .banner-one__satisfied-partner-content {
    border-radius: 20px;
    flex-direction: column;
    gap: 6px;
  }
}

/*--------------------------------------------------------------
# Contact Page Redesign
--------------------------------------------------------------*/
.contact-redesign {
  position: relative;
  overflow: hidden;
  padding: 115px 0 90px;
  background:
    linear-gradient(135deg, rgba(7, 32, 70, 0.06) 0%, rgba(185, 42, 53, 0.04) 52%, rgba(255, 255, 255, 0) 100%),
    #f7f9fc;
}

.contact-redesign::before {
  content: "";
  position: absolute;
  top: 72px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: repeating-linear-gradient(135deg, rgba(7, 32, 70, 0.08) 0 1px, transparent 1px 18px);
  border-radius: 8px;
  transform: rotate(8deg);
  opacity: 0.45;
  pointer-events: none;
}

.contact-redesign__pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 240px;
  background:
    linear-gradient(90deg, rgba(185, 42, 53, 0.12), rgba(7, 32, 70, 0)),
    repeating-linear-gradient(90deg, rgba(7, 32, 70, 0.06) 0 1px, transparent 1px 22px);
  clip-path: polygon(0 20%, 100% 0, 78% 100%, 0 100%);
  pointer-events: none;
}

.contact-redesign__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.contact-redesign__intro,
.contact-redesign__form-panel,
.contact-map-redesign__frame,
.contact-help__item {
  border: 1px solid rgba(7, 32, 70, 0.09);
  border-radius: 25px;
  box-shadow: 0 24px 70px rgba(7, 32, 70, 0.12);
}

.contact-redesign__intro {
  padding: 44px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.contact-redesign__eyebrow {
  margin: 0 0 12px;
  color: #b92a35;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-redesign h1,
.contact-redesign__form-heading h2,
.contact-map-redesign__header h2,
.contact-help__heading h2 {
  margin: 0;
  color: #071f45;
  font-family: var(--Coreclean-font-two, var(--Coreclean-font));
  letter-spacing: 0;
}

.contact-redesign h1 {
  max-width: 560px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
}

.contact-redesign__lead {
  max-width: 580px;
  margin: 18px 0 0;
  color: #526176;
  font-size: 18px;
  line-height: 1.75;
}

.contact-redesign__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top:20px;
}

.contact-redesign__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 96px;
  padding: 20px;
  color: #526176;
  background: #ffffff;
  border: 1px solid rgba(7, 32, 70, 0.08);
  border-radius: 35px;
  box-shadow: 0 14px 32px rgba(7, 32, 70, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

a.contact-redesign__card:hover,
.contact-redesign__card:hover {
  color: #526176;
  border-color: rgba(185, 42, 53, 0.35);
  box-shadow: 0 20px 42px rgba(7, 32, 70, 0.14);
  transform: translateY(-3px);
}

.contact-redesign__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #b92a35 0%, #071f45 100%);
  border-radius: 50px;
  box-shadow: 0 12px 24px rgba(185, 42, 53, 0.22);
}

.contact-redesign__card strong {
  display: block;
  margin-bottom: 5px;
  color: #071f45;
  font-size: 16px;
  line-height: 1.25;
}

.contact-redesign__card span span {
  display: block;
  color: #526176;
  font-size: 15px;
  line-height: 1.55;
}

.contact-redesign__form-panel {
  padding: 36px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.contact-redesign__form-heading {
  margin-bottom: 24px;
}

.contact-redesign__form-heading p {
  margin: 0 0 6px;
  color: #b92a35;
  font-size: 14px;
  font-weight: 800;
}

.contact-redesign__form-heading h2 {
  font-size: 32px;
  line-height: 1.2;
}

.contact-redesign__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-redesign__field {
  position: relative;
}

.contact-redesign__field--message,
.contact-redesign__submit,
.contact-redesign__form .result {
  grid-column: 1 / -1;
}

.contact-redesign__field input,
.contact-redesign__field textarea {
  width: 100%;
  min-height: 62px;
  padding: 25px 16px 9px;
  color: #071f45;
  background: #f8fafc;
  border: 1px solid rgba(7, 32, 70, 0.14);
  border-radius: 25px;
  outline: none;
  font-size: 16px;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.contact-redesign__field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-redesign__field label {
  position: absolute;
  top: 19px;
  left: 16px;
  margin: 0;
  color: #6b7788;
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    font-size 180ms ease;
}

.contact-redesign__field input:focus,
.contact-redesign__field textarea:focus {
  background: #ffffff;
  border-color: #b92a35;
  box-shadow: 0 0 0 4px rgba(185, 42, 53, 0.12);
}

.contact-redesign__field input:focus + label,
.contact-redesign__field input:not(:placeholder-shown) + label,
.contact-redesign__field textarea:focus + label,
.contact-redesign__field textarea:not(:placeholder-shown) + label {
  color: #b92a35;
  font-size: 12px;
  transform: translateY(-11px);
}

.contact-redesign__field input:not(:placeholder-shown):valid,
.contact-redesign__field textarea:not(:placeholder-shown):valid {
  border-color: rgba(20, 128, 88, 0.42);
}

.contact-redesign__field input:not(:placeholder-shown):invalid,
.contact-redesign__field textarea:not(:placeholder-shown):invalid {
  border-color: rgba(185, 42, 53, 0.72);
}

.contact-redesign__submit {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #b92a35 0%, #071f45 100%);
  border: 0;
  border-radius: 50px;
  box-shadow: 0 18px 32px rgba(185, 42, 53, 0.24);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.contact-redesign__submit:hover,
.contact-redesign__submit:focus-visible {
  color: #ffffff;
  filter: brightness(1.04);
  box-shadow: 0 24px 44px rgba(7, 32, 70, 0.22);
  transform: translateY(-2px);
}

.contact-redesign__submit:focus-visible,
.contact-redesign__card:focus-visible,
.contact-help__item summary:focus-visible {
  outline: 3px solid rgba(185, 42, 53, 0.35);
  outline-offset: 3px;
}

.contact-map-redesign {
  padding:90px 0;
  background: #f7f9fc;
}

.contact-map-redesign__header {
  max-width: 760px;
  margin-bottom: 26px;
}

.contact-map-redesign__header h2 {
  font-size: 34px;
  line-height: 1.22;
}

.contact-map-redesign__frame {
  overflow: hidden;
  background: #ffffff;
}

.contact-map-redesign__frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.contact-help {
  padding: 90px 0 110px;
  background: #ffffff;
}

.contact-help__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}

.contact-help__heading {
  position: sticky;
  top: 110px;
}

.contact-help__heading h2 {
  font-size: 38px;
  line-height: 1.16;
}

.contact-help__heading p:last-child {
  margin: 16px 0 0;
  color: #526176;
  font-size: 17px;
  line-height: 1.7;
}

.contact-help__items {
  display: grid;
  gap: 14px;
}

.contact-help__item {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 32, 70, 0.08);
}

.contact-help__item summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: #071f45;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.contact-help__item summary::-webkit-details-marker {
  display: none;
}

.contact-help__item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #071f45;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
}

.contact-help__item[open] summary::after {
  content: "-";
  background: #b92a35;
}

.contact-help__item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #526176;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1199px) {
  .contact-redesign {
    padding-top: 95px;
  }

  .contact-redesign__grid,
  .contact-help__grid {
    grid-template-columns: 1fr;
  }

  .contact-help__heading {
    position: static;
  }
}

@media (max-width: 767px) {
  .contact-redesign {
    padding: 72px 0 60px;
  }

  .contact-redesign::before,
  .contact-redesign__pattern {
    display: none;
  }

  .contact-redesign__grid {
    gap: 20px;
  }

  .contact-redesign__intro,
  .contact-redesign__form-panel {
    padding: 24px;
  }

  .contact-redesign h1 {
    font-size: 34px;
  }

  .contact-redesign__lead {
    font-size: 16px;
  }

  .contact-redesign__card {
    min-height: auto;
    padding: 18px;
  }

  .contact-redesign__form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-redesign__form-heading h2,
  .contact-map-redesign__header h2,
  .contact-help__heading h2 {
    font-size: 28px;
  }

  .contact-map-redesign {
    padding-bottom: 60px;
  }

  .contact-map-redesign__frame iframe {
    height: 330px;
  }

  .contact-help {
    padding: 60px 0 72px;
  }

  .contact-help__grid {
    gap: 24px;
  }

  .contact-help__item summary {
    padding: 19px 54px 19px 18px;
    font-size: 16px;
  }

  .contact-help__item p {
    padding: 0 18px 20px;
  }
}

.page-about .about-trust-strip {
    padding: 20px 0 32px;
    background: #f7f9fc;
}

.page-about .trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.page-about .trust-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    padding: 16px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-about .trust-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.page-about .trust-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #071f45;
    margin: 0 0 3px;
    line-height: 1.3;
}

.page-about .trust-card__sub {
    font-size: 12px;
    color: #6b7788;
    line-height: 1.5;
    margin: 0;
}

/* shrink the existing icon badges to fit */
.page-about .gg-badge,
.page-about .local-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.page-about .gg-badge i,
.page-about .local-badge i {
    font-size: 18px;
}

.page-about .wo-badge {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.page-about .wo-badge i {
    font-size: 18px;
}

.page-about .stars-wrap {
    flex-shrink: 0;
    gap: 3px;
}

.page-about .google-wordmark {
    font-size: 15px;
}

.page-about .stars i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .page-about .trust-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .page-about .trust-cards-grid { grid-template-columns: 1fr; }
}
.about-page-content__subheading {
    font-size: 22px;
    font-weight: 700;
    color: var(--Coreclean-base);
    margin-top: 36px;
    margin-bottom: 14px;
    font-family: var(--Coreclean-font-two);
}

.about-page-content__cta {
    margin-top: 40px;
    padding: 32px 36px;
    background: #f7f9fc;
    border-left: 4px solid var(--Coreclean-base);
    border-radius: 8px;
}
/*--------------------------------------------------------------
# Included Services Checklist (residential/commercial service pages)
--------------------------------------------------------------*/
.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.included-list__item i {
  color: var(--Coreclean-base);
  margin-top: 6px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Site Trust Strip — reusable credential badges (Residential/Commercial)
--------------------------------------------------------------*/
.site-trust-strip {
  padding: 20px 0 32px;
  background: #f7f9fc;
}

.site-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.site-trust-strip__card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 50px;
  padding: 16px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-trust-strip__card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.site-trust-strip__badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-trust-strip__badge i {
  font-size: 18px;
  color: #ffffff;
}

.site-trust-strip__badge--liability {
  background: var(--Coreclean-base);
  box-shadow: 0 6px 18px rgba(152, 36, 45, 0.3);
}

.site-trust-strip__badge--bonding {
  background: #d18500;
  box-shadow: 0 6px 18px rgba(209, 133, 0, 0.3);
}

.site-trust-strip__badge--worksafe {
  background: var(--Coreclean-black);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.site-trust-strip__title {
  font-size: 14px;
  font-weight: 700;
  color: #071f45;
  margin: 0 0 3px;
  line-height: 1.3;
}

.site-trust-strip__sub {
  font-size: 12px;
  color: #6b7788;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .site-trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .site-trust-strip__grid { grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Review Grid — wide testimonial cards with filter tabs (Testimonial page)
--------------------------------------------------------------*/
.review-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.review-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--Coreclean-black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.review-tab-btn i {
  font-size: 13px;
}

.review-tab-btn:hover {
  border-color: var(--Coreclean-base);
}

.review-tab-btn.active {
  background: var(--Coreclean-base);
  border-color: var(--Coreclean-base);
  color: #ffffff;
}

.review-tab-count {
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.review-tab-btn.active .review-tab-count {
  background: rgba(255, 255, 255, 0.25);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 20px;
  max-width: 80%;
  margin: 40px auto 0;
}

.review-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 26px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.review-card--hidden,
.review-card--filtered {
  display: none;
}

.review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--Coreclean-black);
  margin: 0;
}

.review-card__location {
  font-size: 12px;
  color: #888888;
  margin: 2px 0 0;
}

.review-card__stars {
  color: #d18500;
  font-size: 14px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.review-card__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #4b5563;
  margin: 0;
}

.review-load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .review-card__head {
    flex-direction: column;
    gap: 4px;
  }
}

/*--------------------------------------------------------------
# Section Title Intro Text (used on Testimonial page)
--------------------------------------------------------------*/
.section-title__text {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}
.section-title__title .text-accent {
  color: var(--Coreclean-base);
}