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

/*--------------------------------------------------------------
# Common    
--------------------------------------------------------------*/
:root {
  --Coreclean-font: "DM Sans", sans-serif;
  --Coreclean-font-two: "Onest", sans-serif;
  --Coreclean-gray: #363636;
  --Coreclean-gray-rgb: 98, 111, 130;
  --Coreclean-white: #ffffff;
  --Coreclean-white-rgb: 255, 255, 255;
  --Coreclean-base: #f58828;
  --Coreclean-base-rgb: 253, 96, 58;
  --Coreclean-gray-bg: #333;
  --Coreclean-black: #000;
  --Coreclean-black-rgb: 5, 23, 61;
}

::-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.10);
  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.10);
  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, .70);
}

.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, .10);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .10);
  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), .20);
  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;
  cursor: url(../images/icon/cross-out.html),
    pointer;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .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), .50);
  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: .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), .70);
  border: none;
  border-radius: var(--Coreclean-bdr-radius);
  outline: none;
  transition: all 500ms ease;
  background-color: rgba(var(--Coreclean-white-rgb), .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), .10);
  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: .5s;
  transform: scale(.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: 18px;
  font-weight: 700;
  font-family: var(--Coreclean-font-two);
  padding: 18px 40px 16px;
  border-radius: 10px;
  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.0) rotateX(0deg);
  border-radius: 10px;
  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.0) 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.30);
  font-family: var(--thm-font);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  position: absolute;
  top: 0;
  left: 0;
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.5s;
}


/**
animation: spinner 1s infinite linear;
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
**/

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  /**border-top-color: rgba(255, 255, 255, 0.5); **/
}






/* Animation preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}


@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 30px;
    letter-spacing: 10px;
  }
}









/* 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.90);
  -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.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.0);
}

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

.main-header__contact-list li .text p a {
  color: rgba(255, 255, 255, 0.90);
  -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: 100px;
}

.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: 39px;
  padding-bottom: 35px;
  position: relative;
}

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

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

.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;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

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

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

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

.mobile-nav__content {
  width: 300px;
  background-color: var(--Coreclean-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

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

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

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: 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.60;
}

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

.banner-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: rgb(0, 2, 19);
  background: linear-gradient(40deg, rgba(0, 2, 19, 1) 25%, rgba(5, 22, 140, 1) 40%,
      rgba(0, 2, 19, 1) 75%);
}

.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: .10;
  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.10);
  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.10);
  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.30);
  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), .70);
  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), .70);
}

.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), .20);
  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: .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: .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: .40;
  z-index: -1;
}

.main-slider-two__shape-1 img {
  width: auto;
}

.main-slider-two__shape-2 {
  position: absolute;
  top: 100px;
  right: 100px;
  opacity: .40;
  z-index: -1;
}

.main-slider-two__shape-2 img {
  width: auto;
}

.main-slider-two__shape-3 {
  position: absolute;
  bottom: 65px;
  left: 200px;
  opacity: .40;
  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: .40;
  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: .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.50;
  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), .85);
  border: 0px solid rgba(var(--Coreclean-base-rgb), .20);
  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), .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), .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), .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), .82);
}

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

.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: .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.50;
  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.0%, 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), .25);
  border: 2px solid rgba(var(--Coreclean-white-rgb), .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: .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;
}

.about-one__img {
  position: relative;
  display: block;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='525' height='525' viewBox='0 0 525 525'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='525' height='525'/%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='525' height='525' viewBox='0 0 525 525'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='525' height='525'/%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;
  z-index: 1;
}

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

.about-one__experience-year {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 252px;
  width: 100%;
  background-color: var(--Coreclean-base);
  padding: 10px;
  border-radius: 5px;
  z-index: 1;
}

.about-one__experience-year-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--Coreclean-white);
  border-radius: 5px;
  padding: 15px 0 15px;
}

.about-one__experience-year-inner h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--Coreclean-white);
  line-height: 48px;
  position: relative;
  top: 5px;
}

.about-one__experience-year-inner h5 {
  font-size: 16px;
  color: var(--Coreclean-white);
  line-height: 26px;
  font-weight: 700;
  margin-left: 20px;
}

.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: 22px;
  line-height: 32px;
  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), .30);
  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), .20);
  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), .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: .15;
  z-index: -1;
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.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: 120px 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: .06;
  z-index: -1;
}

.why-choose-one__shape-1 img {
  width: auto;
}

.why-choose-one__shape-2 {
  position: absolute;
  bottom: 50px;
  left: -25px;
  opacity: .10;
  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: .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: .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: .40;
}

.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, .20);
  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: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.location-one__point-1:hover .location-one__popup-box {
  opacity: 1.0;
  transform: perspective(400px) rotateX(0deg) translateY(0);
  transition-delay: .3s;
  transition-timing-function: ease-in-out;
  transition-duration: .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, .5);
  -o-box-shadow: 0 0 0 0 rgba(253, 96, 58, .5);
  -webkit-box-shadow: 0 0 0 0 rgba(253, 96, 58, .5);
  box-shadow: 0 0 0 0 rgba(253, 96, 58, .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), .90);
  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), .70);
}

/*--------------------------------------------------------------
# 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), .80);
  content: "";
  border-radius: 20px;
  z-index: -1;
}

.services-one__single:hover .services-one__single-bg {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
  background-color: rgba(var(--Coreclean-black-rgb), .80);
}

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

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

.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.0) 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: .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), .90);
  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.90);
  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, .10);
  margin-top: 24px;
  padding-top: 24px;
}

.single-testimonial-one .text-box p {
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
}




.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, .70);
  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: .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: .80;
  transform: scaleY(0.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.0);
}

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

.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.0) 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: .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), .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, .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: .10;
  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, .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: .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, .15);
  border-radius: 5px;
  font-family: var(--Coreclean-font-two);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  opacity: .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);
}

.blog-one__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-one__btn i {
  font-size: 15px;
  padding-left: 10px;
}

.blog-one__single:hover .blog-one__btn {
  color: var(--Coreclean-base);
}


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

.site-footer__bg {
  position: absolute;
  top: 0;
  bottom: 100px;
  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), .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: 33px;
  padding-bottom: 35px;
}

.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: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.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 p {
  color: var(--Coreclean-white);
}


.footer-widget__explore-list li {
  color: var(--Coreclean-white);
}

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

.site-footer__bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--Coreclean-black-rgb), 1);
  z-index: -1;
}

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

.site-footer__bottom-text {
  color: var(--Coreclean-white);
  font-weight: 500;
  line-height: 16px;
}

.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, .50);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .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.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: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .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.0);
}

.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: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .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.0);
  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.0);
  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.0);
  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), .30);
  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), .85);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .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: .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: .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: .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), .70);
  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(5, 23, 61, 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), .15);
  border-radius: 10px;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: rgba(var(--Coreclean-black-rgb), .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), .53);
  height: 158px;
  width: 100%;
  background-color: transparent;
  padding: 15px 20px 20px;
  border: 0.5px solid rgba(var(--Coreclean-black-rgb), .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), .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: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.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), .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: .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.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.0) 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.0) 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: .50;
}

.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.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.0) 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.0) 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), .10);
  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), .10);
  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), .20);
  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), .20);
  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), .20);
  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), .30);
  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, .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, .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), .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, .15);
  color: rgba(var(--Coreclean-black-rgb), .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, .15);
  border-radius: 5px;
  font-family: var(--Coreclean-font-two);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  opacity: .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, .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), .50);
  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), .50);
  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), .10);
  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), .30);
  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), .20);
  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), .20);
  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: 0;
}

.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), .10);
  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), .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), .10);
  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), .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), .10);
  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), .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), .10);
  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), .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), .10);
  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), .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.0);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  background-color: var(--Coreclean-extra);
  border: 1px solid rgba(var(--Coreclean-black-rgb), .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: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .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: .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), .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), .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, .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.0;
  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), .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, .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, .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), .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, .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), .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), .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.0);
  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), .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), .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), .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), .10);
  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), .10);
  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), .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), .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), .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), .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: 1.0em;
  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), .15);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--Coreclean-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), .15);
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), .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), .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), .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), .15);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), .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), .10);
  border-radius: 5px;
  border: 1px solid rgba(var(--Coreclean-black-rgb), .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), .15);
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), .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), .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), .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), .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), .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), .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), .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), .15);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), .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.0);
}


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

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--Coreclean-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--Coreclean-black-rgb), .15);
  border-bottom: 1px solid rgba(var(--Coreclean-black-rgb), .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), .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: 1.0em;
  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), .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: 1.0em;
  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), .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.0);
}


.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), .50);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--Coreclean-gray-rgb), .50);
  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), .50);
}

.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), .50);
  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
--------------------------------------------------------------*/