/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --clenq-font: 'Inter', sans-serif;
  --clenq-font-two: 'Outfit', sans-serif;
  --clenq-base: #fff203;
  --clenq-base-rgb: 255, 242, 3;
  --clenq-black: #043e74;
  --clenq-black-rgb: 4, 62, 116;
  --clenq-black2: #172000;
  --clenq-black2-rgb: 23, 32, 0;
  --clenq-primary: #298be7;
  --clenq-primary-rgb: 41, 139, 231;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--clenq-font);
  color: rgba(var(--clenq-black2-rgb), 0.8);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--clenq-black);
  transition: .4s;
  -webkit-transition: all .4s ease-in-out;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clenq-black);
  margin: 0;
  font-family: var(--clenq-font-two);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--clenq-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/* owl dots basic style */

.owl-dots-one.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}

.owl-dots-one.owl-theme .owl-dots .owl-dot {
  margin: 0px -1px;
}

.owl-dots-one.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 6px;
  height: 6px;
  margin: 5px 7px;
  background: #d6cbc5;
  border-radius: 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-dots-one.owl-theme .owl-dots .owl-dot.active span {
  background: var(--clenq-base);
}

.owl-dots-one.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  top: -6px;
  left: -6px;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #dbd8d8;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.owl-dots-one.owl-theme .owl-dots .owl-dot.active span::before {
  transform: scaleX(1.0);
}


.owl-with-shadow .owl-stage-outer {
  overflow: visible;
}

.owl-with-shadow .owl-item {
  visibility: hidden;
  opacity: 0;
  transition: visibility 500ms ease, opacity 500ms ease;
}

.owl-with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/***
=====================================================
Custom Cursor
=====================================================
***/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--clenq-base, #d0807a);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--clenq-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--clenq-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/***
=====================================================
    Thm Btn
=====================================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--clenq-base);
  color: var(--clenq-black);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 60px;
  font-family: var(--clenq-font);
  transition: all 0.3s linear;
  z-index: 1;
  padding: 0px 45px 0px;
  overflow: hidden;
  border-radius: 3px;
}

.thm-btn:before {
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: var(--clenq-black);
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
}

.thm-btn:hover:before {
  top: -30%;
}

.thm-btn:hover {
  color: #ffffff;
}

/***
=====================================================
    Thm Btn Style2
=====================================================
***/
.thm-btn.style2 {
  border-radius: 28px;
  background: var(--clenq-primary);
  border: 1px solid var(--clenq-black);
}

/***
=====================================================
    Thm Btn Style3
=====================================================
***/
.thm-btn.style3:before {
  background: var(--clenq-base);
}

.thm-btn.style3:hover {
  color: var(--clenq-black);
}

/***
=============================================
   Sec Title 
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -11px;
  padding-bottom: 62px;
}

.sec-title__tagline {
  position: relative;
  display: inline-block;
  margin-bottom: 13px;
}

.sec-title__tagline p {
  color: var(--clenq-black2);
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.sec-title__tagline p .left-shape {
  position: relative;
  display: inline-block;
  padding-right: 3px;
  top: -1px;
}

.sec-title__tagline p .right-shape {
  position: relative;
  display: inline-block;
  padding-left: 3px;
  top: -1px;
}

.sec-title__title {
  font-size: 60px;
  line-height: 1em;
  font-weight: 600;
}


/***
=====================================================
Bootstrap Select
=====================================================
***/
.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(--clenq-black);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--clenq-primary);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: #ffffff;
  color: #000000;
  cursor: pointer;
}

/***
=====================================================
Preloader
=====================================================
***/
.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/***
=====================================================
Search Popup
=====================================================
***/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  padding-right: 80px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--clenq-base);
  border: 0;
}

.search-popup__content .thm-btn i::before {
  font-size: 20px;
}

.search-popup__content .thm-btn:hover {
  background-color: var(--clenq-black);
}

.search-popup__content .thm-btn:before,
.search-popup__content .thm-btn:after {
  display: none;
}

/***
=============================================
    Rating Box 
=============================================
***/
.rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.rating-box ul {
  overflow: hidden;
}

.rating-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  line-height: 0;
}

.rating-box ul li:last-child {
  margin-right: 0;
}

.rating-box ul li span {
  position: relative;
  display: inline-block;
  color: #F6C410;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 1px;
}

.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: 5px;
  color: var(--clenq-black);
  font-size: 18px;
  line-height: 45px;
  font-weight: 600;
  border: 0px solid var(--clenq-black);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--clenq-font);
  z-index: 1;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
  color: var(--clenq-black);
  background: var(--clenq-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  top: -1px;
}

.styled-pagination li.next a span::before {
  position: relative;
  display: inline-block;
  transform: rotate(0deg);
  font-size: 15px;
  font-weight: 700;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--clenq-black);
  background: var(--clenq-base);
}

.styled-pagination li.next {
  margin-left: 0px;
  background: #c9e5ff;
  color: #285180;
  border-radius: 5px;
}

/***
=====================================================
Scroll To Top
=====================================================
***/
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--clenq-base);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: var(--clenq-black);
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--clenq-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/***
=============================================
    xs Sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: url(../images/icon/cross-out.html), pointer;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .6;
  visibility: visible;
  transition-delay: 0.0s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 365px;
  background-color: #12062c;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  left: 0;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: -150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 600ms ease 800ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
  background-color: #000000;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-base);
  border-color: var(--clenq-base);
}


.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--clenq-base);
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
  padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.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.message-btn {
  position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .thm-btn {
  position: relative;
}

.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: #848484;
  transition: all 500ms ease;
  outline: none;
  border: none;
}

.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;
}

.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: #b0b0bd;
  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: var(--clenq-base);
}

.sidebar-contact-info ul li a {
  color: #b0b0bd;
}

.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: block;
  width: 40px;
  height: 40px;
  background: var(--clenq-base);
  border-radius: 50%;
  color: var(--clenq-black);
  font-size: 14px;
  line-height: 40px;
  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: #ffffff;
  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: #000000;
}


/***
=====================================================
Navigations One
=====================================================
***/
.main-header {
  position: relative;
  display: block;
  z-index: 99;
}

.stricky-header .main-menu__wrapper-inner {
  padding-left: 0;
  box-shadow: none;
}

.stricky-header.main-menu {
  margin-top: 0px;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 43px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  padding-top: 24px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--clenq-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--clenq-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 15px;
  line-height: 30px;
  color: var(--clenq-black2);
  border-bottom: 1px solid rgba(var(--clenq-black-rgb), 0.1);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--clenq-base);
  color: var(--clenq-black2);
  border-color: var(--clenq-base);
}


.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
  border-bottom: none;
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--woodza-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--woodza-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 25px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--clenq-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(--clenq-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--clenq-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--clenq-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(--clenq-base);
  border: none;
  outline: none;
  color: var(--clenq-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: #000000;
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--woodza-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--clenq-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--woodza-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--clenq-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--clenq-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: var(--clenq-black);
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/***
=====================================================
Main Header One
=====================================================
***/
.main-header-one {
  position: relative;
  display: block;
  z-index: 99;
}

.main-header-one .container {
  position: static;
  max-width: 1810px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.main-header-one__top {
  position: relative;
  display: block;
  padding: 14px 0px 15px;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.main-header-one__top-left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header-one__top-left ul {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  padding: 3px 0px 4px;
  border-radius: 5px;
}

.main-header-one__top-left ul li {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  margin-left: 33px;
}

.main-header-one__top-left ul li:last-child {
  padding-right: 20px;
}

.main-header-one__top-left ul li:first-child {
  margin-left: 20px;
}

.main-header-one__top-left ul li::before {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 3px;
  width: 1px;
  background: #e7e7e7;
  content: "";
}

.main-header-one__top-left ul li:last-child:before {
  display: none;
}

.main-header-one__top-left ul li p {
  color: #767070;
  font-size: 16px;
  font-weight: 400;
}

.main-header-one__top-left ul li p a {
  color: #767070;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__top-left ul li p a:hover {
  color: var(--clenq-primary);
}

.main-header-one__top-left ul li p span::before {
  position: relative;
  display: inline-block;
  color: #2e2d2d;
  font-size: 25px;
  top: 5px;
  padding-right: 2px;
}

.main-header-one__top-right {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 3px 25px 8px;
}

.main-header-one__top-right .social-links {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 20px;
}

.main-header-one__top-right .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 31px;
}

.main-header-one__top-right .social-links li:last-child {
  margin-right: 0;
}

.main-header-one__top-right .social-links li a {
  position: relative;
  display: block;
  color: #1e1d21;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__top-right .social-links li a:hover {
  color: var(--clenq-primary);
}

.main-header-one__top-right .social-links li a.li {
  font-size: 19px;
}

.main-header-one__top-right .text-box {
  position: relative;
  display: block;
  padding-left: 17px;
}

.main-header-one__top-right .text-box::before {
  position: absolute;
  top: -3px;
  left: 0;
  bottom: -8px;
  width: 1px;
  background: #e3e3e3;
  content: "";
}

.main-header-one__top-right .text-box p {
  color: #767070;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.main-header-one__top-right .text-box p span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black2);
  font-size: 25px;
  top: 5px;
  padding-right: 4px;
}

.main-header-one__top-right .text-box p a {
  color: #767070;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-one__top-right .text-box p a:hover {
  color: var(--clenq-primary);
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: #298be7;
  z-index: 1;
}

.main-header-one__bottom .container {
  position: static;
  max-width: 1810px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-header-one__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-one__bottom-left {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.main-header-one__bottom-left .logo-one {
  position: relative;
  display: block;
  width: 305px;
  padding-left: 15px;
  z-index: 1;
}

.main-header-one__bottom-left .logo-one::before {
  content: "";
  position: absolute;
  top: -17px;
  right: -6px;
  width: 6px;
  border-left: 3px solid transparent;
  border-right: 6px solid transparent;
  z-index: 3;
  border-bottom: 8px solid #117bdf;
}

.main-header-one__bottom-left .logo-box{
  display: none;
}

.stricky-header__three .main-header-one__bottom-left .logo-box,
.stricky-header__two .main-header-one__bottom-left .logo-box{
  display: inline-block;
  padding: 15px 0;
}
.stricky-header__three .main-header-two__bottom-left-text .btn-box,
.stricky-header__two .main-header-one__bottom-left .btn-box{
  display: none;
}

.logo-one__bg {
  position: absolute;
  top: -17px;
  left: -15px;
  bottom: 0px;
  right: 0px;
  border-top: 88px solid #117bdf;
  border-right: 30px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-one__bottom-left .logo-one a {
  position: relative;
  display: inline-block;
  top: -4px;
}

.main-header-one__bottom-left .logo-one a img {
  width: 100%;
}

.main-header-one__bottom-left .main-menu__main-menu-box {
  position: relative;
  display: block;
  margin-left: 70px;
}

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
  width: 515px;
  padding-left: 95px;
  z-index: 1;
}

.main-header-one__bottom-right::before {
  position: absolute;
  bottom: -20px;
  left: -6px;
  width: 6px;
  border-left: 6px solid transparent;
  border-right: 7px solid transparent;
  z-index: 3;
  border-top: 8px solid #117bdf;
  content: "";
}

.main-header-one__bottom-right-bg {
  position: absolute;
  top: -13px;
  left: 0;
  bottom: 0px;
  right: -15px;
  border-bottom: 88px solid #117bdf;
  border-left: 50px solid transparent;
  content: "";
  z-index: -1;
}

.main-header__search {
  position: relative;
  display: block;
}

.main-header__search a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header__search a:hover {
  color: var(--clenq-black);
}

.main-header__search a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 23px;
  padding-left: 17px;
  top: 4px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header__search a:hover span::before {
  color: var(--clenq-black);
}

.main-header__cart-box {
  position: relative;
  display: block;
  padding-left: 25px;
  margin-left: 25px;
}

.main-header__cart-box::before {
  position: absolute;
  top: -7px;
  left: 0;
  bottom: -7px;
  width: 1px;
  background: #dbdbdb;
  content: "";
}

.main-header__cart-box i {
  color: #ffffff;
  font-size: 18px;
}

.main-header__cart-box span {
  position: absolute;
  top: -5px;
  right: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #298be7;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
}

.main-header-one__bottom-right .btn-box {
  position: relative;
  display: block;
  margin-left: 61px;
}

.main-header-one__bottom-right .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 15px;
  line-height: 55px;
  text-transform: uppercase;
  background: var(--clenq-base);
  padding: 0px 40px 0px;
  border-radius: 3px;
  font-weight: 500;
}

.main-header-one__bottom-right .btn-box a:hover {
  background: var(--clenq-primary);
  color: #ffffff;
}


.stricky-header__one {
  background-color: var(--clenq-primary);
}

.stricky-header__one .main-menu__list>li>a {
  padding-top: 34px;
  padding-bottom: 34px;
}

.stricky-header__one .main-header-one__bottom-left .logo-one::before {
  display: none;
}

.stricky-header__one .logo-one__bg {
  display: none;
}

.stricky-header__one .main-header-one__bottom-right {
  display: none;
}

.stricky-header__one .main-header-one__bottom-left {
  justify-content: space-between;
  width: 100%;
}


/***
=====================================================
Main Header Two
=====================================================
***/
.main-header-two {
  position: relative;
  display: block;
}

.main-header-two .container {
  position: static;
  max-width: 1810px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.main-header-two__top {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 20px 0px 24px;
  z-index: 1;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-two__top-left {
  position: relative;
  display: block;
}

.main-header-two__top-left .logo-box {
  position: relative;
  display: block;
}

.main-header-two__top-left .logo-box a {
  position: relative;
  display: inline-block;
}

.main-header-two__top-left .logo-box a img {
  width: 100%;
}


.main-header-two__top-middle {
  position: relative;
  display: block;
}

.main-header-two__top-middle ul {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-middle ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 75px;
  margin-left: 75px;
}

.main-header-two__top-middle ul li:first-child {
  margin-left: 0px;
}

.main-header-two__top-middle ul li:last-child {
  padding-right: 0px;
}

.main-header-two__top-middle ul li::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #e7e7e7;
  content: "";
}

.main-header-two__top-middle ul li:last-child:before {
  display: none;
}

.main-header-two__top-middle ul li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 55px;
  border-radius: 5px;
  background: var(--clenq-black);
}

.main-header-two__top-middle ul li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 30px;
}


.main-header-two__top-middle ul li .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-header-two__top-middle ul li .text-box p {
  margin: 0;
  line-height: 25px;
}

.main-header-two__top-middle ul li .text-box h4 {
  color: var(--clenq-black2);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.main-header-two__top-middle ul li .text-box h4 a {
  color: var(--clenq-black2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__top-middle ul li .text-box h4 a:hover {
  color: var(--clenq-primary);
}


.main-header-two__top-right {
  position: relative;
  display: block;
}

.main-header-two__top-right ul {
  position: relative;
  display: block;
}

.main-header-two__top-right ul li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.main-header-two__top-right ul li:last-child {
  margin-right: 0;
}

.main-header-two__top-right ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 55px;
  background: #efefef;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.main-header-two__top-right ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--clenq-primary);
  border-radius: 5px;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-header-two__top-right ul li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-header-two__top-right ul li a span::before {
  position: relative;
  display: inline-block;
  color: #1e1d21;
  font-size: 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__top-right ul li a:hover span::before {
  color: #ffffff;
}

.main-header-two__bottom-left-text {
  position: relative;
  display: flex;
  align-items: center;
  width: 535px;
  padding-left: 55px;
  z-index: 1;
}

.main-header-two__bottom-left-text::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -5px;
  width: 6px;
  border-left: 4px solid transparent;
  border-right: 6px solid transparent;
  z-index: 3;
  border-bottom: 8px solid #117bdf;
}

.main-header-two__bottom-left-text-bg {
  position: absolute;
  top: -32px;
  left: -15px;
  bottom: 0px;
  right: 0px;
  border-top: 88px solid #117bdf;
  border-right: 50px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-two__bottom-left-text .text-box {
  position: relative;
  display: block;
}

.main-header-two__bottom-left-text .text-box p {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.main-header-two__bottom-left-text .btn-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.main-header-two__bottom-left-text .btn-box a {
  position: relative;
  display: inline-block;
  color: #131216;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.025em;
  background: #ffffff;
  padding: 0px 25px 0px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-header-two__bottom-left-text .btn-box a:hover {
  background: var(--clenq-base);
}

.main-header-two .main-header-one__bottom-left .main-menu__main-menu-box {
  margin-left: 25px;
}

.main-header-two .main-header-one__bottom-right {
  width: 430px;
  padding-left: 67px;
}

.main-header-two .main-header-one__bottom-right-bg {
  position: absolute;
  top: -13px;
  left: 0;
  bottom: 0px;
  right: -15px;
  border-top: 88px solid #ffffff;
  border-left: 55px solid transparent;
  border-bottom: 0px;
}

.main-header-two .main-header-one__bottom-right::before {
  display: none;
}

.main-header-two .main-header__search a span::before {
  color: var(--clenq-black2);
}

.main-header-two .main-header__search a:hover span::before {
  color: var(--clenq-primary);
}

.main-header-two .main-header__cart-box i {
  color: var(--clenq-black2);
}

.main-header-two .main-header-one__bottom-right .btn-box a {
  background: var(--clenq-primary);
  color: #ffffff;
}

.main-header-two .main-header-one__bottom-right .btn-box a:hover {
  background: var(--clenq-base);
  color: var(--clenq-black)
}


.stricky-header__two {
  background-color: var(--clenq-primary);
}

.stricky-header__two .main-header-two__bottom-left-text-bg {
  display: none;
}

.stricky-header__two .main-header-one__bottom-right {
  display: none;
}

.stricky-header__two .main-header-two__bottom-left-text::before {
  display: none;
}

.stricky-header__two .main-header-two__bottom-left-text .text-box {
  display: none;
}

.stricky-header__two .main-header-one__bottom-left {
  justify-content: space-between;
  width: 100%;
}

.stricky-header__two .main-header-one__bottom-left .main-menu__main-menu-box {
  margin-left: 0px;
}

.stricky-header__two .main-header-two__bottom-left-text {
  width: 240px;
  padding-left: 0px;
}

.stricky-header__two .main-header-two__bottom-left-text .btn-box {
  margin-left: 0px;
}


/***
=====================================================
Main Header Three
=====================================================
***/
.main-header-two.style3 {
  position: relative;
  display: block;
}

.main-header-two.style3 .main-header-two__top-middle ul li .icon-box span::before {
  color: var(--clenq-primary);
}

.main-header-two.style3 .main-header-two__top-right ul li a {
  background: #f1f8e2;
}

.main-header-two.style3 .main-header-two__top-right ul li a:hover span::before {
  color: #1e1d21;
}

.main-header-two.style3 .main-header-two__bottom-left-text-bg {
  border-top: 88px solid #f6f7f2;
}

.main-header-two.style3 .main-header-two__bottom-left-text .text-box p {
  color: var(--clenq-black);
}

.main-header-two.style3 .main-header-two__bottom-left-text .btn-box a {
  background: var(--clenq-primary);
}

.main-header-two.style3 .main-header-two__bottom-left-text .btn-box a:hover {
  background: var(--clenq-black);
  color: #ffffff;
}

.main-header-two.style3 .main-header-two__bottom-left-text::before {
  display: none;
}

.main-header-two.style3 .main-header-one__bottom {
  background: var(--clenq-black);
}

.main-header-two.style3 .main-menu .main-menu__list>li.current>a,
.main-header-two.style3 .main-menu .main-menu__list>li:hover>a {
  color: var(--clenq-primary);
}

.main-header-two.style3 .main-header__cart-box span {
  background: var(--clenq-primary);
  color: var(--clenq-black);
}

.main-header-two.style3 .main-header-one__bottom-right .btn-box a {
  color: var(--clenq-black);
  border-radius: 28px;
}

.main-header-two.style3 .main-header-one__bottom-right .btn-box a:hover {
  color: var(--clenq-black2);
}

.stricky-header__three {
  background-color: var(--clenq-black);
}

.stricky-header__three .main-header-two__bottom-left-text-bg {
  display: none;
}

.stricky-header__three .main-header-two__bottom-left-text::before {
  display: none;
}

.stricky-header__three .main-header-one__bottom-right {
  display: none;
}

.stricky-header__three .main-header-two__bottom-left-text .text-box {
  display: none;
}

.stricky-header__three .main-header-one__bottom-left {
  width: 100%;
  justify-content: space-between;
}

.stricky-header__three .main-header-one__bottom-left .main-menu__main-menu-box {
  margin-left: 0px;
}

.stricky-header__three .main-header-two__bottom-left-text .btn-box {
  margin-left: 0px;
}

.stricky-header__three .main-header-two__bottom-left-text {
  width: 200px;
  padding-left: 0px;
}


/***
=============================================
Main Slider One
=============================================
***/
.main-slider-one {
  position: relative;
  display: block;
  margin-top: -45px;
  z-index: 1;
}

.main-slider-one__inner {
  position: relative;
  display: block;
}

.main-slider-one__single {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.main-slider-one .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-one .active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-one .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #74899d;
  mix-blend-mode: overlay;
  content: "";
}

.main-slider-one .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.main-slider-one .shape2 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
  z-index: 1;
  opacity: 0;
  transform: translateX(-30%);
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-one .active .shape2 {
  opacity: 1;
  transform: translate(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-one .shape3 {
  position: absolute;
  top: -5px;
  left: 365px;
  mix-blend-mode: overlay;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30%);
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-one .active .shape3 {
  opacity: 1;
  transform: translate(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-one .shape4 {
  position: absolute;
  top: 175px;
  left: 185px;
  opacity: 0.7;
  z-index: 1;
}

.main-slider-one .shape5 {
  position: absolute;
  top: 210px;
  left: 470px;
  opacity: 0.7;
  z-index: 1;
}

.main-slider-one .shape6 {
  position: absolute;
  left: 550px;
  bottom: 65px;
  opacity: 0.7;
  z-index: 1;
}

.main-slider-one .shape7 {
  position: absolute;
  top: 150px;
  right: 270px;
  z-index: 1;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-one .active .shape7 {
  transform: scale(1.0);
  opacity: 1;
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}

.main-slider-one .shape8 {
  position: absolute;
  right: 0;
  bottom: 230px;
  z-index: 1;
  right: 0;
  opacity: 0;
  transform: translateX(40%);
  -webkit-transition: all 1200ms ease;
  -moz-transition: all 1200ms ease;
  -ms-transition: all 1200ms ease;
  -o-transition: all 1200ms ease;
  transition: all 1200ms ease;
}

.main-slider-one .active .shape8 {
  opacity: 1;
  transform: translate(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-one__content {
  position: relative;
  display: block;
  padding: 173px 0px 180px;
  max-width: 640px;
  width: 100%;
  float: right;
  z-index: 5;
}

.main-slider-one__content .tagline {
  position: relative;
  display: block;
  margin-bottom: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  z-index: 10;
}

.main-slider-one .active .main-slider-one__content .tagline {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-one__content .tagline h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  font-family: var(--clenq-font);
}

.main-slider-one__content .title {
  position: relative;
  display: block;
  margin-bottom: 23px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  z-index: 10;
}

.main-slider-one .active .main-slider-one__content .title {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-one__content .title h2 {
  font-weight: 600;
  font-size: 80px;
  line-height: 1.1em;
}

.main-slider-one__content .text {
  position: relative;
  display: block;
  margin-bottom: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  z-index: 10;
}

.main-slider-one .active .main-slider-one__content .text {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-one__content .text p {
  color: var(--clenq-black);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.main-slider-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  z-index: 10;
}

.main-slider-one .active .main-slider-one__content .btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}


.main-slider-one .owl-theme .owl-nav {
  position: absolute;
  display: block;
  align-items: flex-start;
  bottom: 35px;
  right: 0;
  width: 128px;
  z-index: 100;
}

.main-slider-one .owl-carousel .owl-nav button.owl-next,
.main-slider-one .owl-carousel .owl-nav button.owl-prev {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  height: 73px;
  width: 68px;
  background: rgba(158, 158, 158, 0.3);
  border-radius: 29px;
  color: #ffffff;
  font-size: 25px;
  line-height: 73px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider-one .owl-carousel .owl-nav button.owl-prev {
  margin-bottom: 30px;
}

.main-slider-one .owl-carousel .owl-nav button.owl-next:hover,
.main-slider-one .owl-carousel .owl-nav button.owl-prev:hover {
  color: var(--clenq-primary);
  background: var(--clenq-base);
}

.main-slider-one .owl-carousel .owl-nav button.owl-prev span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 73px;
  font-weight: 400;
}

.main-slider-one .owl-carousel .owl-nav button.owl-next span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 73px;
  font-weight: 400;
}


/***
=============================================
Main Slider Two
=============================================
***/
.main-slider-two {
  position: relative;
  display: block;
  margin-top: -80px;
}

.main-slider-two .shape1 {
  position: absolute;
  top: 135px;
  left: 255px;
  opacity: 0.7;
  z-index: 1;
}

.main-slider-two .shape2 {
  position: absolute;
  left: 40px;
  bottom: 215px;
  opacity: 0.7;
  z-index: 1;
}

.main-slider-two .shape3 {
  position: absolute;
  left: 240px;
  bottom: 50px;
  opacity: 0.7;
  z-index: 1;
}

.main-slider-two .shape4 {
  position: absolute;
  left: 780px;
  bottom: 80px;
  opacity: 0.7;
  z-index: 1;
}

.main-slider-two .shape5 {
  position: absolute;
  top: 175px;
  left: 790px;
  z-index: 1;
  webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.main-slider-two__inner {
  position: relative;
  display: block;
}

.main-slider-two__single {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.main-slider-two .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-two .active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-two__content {
  position: relative;
  display: block;
  padding: 259px 0px 170px;
  z-index: 5;
}

.main-slider-two__content .title {
  position: relative;
  display: block;
  margin-bottom: 22px;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-two .active .main-slider-two__content .title {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-two__content .title h2 {
  font-weight: 600;
  font-size: 80px;
  line-height: 1.1em;
}

.main-slider-two__content .text {
  position: relative;
  display: block;
  margin-bottom: 45px;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-two .active .main-slider-two__content .text {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-two__content .text p {
  color: #051b2f;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.main-slider-two__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.main-slider-two .active .main-slider-two__content .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-two__content .btn-box .thm-btn {
  background: var(--clenq-primary);
  color: #ffffff;
}

.main-slider-two__content .btn-box .thm-btn:hover {
  color: var(--clenq-black);
}

.main-slider-two .owl-theme .owl-nav {
  position: absolute;
  display: block;
  align-items: flex-start;
  bottom: 35px;
  right: 0;
  width: 128px;
  z-index: 100;
}

.main-slider-two .owl-carousel .owl-nav button.owl-next,
.main-slider-two .owl-carousel .owl-nav button.owl-prev {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  height: 73px;
  width: 68px;
  background: rgba(49, 64, 79, 0.3);
  border-radius: 29px;
  color: #ffffff;
  font-size: 25px;
  line-height: 73px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider-two .owl-carousel .owl-nav button.owl-prev {
  margin-bottom: 30px;
}

.main-slider-two .owl-carousel .owl-nav button.owl-next:hover,
.main-slider-two .owl-carousel .owl-nav button.owl-prev:hover {
  background: var(--clenq-primary);
}

.main-slider-two .owl-carousel .owl-nav button.owl-prev span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 73px;
  font-weight: 400;
}

.main-slider-two .owl-carousel .owl-nav button.owl-next span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 73px;
  font-weight: 400;
}

/***
=============================================
Main Slider Three
=============================================
***/
.main-slider-three {
  position: relative;
  display: block;
  margin-top: -80px;
}

.main-slider-three__inner {
  position: relative;
  display: block;
}

.main-slider-two__single {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.main-slider-two__single .shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  mix-blend-mode: overlay;
  z-index: 1;
  opacity: 0;
  transform: translateX(40%);
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-three .active .main-slider-two__single .shape2 {
  opacity: 1;
  transform: translate(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-three .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #323232;
  background-blend-mode: overlay;
  opacity: 1;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-three .active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-three .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #6a7159;
  mix-blend-mode: overlay;
  content: "";
}

.main-slider-three .container {
  padding: 243px 15px 195px;
}

.main-slider-three__content {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 12px;
  z-index: 5;
}

.main-slider-three__content .tagline {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider-three .active .main-slider-three__content .tagline {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-three__content .tagline .shape1 {
  position: absolute;
  top: -14px;
  right: -45px;
}

.main-slider-three__content .tagline p {
  color: var(--clenq-primary);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.main-slider-three__content .title {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider-three .active .main-slider-three__content .title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-three__content .title h2 {
  color: #ffffff;
  font-size: 80px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.main-slider-three__content .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 47px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider-three .active .main-slider-three__content .btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-three__content .btn-box .btn-one {
  position: relative;
  display: block;
  margin-right: 15px;
}

.main-slider-three__content .btn-box .btn-one .thm-btn.style2 {
  border: none;
}

.main-slider-three__content .btn-box .btn-two {
  position: relative;
  display: block;
}

.main-slider-three__content .btn-box .btn-two a {
  position: relative;
  display: block;
  border: 2px solid #ffffff;
  border-radius: 28px;
  padding: 11px 23px 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-three__content .btn-box .btn-two a:hover {
  border-color: var(--clenq-primary);
}

.main-slider-three__icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-slider-three__icon i:before {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--clenq-primary);
  border-radius: 50%;
  color: var(--clenq-black);
  font-size: 20px;
}

.main-slider-three__icon span {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--clenq-font);
  margin-left: 12px;
}

.main-slider-three .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 100;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-slider-three .owl-carousel .owl-nav button.owl-next,
.main-slider-three .owl-carousel .owl-nav button.owl-prev {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  height: 73px;
  width: 68px;
  background: rgba(155, 155, 155, 0.3);
  border-radius: 29px;
  color: #ffffff;
  font-size: 25px;
  line-height: 73px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider-three .owl-carousel .owl-nav button.owl-prev {
  margin-bottom: 30px;
}

.main-slider-three .owl-carousel .owl-nav button.owl-next:hover,
.main-slider-three .owl-carousel .owl-nav button.owl-prev:hover {
  background: rgba(0, 0, 0, 0.4);
}

.main-slider-three .owl-carousel .owl-nav button.owl-prev span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 73px;
  font-weight: 400;
}

.main-slider-three .owl-carousel .owl-nav button.owl-next span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 73px;
  font-weight: 400;
}


/***
=============================================
  Page Header
=============================================
***/
.page-header {
  position: relative;
  display: block;
  padding: 215px 0px 175px;
  overflow: hidden;
  margin-top: -45px;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #959595;
  background-blend-mode: overlay;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.page-header__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #658099;
  mix-blend-mode: overlay;
  content: "";
  z-index: -2;
}

.page-header__gradient {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1180px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.page-header .shape1 {
  position: absolute;
  top: 155px;
  right: 320px;
  z-index: -1;
}

.page-header .shape2 {
  position: absolute;
  right: 400px;
  bottom: 95px;
  opacity: 0.7;
  z-index: -1;
}

.page-header .shape3 {
  position: absolute;
  right: 0px;
  bottom: 45px;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
}

.page-header__inner h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb {
  position: relative;
  display: block;
  margin-top: 14px;
}

.page-header__inner .thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--clenq-black2);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--clenq-font);
  padding-left: 8px;
}

.page-header__inner .thm-breadcrumb li a {
  color: var(--clenq-black2);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--clenq-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
  color: var(--clenq-primary);
}

/***
=============================================
Why Choose One
=============================================
***/
.why-choose-one {
  position: relative;
  display: block;
  padding: 110px 0px 0px;
  overflow: hidden;
  z-index: 1;
}

.why-choose-one .shape1 {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: -1;
}

.why-choose-one .shape2 {
  position: absolute;
  top: -35px;
  right: 0;
  z-index: -1;
}

.why-choose-one .auto-container {
  position: static;
  max-width: 1560px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.why-choose-one__inner {
  position: relative;
  display: block;
  background: #f5f5f5;
  padding: 45px 0px 150px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.why-choose-one__inner .shape3 {
  position: absolute;
  top: -190px;
  left: -175px;
  mix-blend-mode: overlay;
  z-index: -1;
}

.why-choose-one__inner .shape4 {
  position: absolute;
  top: -395px;
  right: -190px;
  z-index: -1;
}

.why-choose-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-top: 45px;
}

.why-choose-one__single .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--clenq-base);
  border-radius: 50%;
  border: 1px solid var(--clenq-black2);
  margin: 0 auto;
  z-index: 5;
}

.why-choose-one__single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 55px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.why-choose-one__single:hover .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.why-choose-one__single-inner {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--clenq-black2);
  padding: 91px 10px 60px;
}

.why-choose-one__single-inner h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 12px;
}

.why-choose-one__single-inner h2 a {
  color: var(--clenq-black2);
}

.why-choose-one__single-inner h2 a:hover {
  color: var(--clenq-primary);
}

.why-choose-one__single-inner p {
  margin: 0;
}


/***
=============================================
Cta One
=============================================
***/
.cta-one {
  position: relative;
  display: block;
  margin-top: -85px;
  z-index: 5;
}

.cta-one__inner {
  position: relative;
  display: block;
  padding: 168px 0px 80px;
  z-index: 1;
}

.cta-one__inner .shape1 {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 5px;
}

.cta-one__inner-box {
  position: relative;
  display: block;
  z-index: 5;
}

.cta-one__inner-box .text-box {
  position: relative;
  display: block;
  margin-bottom: 29px;
}

.cta-one__inner-box .text-box h2 {
  color: #ffffff;
  font-size: 45px;
  line-height: 55px;
  font-weight: 500;
}

.cta-one__inner-box .btn-box {
  position: relative;
  display: block;
}


/***
=============================================
About One
=============================================
***/
.about-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 150px;
  z-index: 1;
}

.about-one .shape2 {
  position: absolute;
  top: 45px;
  left: 0;
  z-index: -1;
}

.about-one .shape3 {
  position: absolute;
  top: -110px;
  right: 0;
  z-index: -1;
}

.about-one__img {
  position: relative;
  display: block;
  margin-left: -180px;
  margin-right: -35px;
}

.about-one__img1 {
  position: relative;
  display: block;
  max-width: 635px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.about-one__img1 img {
  width: 100%;
}

.about-one__img2 {
  position: absolute;
  bottom: 80px;
  right: 190px;
  width: 225px;
  height: 225px;
  border: 10px solid #ffffff;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.about-one__img2::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #8c99a4;
  mix-blend-mode: overlay;
  content: "";
}

.about-one__img2 img {
  width: 100%;
}

.about-one__img3 {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 265px;
  height: 265px;
  border: 10px solid #ffffff;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.about-one__img3::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #8c99a4;
  mix-blend-mode: overlay;
  content: "";
}

.about-one__img .shape1 {
  position: absolute;
  right: 105px;
  bottom: 190px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  z-index: 5;
}

.about-one__img .shape1 img {
  width: auto;
}

.about-one__img .shape1::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0px;
  background: var(--clenq-base);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.about-one__img .shape1::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -8px;
  background: #0860b2;
  border-radius: 50%;
  content: "";
  z-index: -2;
}

.about-one__content {
  position: relative;
  display: block;
  margin-left: 62px;
}

.about-one__content .sec-title {
  padding-bottom: 42px;
}

.about-one__content-text1 {
  position: relative;
  display: block;
}

.about-one__content-text1 p {
  margin: 0;
}

.about-one__content-text2 {
  position: relative;
  display: block;
  margin-top: 45px;
}

.about-one__content-text2-single {
  position: relative;
  display: block;
  background: var(--clenq-base);
  border-radius: 5px;
  text-align: center;
  padding: 33px 10px 33px;
}

.about-one__content-text2-single .counter-box {
  position: relative;
  display: block;
}

.about-one__content-text2-single .counter-box h2 {
  font-size: 42px;
  line-height: 0.9em;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-one__content-text2-single .counter-box h2 .plus {
  position: relative;
  display: inline-block;
  top: 3px;
  left: -7px;
}

.about-one__content-text2-single .counter-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.about-one__content-text2-single .counter-box p {
  color: var(--clenq-black);
  font-size: 14px;
  line-height: 24px;
}

.about-one .odometer.odometer-auto-theme,
.about-one .odometer.odometer-theme-default {
  font-family: var(--clenq-font);
  line-height: 0.9em;
}

.about-one__content-text2-single.style2 {
  position: relative;
  display: block;
  background: var(--clenq-primary);
  padding: 20px 10px 22px;
}

.about-one__content-text2-single .progress-box {
  position: relative;
  display: block;
  line-height: 0;
}

.about-one__content-text2-single .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.about-one__content-text2-single .progress-box .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.about-one__content-text2-single .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.about-one__content-text2-single .progress-box .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

.about-one__content-text2-single .title-box {
  position: relative;
  display: block;
  margin-top: 18px;
}

.about-one__content-text2-single .title-box h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--clenq-font);
}

.about-one__content-text3 {
  position: relative;
  display: block;
  margin-top: 50px;
}

.about-one__content-text3-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-one__content-text3-list li {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.about-one__content-text3-list li:last-child {
  margin-bottom: 0;
}

.about-one__content-text3-list li p {
  color: #080501;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.about-one__content-text3-list li p span::before {
  position: relative;
  display: inline-block;
  color: #0860b2;
  font-size: 16px;
}

.about-one__content-text3 .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 37px;
}

.about-one__content-text3 .btn-box .thm-btn {
  background: var(--clenq-primary);
  color: #ffffff;
}

/***
=============================================
Projects One
=============================================
***/
.projects-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.projects-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #b5c0ca;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.projects-one .container {
  position: static;
  max-width: 1470px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.projects-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.projects-one__single-img {
  position: relative;
  display: block;
}

.projects-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
}

.projects-one__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--clenq-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.projects-one__single:hover .projects-one__single-img .inner::before {
  opacity: 1;
}

.projects-one__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.projects-one__single:hover .projects-one__single-img .inner img {
  transform: scale(1);
}

.projects-one__single-img .inner .overlay-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 20px;
  bottom: 20px;
  right: 15px;
  background: #f2f8fd;
  padding: 20px 35px 19px;
  padding-right: 17px;
  z-index: 5;
}

.projects-one__single-img .inner .overlay-content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  top: -27px;
  width: 160px;
  background: #f2f8fd;
  content: "";
  z-index: -1;
}

.projects-one__single-img .inner .overlay-content::after {
  content: "";
  position: absolute;
  top: -27px;
  left: 125px;
  width: 35px;
  border-top: 27px solid transparent;
  z-index: 3;
  border-right: 35px solid #d7dde4;
}

.projects-one__single-img .inner .overlay-content .content-box {
  position: relative;
  display: block;
}

.projects-one__single-img .inner .overlay-content .content-box p {
  position: relative;
  color: var(--clenq-black2);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 30px;
}

.projects-one__single-img .inner .overlay-content .content-box p::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--clenq-black2);
  content: "";
}

.projects-one__single-img .inner .overlay-content .content-box h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.projects-one__single-img .inner .overlay-content .content-box h2 a {
  color: var(--clenq-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-one__single-img .inner .overlay-content .content-box h2 a:hover {
  color: var(--clenq-primary);
}

.projects-one__single-img .inner .overlay-content .btn-box {
  position: relative;
  display: block;
}

.projects-one__single-img .inner .overlay-content .btn-box a {
  position: relative;
  display: inline-block;
  background-color: #e0e7ee;
  color: #245180;
  font-size: 14px;
  line-height: 45px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--clenq-font);
  border-radius: 3px;
  padding: 0px 30px 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-one__single-img .inner .overlay-content .btn-box a:hover {
  background: var(--clenq-base);
  color: var(--clenq-black);
}

.projects-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 785px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--clenq-black2);
  border-radius: 3px;
  line-height: 0;
  padding-left: 35px;
  margin-top: 35px;
}

.projects-one__bottom .text-box {
  position: relative;
  display: block;
}

.projects-one__bottom .text-box p {
  color: var(--clenq-black2);
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
}

.projects-one__bottom .btn-box {
  position: relative;
  display: block;
}

.projects-one__bottom .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 16px;
  line-height: 60px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 3px;
  border: 1px solid var(--clenq-black2);
  border-top: none;
  border-bottom: none;
  border-right: none;
  padding: 0px 25px 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-one__bottom .btn-box a:hover {
  background: var(--clenq-black);
  color: #ffffff;
}

/***
=============================================
Team One
=============================================
***/
.team-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 80px;
  z-index: 1;
}

.team-one__top {
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.team-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-one__top-inner .sec-title {
  padding-bottom: 0;
}

.team-one__top-inner .text-box {
  position: relative;
  display: block;
  max-width: 555px;
  width: 100%;
  background: #f8f8f8;
  padding: 30px 30px 30px;
  padding-right: 25px;
}

.team-one__top-inner .text-box p {
  margin: 0;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__single-inner {
  position: relative;
  display: block;
  border: 1px solid var(--clenq-black);
  border-radius: 10px;
  overflow: hidden;
  padding: 25px 25px 25px;
}

.team-one__single-img {
  position: relative;
  display: block;
}

.team-one__single-img .btn-box {
  position: absolute;
  left: 0;
  bottom: -25px;
  right: 0;
  margin: 0 auto;
  z-index: 5;
}

.team-one__single-img .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-img .btn-box a:hover {
  background: var(--clenq-base);
}

.team-one__single-img .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 15px;
  font-weight: 700;
}

.team-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.team-one__single-img .inner:before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: var(--clenq-black);
  z-index: 1;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.team-one__single:hover .team-one__single-img .inner:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.team-one__single-img .inner img {
  width: 100%;
  transition: all 700ms ease;
}

.team-one__single:hover .team-one__single-img .inner img {
  transform: scaleY(1.1);
}

.team-one__single-content {
  position: relative;
  display: block;
  text-align: center;
  background: #f1eeee;
  padding: 33px 10px 20px;
  z-index: 1;
}

.team-one__single-content .shape1 {
  position: absolute;
  top: 30px;
  left: 15px;
  z-index: -1;
}

.team-one__single-content .shape2 {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: -1;
}

.team-one__single-content h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

.team-one__single-content h2 a {
  color: var(--clenq-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-content h2 a:hover {
  color: var(--clenq-primary);
}

.team-one__single-content p {
  color: rgba(var(--clenq-black-rgb), .8);
}


/***
=============================================
Services One
=============================================
***/
.services-one {
  position: relative;
  display: block;
  padding: 110px 0px 110px;
  z-index: 1;
}

.services-one .shape1 {
  position: absolute;
  left: 125px;
  bottom: 130px;
  z-index: -1;
}

.services-one .shape2 {
  position: absolute;
  top: 170px;
  right: 270px;
  z-index: -1;
}

.services-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #10283f;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.services-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #10283f;
  opacity: 0.5;
  content: "";
  z-index: -2;
}

.services-one .auto-container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.services-one .sec-title__tagline p {
  color: #ffffff;
}

.services-one .sec-title__title {
  color: #ffffff;
}

.services-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 35px 35px 55px;
  padding-right: 25px;
  z-index: 1;
  margin-bottom: 30px;
}

.services-one__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.services-one__single-inner {
  position: relative;
  display: block;
}

.services-one__single-inner::before {
  position: absolute;
  top: 45px;
  left: 0px;
  bottom: 0px;
  width: 3px;
  background: #e2e5dc;
  content: "";
  z-index: -1;
}

.services-one__single-top {
  position: relative;
  display: flex;
  align-items: center;
}

.services-one__single-top .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--clenq-base);
  border-radius: 50%;
  border: 4px solid #e2e5dc;
}

.services-one__single-top .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 50px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__single-top .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.services-one__single-top .content-box {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.services-one__single-top .content-box .top-box {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 3px;
}

.services-one__single-top .content-box .top-box .shape {
  position: relative;
  display: block;
}

.services-one__single-top .content-box .top-box .line {
  position: relative;
  display: block;
  width: 42px;
  height: 3px;
  background: var(--clenq-black2);
  margin-left: 3px;
}

.services-one__single-top .content-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.services-one__single-top .content-box h2 a {
  color: var(--clenq-black2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__single-top .content-box h2 a:hover {
  color: var(--clenq-primary);
}

.services-one__single .text-box {
  position: relative;
  display: block;
  margin-top: 25px;
  padding-left: 25px;
}

.services-one__single .text-box p {
  margin: 0;
}

.services-one__single .btn-box {
  position: relative;
  display: block;
  margin-top: 30px;
  padding-left: 25px;
}

.services-one__single .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--clenq-black2);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--clenq-font-two);
  padding-bottom: 5px;
  z-index: 1;
}

.services-one__single .btn-box a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: var(--clenq-black2);
  content: "";
  z-index: -1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__single .btn-box a:hover::before {
  background: var(--clenq-primary);
}

.services-one__single .btn-box a::after {
  position: absolute;
  left: -24px;
  bottom: 0;
  right: 0;
  height: 3px;
  background: #e2e5dc;
  content: "";
  z-index: -2;
}


.services-one__bottom {
  position: relative;
  display: block;
  margin-top: 50px;
}

.services-one__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 5px;
  padding: 41px 60px 42px;
  border-bottom: 4px dashed var(--clenq-primary);
}

.services-one__bottom-inner .text-box {
  position: relative;
  display: block;
}

.services-one__bottom-inner .text-box h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 500;
}

.services-one__bottom-inner .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

/***
=============================================
Testimonial One
=============================================
***/
.testimonial-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.testimonial-one__top {
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.testimonial-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-one__top-inner .sec-title {
  padding-bottom: 0;
}

.testimonial-one__top-inner .text-box {
  position: relative;
  display: block;
  max-width: 555px;
  width: 100%;
  background: #f8f8f8;
  padding: 30px 30px 30px;
  padding-right: 25px;
}

.testimonial-one__top-inner .text-box p {
  margin: 0;
}

.testimonial-one__inner {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30.72px 1.28px rgba(218, 218, 218, 0.42);
  padding: 35px 40px 45px;
  padding-right: 50px;
  z-index: 1;
  overflow: hidden;
}

.testimonial-one__single .shape1 {
  position: absolute;
  top: -1px;
  z-index: -1;
  right: -28px;
}

.testimonial-one__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.testimonial-one__single-top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__single-top-left .img-box {
  position: relative;
  display: block;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--clenq-base);
}

.testimonial-one__single-top-left .img-box img {
  width: 100%;
}

.testimonial-one__single-top-left .content-box {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.testimonial-one__single-top-left .content-box h2 {
  font-size: 22px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

.testimonial-one__single-top-left .content-box p {
  color: var(--clenq-black2);
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 2px;
}

.testimonial-one__single-top-left .rating-box ul li span {
  color: #ffa210;
}

.testimonial-one__single-top-right {
  position: relative;
  display: block;
}

.testimonial-one__single-top-right .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
}

.testimonial-one__single-top-right .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black2);
  font-size: 30px;
}

.testimonial-one__single-bottom {
  position: relative;
  display: block;
  max-width: 425px;
  width: 100%;
}

.testimonial-one__single-bottom p {
  margin: 0;
}


.testimonial-one__inner .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__inner .owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__inner .owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}


/***
=============================================
Process One
=============================================
***/
.process-one {
  position: relative;
  display: block;
  counter-reset: count;
  z-index: 1;
}

.process-one .auto-container {
  position: static;
  max-width: 1560px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.process-one__inner {
  position: relative;
  display: block;
  padding: 110px 0px 80px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.process-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #3292ec;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.process-one__bg::after {
  position: absolute;
  left: 250px;
  bottom: 1px;
  right: 250px;
  border-bottom: 3px dashed #ffffff;
  content: "";
}

.process-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #3292ec;
  opacity: 0.8;
  content: "";
  z-index: -2;
}

.process-one .sec-title__tagline p {
  color: #ffffff;
}

.process-one .sec-title__title {
  color: #ffffff;
}

.process-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  max-width: 220px;
  width: 100%;
}

.process-one__single .shape1 {
  position: absolute;
  top: 25px;
  right: -70px;
  z-index: 1;
}

.process-one__single .shape2 {
  position: absolute;
  left: -75px;
  bottom: 15px;
  z-index: 1;
}

.process-one__single.ml20 {
  margin-left: 20px;
}

.process-one__single.ml40 {
  margin-left: 40px;
}

.process-one__single.ml50 {
  margin-left: 50px;
}

.process-one__single.mt60 {
  margin-top: 60px;
}

.process-one__single-img {
  position: relative;
  display: block;
}

.process-one__single-img .count-box {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  color: var(--clenq-black2);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--clenq-font);
  z-index: 5;
}

.process-one__single-img .count-box::before {
  counter-increment: count;
  content: "0"counter(count);
}

.process-one__single-img .inner {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #ffffff;
  margin: 0 auto;
  z-index: 2;
}

.process-one__single-img .inner::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(var(--clenq-black-rgb), .3);
  transform: scale(0.5);
  opacity: 0;
  transition: all 500ms ease;
  z-index: 1;
}

.process-one__single:hover .process-one__single-img .inner::before {
  transform: scale(1);
  opacity: 1;
}

.process-one__single-img .inner img {
  width: 100%;
  transition: all 500ms ease;
}

.process-one__single:hover .process-one__single-img .inner img {
  transform: scale(1.1)
}

.process-one__single-content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
  padding: 16px 0px 22px;
}

.process-one__single-content .shape1 {
  position: absolute;
  top: -20px;
  right: 5px;
  z-index: -1;
}

.process-one__single-content::before {
  position: absolute;
  top: -90px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--clenq-primary);
  border-radius: 5px;
  content: "";
  z-index: -1;
}

.process-one__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.process-one__single-content h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process-one__single-content h2 a:hover {
  color: var(--clenq-base);
}


/***
=============================================
Blog One
=============================================
***/
.blog-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 80px;
  z-index: 1;
}

.blog-one__top {
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.blog-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-one__top-inner .sec-title {
  padding-bottom: 0;
}


.blog-one__top-inner .text-box {
  position: relative;
  display: block;
  max-width: 555px;
  width: 100%;
  background: #f8f8f8;
  padding: 30px 30px 30px;
  padding-right: 25px;
}

.blog-one__top-inner .text-box p {
  margin: 0;
}

.blog-one .auto-container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__single-img {
  position: relative;
  display: block;
}

.blog-one__single-img .date-box {
  position: absolute;
  left: 30px;
  bottom: -14px;
  width: 85px;
  height: 28px;
  background: var(--clenq-base);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clenq-black2);
  font-size: 14px;
  font-weight: 500;
  z-index: 5;
}

.blog-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

.blog-one__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--clenq-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-one__single:hover .blog-one__single-img .inner::before {
  opacity: 1;
}

.blog-one__single-img .inner .text-box {
  position: absolute;
  top: 30px;
  left: 35px;
  width: 85px;
  height: 25px;
  background: var(--clenq-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 13px;
  z-index: 5;
}

.blog-one__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img .inner img {
  transform: scale(1);
}

.blog-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(209, 210, 212, 0.35);
  padding: 35px 30px 25px;
  padding-right: 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
}

.blog-one__single-content .shape1 {
  position: absolute;
  top: 25px;
  right: 15px;
  z-index: -1;
}

.blog-one__single-content .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 11px;
}

.blog-one__single-content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 20px;
  line-height: 0;
}

.blog-one__single-content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-one__single-content .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-one__single-content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black2);
  font-size: 16px;
}

.blog-one__single-content .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-one__single-content .meta-box li .text p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.blog-one__single-content .meta-box li .text p a {
  color: rgba(var(--clenq-black2-rgb), 0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .meta-box li .text p a:hover {
  color: var(--clenq-primary);
}

.blog-one__single-content h2 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 500;
}

.blog-one__single-content h2 a {
  color: var(--clenq-black2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content h2 a:hover {
  color: var(--clenq-primary);
}

.blog-one__single-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  overflow: hidden;
  background: #ecf6ff;
  padding-right: 20px;
  margin-top: 16px;
}

.blog-one__single-content-bottom .btn-box {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--clenq-primary);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  background: #deebf8;
  border-radius: 10px;
  padding: 6px 25px 7px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .btn-box a:hover {
  background: var(--clenq-base);
  color: var(--clenq-black);
}

.blog-one__single-content-bottom .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-primary);
  font-size: 12px;
  padding-left: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .btn-box a:hover span::before {
  color: var(--clenq-black);
}

.blog-one__single-content-bottom .share-post {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom .share-post p {
  color: var(--clenq-black2);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.blog-one__single-content-bottom .share-post p a {
  color: var(--clenq-black2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .share-post p a:hover {
  color: var(--clenq-primary);
}

.blog-one__single-content-bottom .share-post p a span::before {
  position: relative;
  display: inline-block;
  color: #484657;
  font-size: 16px;
  top: 1px;
  padding-left: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .share-post p a:hover span::before {
  color: var(--clenq-primary);
}


/***
=============================================
Cta Two
=============================================
***/
.cta-two {
  position: relative;
  display: block;
  margin-bottom: -75px;
  z-index: 5;
}

.cta-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clenq-base);
  border-radius: 10px;
  padding: 41px 75px 41px;
  padding-right: 225px;
  overflow: hidden;
  z-index: 1;
}

.cta-two__inner .shape1 {
  position: absolute;
  bottom: -52px;
  right: -60px;
  z-index: -1;
}

.cta-two__inner .text-box {
  position: relative;
  display: block;
}

.cta-two__inner .text-box h2 {
  color: #194b7c;
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
}

.cta-two__inner .text-box p {
  color: rgba(25, 75, 124, 0.8);
}

.cta-two__inner .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.cta-two__inner .btn-box .thm-btn {
  color: #ffffff;
  background: var(--clenq-primary);
}


/***
=============================================
Footer One
=============================================
***/
.footer-one {
  position: relative;
  display: block;
  background: #010d18;
  overflow: hidden;
  z-index: 1;
}

.footer-one .shape2 {
  position: absolute;
  top: 150px;
  left: 85px;
  z-index: -1;
}

.footer-one .shape3 {
  position: absolute;
  left: 205px;
  bottom: 75px;
  z-index: -1;
}

.footer-one .shape4 {
  position: absolute;
  top: -85px;
  left: 185px;
  z-index: -1;
}

.footer-one .shape5 {
  position: absolute;
  top: 125px;
  right: 125px;
  z-index: -1;
}

.footer-one .shape6 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-one__top {
  position: relative;
  display: block;
  padding: 165px 0px 50px;
}

.footer-one__single {
  position: relative;
  display: block;
}

.footer-one__single .title-box {
  position: relative;
  display: block;
  margin-bottom: 35px;
  margin-top: -8px;
}

.footer-one__single .title-box h3 {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
}


.footer-one__about {
  position: relative;
  display: block;
}

.footer-one__about-logo {
  position: relative;
  display: block;
}

.footer-one__about-logo a {
  position: relative;
  display: inline-block;
}

.footer-one__about-logo a img {
  width: 100%;
}

.footer-one__about-text {
  position: relative;
  display: block;
  margin-top: 26px;
}

.footer-one__about-text p {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}


.footer-one__about-list {
  position: relative;
  display: block;
  margin-top: 28px;
}

.footer-one__about-list li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.footer-one__about-list li:last-child {
  margin-bottom: 0;
}

.footer-one__about-list li p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
}

.footer-one__about-list li p img {
  position: relative;
  padding-right: 8px;
}

.footer-one__about-list li p a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__about-list li p a:hover {
  color: rgba(255, 255, 255, 0.8);
}


.footer-one__links {
  position: relative;
  display: block;
}

.footer-one__links-box {
  position: relative;
  display: block;
}

.footer-one__links-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-one__links-list li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.footer-one__links-list li:last-child {
  margin-bottom: 0;
}

.footer-one__links-list li p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
}

.footer-one__links-list li p img {
  position: relative;
  padding-right: 8px;
  top: -1px;
}

.footer-one__links-list li p a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__links-list li p a:hover {
  color: rgba(255, 255, 255, 0.8);
}


.footer-one__post {
  position: relative;
  display: block;
  margin-left: 15px;
  margin-right: 30px;
}

.footer-one__post-box {
  position: relative;
  display: block;
  padding-top: 2px;
}

.footer-one__post-box ul {
  position: relative;
  display: block;
}

.footer-one__post-box ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #2e3024;
  padding-bottom: 26px;
  margin-bottom: 25px;
}

.footer-one__post-box ul li:last-child {
  margin-bottom: 0;
}

.footer-one__post-box ul li .img-box {
  position: relative;
  display: block;
  width: 80px;
  border-radius: 3px;
  overflow: hidden;
}

.footer-one__post-box ul li .img-box img {
  width: 100%;
}

.footer-one__post-box ul li .content-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.footer-one__post-box ul li .content-box p {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-one__post-box ul li .content-box p span::before {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  top: 1px;
}

.footer-one__post-box ul li .content-box h4 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--clenq-font);
}

.footer-one__post-box ul li .content-box h4 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__post-box ul li .content-box h4 a:hover {
  color: var(--clenq-primary);
}


.footer-one__newsletter {
  position: relative;
  display: block;
}

.footer-one__newsletter-box {
  position: relative;
  display: block;
}

.footer-one__newsletter-text1 {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.footer-one__newsletter-text1 p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.footer-one__newsletter-form {
  position: relative;
  display: block;
}

.footer-one__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-one__newsletter-form-input-box input[type="email"] {
  color: #848484;
  font-size: 15px;
  height: 60px;
  width: 100%;
  font-weight: 400;
  padding-left: 45px;
  padding-right: 30px;
  background: #ffffff;
  border-radius: 3px;
  outline: none;
  border: none;
}

.footer-one__newsletter-form-input-box .icon {
  position: absolute;
  top: 16px;
  left: 15px;
  font-size: 20px;
  color: #e6e6e6;
}

.footer-one__newsletter-form-input-box .icon span::before {
  position: relative;
  display: inline-block;
  font-weight: 400;
  top: 1px;
}

.footer-one__newsletter-btn {
  position: relative;
  display: block;
  margin-top: 10px;
}

.footer-one__newsletter-btn .thm-btn {
  text-transform: capitalize;
  font-weight: 600;
  width: 100%;
  background: var(--clenq-primary);
  color: #ffffff;
}

.footer-one__newsletter-text2 {
  position: relative;
  display: block;
  margin-top: 25px;
}

.footer-one__newsletter-text2 p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-one__bottom {
  position: relative;
  display: block;
}

.footer-one__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #2e3024;
  padding: 40px 0px 40px;
}

.footer-one__bottom-left {
  position: relative;
  display: block;
}

.footer-one__bottom-left p {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.025em;
}

.footer-one__bottom-left p a {
  color: #ffffff;
}

.footer-one__bottom-left p a:hover {
  color: var(--clenq-primary);
}

.footer-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-one__bottom-right .title-box {
  position: relative;
  display: block;
}

.footer-one__bottom-right .title-box p {
  color: #ffffff;
}


.footer-one__bottom-right .social-links {
  position: relative;
  display: block;
  margin-left: 15px;
}

.footer-one__bottom-right .social-links ul {
  position: relative;
  display: block;
}

.footer-one__bottom-right .social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.footer-one__bottom-right .social-links ul li:last-child {
  margin-right: 0;
}

.footer-one__bottom-right .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #433838;
  font-size: 15px;
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.footer-one__bottom-right .social-links ul li a:hover {
  color: var(--clenq-black2);
}

.footer-one__bottom-right .social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--clenq-base);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.footer-one__bottom-right .social-links ul li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}


/***
=============================================
About Two
=============================================
***/
.about-two {
  position: relative;
  display: block;
  padding: 110px 0px 110px;
  overflow: hidden;
  z-index: 1;
}

.about-two .shape2 {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: -1;
}

.about-two .shape3 {
  position: absolute;
  top: -115px;
  right: 0;
  z-index: -1;
}

.about-two__img {
  position: relative;
  display: block;
  margin-left: -305px;
  padding-right: 50px;
}

.about-two__img::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 60px;
  background: #011222;
  content: "";
}

.about-two__img::after {
  position: absolute;
  top: 80px;
  right: 0;
  width: 22px;
  height: 230px;
  background: var(--clenq-primary);
  content: "";
}

.about-two__img1 {
  position: relative;
  display: block;
}

.about-two__img1 img {
  width: 100%;
}

.about-two__img2 {
  position: absolute;
  right: -10px;
  bottom: -50px;
  z-index: 1;
}

.about-two__img2 .shape1 {
  position: absolute;
  top: -65px;
  left: -50px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
}

.about-two__img2 .shape1::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.about-two__img2 .shape1::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -8px;
  background: #0860b2;
  border-radius: 50%;
  content: "";
  z-index: -2;
}

.about-two__img2 .inner {
  position: relative;
  display: block;
  width: 360px;
  height: 355px;
  border: 10px solid #ffffff;
  background: #8c99a4;
}

.about-two__img2 .inner img {
  width: 100%;
  mix-blend-mode: overlay;
}


.about-two__content {
  position: relative;
  display: block;
  margin-left: 61px;
}

.about-two__content .sec-title {
  padding-bottom: 37px;
}

.about-two__content-text1 {
  position: relative;
  display: block;
}

.about-two__content-text1 p {
  font-size: 18px;
  line-height: 34px;
  margin: 0;
}

.about-two__content-text2 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.about-two__content-text2-single {
  position: relative;
  display: block;
}

.about-two__content-text2-single.mr10 {
  margin-right: -10px;
}

.about-two__content-text2-single ul {
  position: relative;
  display: block;
}

.about-two__content-text2-single ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd4ce;
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.about-two__content-text2-single ul li:last-child {
  border-bottom: none;
}

.about-two__content-text2-single ul li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--clenq-black);
  border-radius: 50%;
}

.about-two__content-text2-single ul li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 45px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-two__content-text2-single ul li:hover .icon-box span::before {
  transform: scale(0.9);
}

.about-two__content-text2-single ul li .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.about-two__content-text2-single ul li .content-box h3 {
  color: #080501;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}

.about-two__content-text2-single ul li .content-box p {
  margin: 0;
}

.about-two__content-text2-single.style2 {
  position: relative;
  display: block;
  background: var(--clenq-primary);
  padding: 20px 10px 22px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 18px;
  margin-left: 15px;
}

.about-two__content-text2-single .progress-box {
  position: relative;
  display: block;
  line-height: 0;
}

.about-two__content-text2-single .progress-box .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.about-two__content-text2-single .progress-box .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.about-two__content-text2-single .progress-box .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.about-two__content-text2-single .progress-box .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

.about-two__content-text2-single .title-box {
  position: relative;
  display: block;
  margin-top: 18px;
}

.about-two__content-text2-single .title-box h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.about-two__content-text3 {
  position: relative;
  display: block;
}

.about-two__content-text3-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-two__content-text3-list li {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.about-two__content-text3-list li:last-child {
  margin-bottom: 0;
}

.about-two__content-text3-list li p {
  color: #080501;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.about-two__content-text3-list li p span::before {
  position: relative;
  display: inline-block;
  color: #0860b2;
  font-size: 16px;
  padding-right: 6px;
  top: 1px;
}

.about-two__content-text3 .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 46px;
}

.about-two__content-text3 .btn-box .thm-btn {
  background: var(--clenq-primary);
  color: #ffffff;
}

.about-two__content-text3 .btn-box .thm-btn:hover {
  color: var(--clenq-black)
}

/***
=============================================
Why Choose Two
=============================================
***/
.why-choose-two {
  position: relative;
  display: block;
  padding: 0px 0px 80px;
}

.why-choose-two__top {
  position: relative;
  display: block;
}

.why-choose-two__single {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 30px;
  border-radius: 10px;
  text-align: center;
  padding: 45px 20px 45px;
  z-index: 1;
}

.why-choose-two__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.8) rotateX(0deg);
  transition: all 0.4s linear;
  border: 1px solid #172000;
  border-radius: 10px;
  opacity: 0;
  content: "";
  z-index: -1;
}

.why-choose-two__single:hover:before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.why-choose-two__single .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

.why-choose-two__single .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.why-choose-two__single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--clenq-black);
  border-radius: 50%;
  border: 1px solid var(--clenq-black2);
  margin: 0 auto 21px;
  z-index: 5;
}

.why-choose-two__single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 55px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.why-choose-two__single:hover .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.why-choose-two__single h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 12px;
}

.why-choose-two__single h2 a {
  color: var(--clenq-black2);
}

.why-choose-two__single h2 a:hover {
  color: var(--clenq-primary);
}

.why-choose-two__single p {
  margin: 0;
}

.why-choose-two__bottom {
  position: relative;
  display: block;
}

.why-choose-two__bottom .container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.why-choose-two__bottom-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.why-choose-two__bottom-single-img {
  position: relative;
  display: block;
  padding: 51px 50px 60px;
  overflow: hidden;
  z-index: 1;
}

.why-choose-two__bottom-single-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.why-choose-two__bottom-single-img .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.why-choose-two__bottom-single-img img {
  width: 100%;
}

.why-choose-two__bottom-single-img .content-box {
  position: relative;
  display: block;
  z-index: 3;
}

.why-choose-two__bottom-single-img .content-box h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
}

.why-choose-two__bottom-single-img .content-box .btn-box {
  position: relative;
  display: block;
  margin-top: 27px;
}

.why-choose-two__bottom-single-img .content-box .btn-box .thm-btn {
  background: var(--clenq-primary);
  color: #ffffff;
}

.why-choose-two__bottom-single-img .content-box .btn-box .thm-btn:hover {
  color: var(--clenq-black);
}

.why-choose-two__bottom-single.style2 {
  position: relative;
  display: block;
}

.why-choose-two__bottom-single.style2 .why-choose-two__bottom-single-img {
  padding: 67px 50px 75px;
}

.why-choose-two__bottom-single.style2 .content-box-style2 {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.why-choose-two__bottom-single.style2 .content-box-style2::before {
  position: absolute;
  top: 15px;
  left: 55px;
  bottom: 15px;
  right: 0;
  background: var(--clenq-primary);
  border-radius: 70px;
  content: "";
  z-index: -1;
}

.why-choose-two__bottom-single.style2 .content-box-style2 .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  background: #ffffff;
  border-radius: 50%;
}

.why-choose-two__bottom-single.style2 .content-box-style2 .icon-box::before {
  position: absolute;
  top: 13px;
  left: 13px;
  bottom: 13px;
  right: 13px;
  border: 2px dotted #011222;
  border-radius: 50%;
  content: "";
}

.why-choose-two__bottom-single.style2 .content-box-style2 .icon-box span::before {
  color: var(--clenq-primary);
  font-size: 80px;
}

.why-choose-two__bottom-single.style2 .content-box-style2 .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 30px;
}

.why-choose-two__bottom-single.style2 .content-box-style2 .text-box h2 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

/***
=============================================
Services Two
=============================================
***/
.services-two {
  position: relative;
  display: block;
  padding: 110px 0px 0px;
  z-index: 3;
}

.services-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 85px;
  right: 0;
  background: #dee0e2;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.services-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 35px 55px;
  padding-right: 30px;
}

.services-two__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.services-two__single-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.services-two__single-top::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 40px;
  height: 3px;
  background: #e2e5dc;
  content: "";
}

.services-two__single-top .content-box {
  position: relative;
  display: block;
  margin-top: 7px;
  flex: 1;
}

.services-two__single-top .content-box .top-box {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 3px;
}

.services-two__single-top .content-box .top-box .shape {
  position: relative;
  display: block;
}

.services-two__single-top .content-box .top-box .line {
  position: relative;
  display: block;
  width: 42px;
  height: 3px;
  background: var(--clenq-black2);
  margin-left: 3px;
}

.services-two__single-top .content-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.services-two__single-top .content-box h2 a {
  color: var(--clenq-black2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single-top .content-box h2 a:hover {
  color: var(--clenq-primary);
}

.services-two__single-top .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--clenq-primary);
  border-radius: 50%;
  border: 4px solid #e2e5dc;
}

.services-two__single-top .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__single-top .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.services-two__single-bottom {
  position: relative;
  display: block;
  padding-left: 20px;
}

.services-two__single-bottom::before {
  position: absolute;
  top: -25px;
  left: 0;
  bottom: 0;
  width: 3px;
  background: #e2e5dc;
  content: "";
}

.services-two__single-bottom .text-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.services-two__single-bottom .text-box p {
  margin: 0;
}

.services-two__single-bottom .btn-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.services-two__single-bottom .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--clenq-black2);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--clenq-font-two);
  padding-bottom: 5px;
  z-index: 1;
}

.services-two__single-bottom .btn-box a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: var(--clenq-black2);
  content: "";
  z-index: -1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__single-bottom .btn-box a:hover::before {
  background: var(--clenq-primary);
}

.services-two__single-bottom .btn-box a::after {
  position: absolute;
  left: -20px;
  bottom: 0;
  right: 0;
  height: 3px;
  background: #e2e5dc;
  content: "";
  z-index: -2;
}

.services-two__bottom {
  position: relative;
  display: block;
  margin-top: 50px;
}

.services-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 5px;
  padding: 41px 60px 42px;
  border-bottom: 4px dashed var(--clenq-primary);
}

.services-two__bottom-inner .text-box {
  position: relative;
  display: block;
}

.services-two__bottom-inner .text-box h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 500;
}

.services-two__bottom-inner .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.services-two__bottom-inner .btn-box .thm-btn {
  background: var(--clenq-primary);
  color: #ffffff;
}

.services-two__bottom-inner .btn-box .thm-btn:hover {
  color: var(--clenq-black)
}


/***
=============================================
Process Two
=============================================
***/
.process-one--two {
  position: relative;
  display: block;
  margin-top: -85px;
}

.process-one--two .process-one__inner {
  padding: 195px 0px 80px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.process-one--two-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 62px;
}

.process-one--two-top .sec-title {
  padding-bottom: 0px;
}

.process-one--two-top .text-box {
  position: relative;
  display: block;
  max-width: 485px;
  width: 100%;
}

.process-one--two-top .text-box p {
  color: #ffffff;
  font-size: 18px;
  line-height: 34px;
}

/***
=============================================
Projects Two
=============================================
***/
.projects-one--two {
  position: relative;
  display: block;
  background: #ffffff;
}

.projects-one--two .projects-one__bottom .btn-box a:hover {
  color: var(--clenq-black);
  background: var(--clenq-base)
}

/***
=============================================
Team Two
=============================================
***/
.team-one--two {
  position: relative;
  display: block;
  padding-top: 0px;
}

/***
=============================================
Pricing One
=============================================
***/
.pricing-one {
  position: relative;
  display: block;
  padding: 110px 0px 0px;
  z-index: 1;
}

.pricing-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 50px;
  right: 0;
  background: #f0f0f0;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.pricing-one__single {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #ebebeb;
  margin-bottom: 30px;
  text-align: center;
  padding: 34px 30px 45px;
  overflow: hidden;
  z-index: 1;
}

.pricing-one__single .shape1 {
  position: absolute;
  top: 75px;
  left: 25px;
  z-index: -1;
}

.pricing-one__single .shape2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: -1;
}

.pricing-one__single .shape3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: -1;
}

.pricing-one__single .table-header {
  position: relative;
  display: block;
  border-bottom: 1px solid #eceeef;
  padding-bottom: 17px;
  margin-bottom: 25px;
}

.pricing-one__single .table-header .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #eaeff3;
  border-radius: 50%;
  margin: 0 auto 28px;
  z-index: 1;
}

.pricing-one__single .table-header .icon-box::before {
  position: absolute;
  top: -9px;
  left: -9px;
  bottom: -9px;
  right: -9px;
  border: 1px solid #01050c;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.pricing-one__single .table-header .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 45px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.pricing-one__single:hover .table-header .icon-box span::before {
  transform: scale(0.9);
}

.pricing-one__single .table-header .title-box {
  position: relative;
  display: block;
}

.pricing-one__single .table-header .title-box h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--clenq-font);
  margin-bottom: 5px;
}

.pricing-one__single .table-header .title-box h2 {
  color: var(--clenq-primary);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
}

.pricing-one__single .table-content {
  position: relative;
  display: block;
}

.pricing-one__single .table-content ul {
  position: relative;
  display: block;
}

.pricing-one__single .table-content ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-one__single .table-content ul li .icon-box {
  position: relative;
  display: block;
}

.pricing-one__single .table-content ul li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 20px;
}

.pricing-one__single .table-content ul li .text-box {
  position: relative;
  display: block;
  margin-left: 5px;
}

.pricing-one__single .table-content ul li .text-box p {
  color: rgba(var(--clenq-black-rgb), .8);
}

.pricing-one__single .table-footer {
  position: relative;
  display: block;
}

.pricing-one__single .table-footer .btn-box {
  position: relative;
  display: block;
  margin-top: 35px;
}

.pricing-one__single .table-footer .btn-box .thm-btn {
  background: #e0e7ee;
  line-height: 40px;
  padding: 0px 35px 0px;
  font-size: 14px;
}

.pricing-one__single .table-footer .btn-box .thm-btn:before {
  background: var(--clenq-primary);
}

.pricing-one__bottom {
  position: relative;
  display: block;
  margin-top: 50px;
}

.pricing-one__bottom .text-box {
  position: relative;
  display: block;
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  background: var(--clenq-primary);
  padding: 39px 10px 39px;
  text-align: center;
  border-radius: 5px;
}

.pricing-one__bottom .text-box::before {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 2px dashed #ffffff;
  border-radius: 5px;
  content: "";
}

.pricing-one__bottom .text-box h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
}

/***
=============================================
Blog Two
=============================================
***/
.blog-one--two {
  position: relative;
  display: block;
  padding-bottom: 71px;
}

.blog-one--two .blog-one__single-img .date-box {
  background: #c9e5ff;
}

.blog-one--two .blog-one__single-content-bottom .btn-box a:hover {
  background: var(--clenq-primary);
  color: #ffffff;
}

.blog-one--two .blog-one__single-content-bottom .btn-box a:hover span::before {
  color: #ffffff;
}

/***
=============================================
Brand One
=============================================
***/
.brand-one {
  position: relative;
  display: block;
  padding: 0px 0px 110px;
}

.brand-one .title-box {
  position: relative;
  display: block;
  margin-bottom: 61px;
}

.brand-one .title-box h2 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 600;
}

.brand-one .title-box h2 .k {
  position: relative;
  display: inline-block;
  top: 3px;
  left: -4px;
}

.brand-one .title-box h2 .plus {
  position: relative;
  display: inline-block;
  top: 4px;
  left: -9px;
}

.brand-one .odometer.odometer-auto-theme,
.brand-one .odometer.odometer-theme-default {
  font-family: var(--clenq-font-two);
  line-height: 50px;
}

.brand-one__inner {
  position: relative;
  display: block;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 40px;
}

.brand-one__list {
  position: relative;
  display: flex;
  align-items: center;
}

.brand-one__list li {
  position: relative;
  display: block;
  padding-right: 43px;
}

.brand-one__list li:before {
  position: absolute;
  top: 15px;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #e4e4e4;
  content: "";
}

.brand-one__list li:last-child::before {
  display: none;
}

.brand-one__list li .img-box {
  position: relative;
  display: block;
}

.brand-one__list li .img-box a {
  position: relative;
  display: block;
}

.brand-one__list li .img-box a img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.02);
}

.brand-one__list li .img-box a:hover img {
  transform: scale(1);
}


/***
=============================================
Cta Three
=============================================
***/
.cta-three {
  position: relative;
  display: block;
  margin-bottom: -65px;
  z-index: 5;
}

.cta-three .container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.cta-three__inner {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--clenq-primary);
  padding: 31px 85px 32px;
  padding-right: 35px;
  border-radius: 10px;
}

.cta-three__left {
  position: relative;
  display: block;
}

.cta-three__left .contact-info {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-three__left .contact-info li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 130px;
}

.cta-three__left .contact-info li:last-child {
  margin-right: 0;
}

.cta-three__left .contact-info li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 60px;
  background: #194b7c;
  border-radius: 5px;
  border: 3px solid #ffffff;
}

.cta-three__left .contact-info li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
}

.cta-three__left .contact-info li .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.cta-three__left .contact-info li .content-box p {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

.cta-three__left .contact-info li .content-box h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.cta-three__left .contact-info li .content-box h3 a {
  color: #ffffff;
}

.cta-three__left .contact-info li .content-box h3 a:hover {
  color: var(--clenq-black);
}


.cta-three__right {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 60px;
  margin-left: 90px;
}

.cta-three__right::before {
  position: absolute;
  top: -11px;
  left: 0;
  bottom: -12px;
  width: 1px;
  background: #4da9ff;
  content: "";
}

.cta-three__right .text-box {
  position: relative;
  display: block;
}

.cta-three__right .text-box h2 {
  color: #ffffff;
  font-size: 28px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}

.cta-three__right .text-box p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-three__right .btn-box {
  position: relative;
  display: block;
  margin-left: 65px;
}

.cta-three__right .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--clenq-black2);
  font-size: 15px;
  line-height: 55px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 27px;
  border: 2px solid var(--clenq-black2);
  padding: 0px 35px 0px;
  background: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-three__right .btn-box a:hover {
  background: var(--clenq-base);
  color: var(--clenq-black2);
}

/***
=============================================
Footer Two
=============================================
***/
.footer-one--two {
  position: relative;
  display: block;
}

.footer-one--two .footer-one__top {
  padding: 175px 0px 50px;
}

.footer-one--two .footer-one__newsletter-btn .thm-btn:hover {
  color: var(--clenq-black);
}



/***
=============================================
Cta Four
=============================================
***/
.cta-four {
  position: relative;
  display: block;
  margin-top: -65px;
  z-index: 2;
}

.cta-four__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 26px 40px 26px;
  padding-right: 100px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.cta-four__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #c0c1bf;
  background-blend-mode: overlay;
  width: 385px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  z-index: -1;
}

.cta-four__left {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-four__left .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--clenq-primary);
  border-radius: 50%;
  border: 1px solid var(--clenq-black);
}

.cta-four__left .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 60px;
}

.cta-four__left .text-box {
  position: relative;
  display: block;
  margin-left: 45px;
  flex: 1;
}

.cta-four__left .text-box h2 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 400;
}

.cta-four__right {
  position: relative;
  display: block;
}

.cta-four__right .btn-box {
  position: relative;
  display: block;
}

/***
=============================================
Cta Five
=============================================
***/
.cta-three--five {
  position: relative;
  display: block;
}

.cta-three--five .cta-three__left .contact-info li .icon-box {
  background: var(--clenq-black);
}

.cta-three--five .cta-three__left .contact-info li .icon-box span::before {
  color: var(--clenq-primary);
}

.cta-three--five .cta-three__left .contact-info li .content-box p {
  color: rgba(var(--clenq-black-rgb), .8);
}

.cta-three--five .cta-three__left .contact-info li .content-box h3 a {
  color: var(--clenq-black);
}

.cta-three--five .cta-three__right::before {
  background: #405115;
}

.cta-three--five .cta-three__right .text-box h2 {
  color: var(--clenq-black);
}

.cta-three--five .cta-three__right .text-box p {
  color: rgba(var(--clenq-black-rgb), .8);
}

.cta-three--five .cta-three__right .btn-box a {
  background: transparent;
}

.cta-three--five .cta-three__right .btn-box a:hover {
  background: var(--clenq-black);
  color: #ffffff;
}

/***
=============================================
Footer Three
=============================================
***/
.footer-one--two.style3 {
  position: relative;
  display: block;
  z-index: 1;
}

.footer-one--two.style3 .shape1 {
  position: absolute;
  left: 195px;
  bottom: 35px;
  z-index: -1;
}

.footer-one--two.style3 .shape7 {
  position: absolute;
  right: 250px;
  bottom: 40px;
  z-index: -1;
}


.footer-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.footer-one--two.style3 .footer-one__newsletter-btn .thm-btn {
  color: var(--clenq-black);
}

.footer-one--two.style3 .footer-one__newsletter-btn .thm-btn:hover {
  color: #ffffff;
}

/***
=============================================
Blog Three
=============================================
***/
.blog-one--two.style3 {
  position: relative;
  display: block;
  padding-bottom: 80px;
}

.blog-one--two.style3 .blog-one__single-img .inner .text-box {
  color: var(--clenq-black);
}

.blog-one--two.style3 .blog-one__single-img .date-box {
  background: #ecf2df;
}

.blog-one--two.style3 .blog-one__single-content-bottom {
  background: #e7e8e3;
}

.blog-one--two.style3 .blog-one__single-content-bottom .btn-box a {
  color: var(--clenq-black);
  background: #ecf2df;
  text-transform: capitalize;
  font-size: 16px;
}

.blog-one--two.style3 .blog-one__single-content-bottom .btn-box a:hover {
  background: var(--clenq-primary);
}

.blog-one--two.style3 .blog-one__single-content-bottom .btn-box a span::before {
  color: var(--clenq-black);
}

.blog-one--two.style3 .blog-one__single-content-bottom .share-post p a:hover {
  color: var(--clenq-black);
}

.blog-one--two.style3 .blog-one__single-content-bottom .share-post p a:hover span::before {
  color: var(--clenq-black);
}

.blog-one--two.style3 .blog-one__single-content h2 a {
  color: var(--clenq-black2);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  transition: all 500ms ease;
}

.blog-one--two.style3 .blog-one__single-content h2 a:hover {
  background-size: 100% 2px;
}

.blog-one--two.style3 .blog-one__single-content .meta-box li .text p a:hover {
  color: var(--clenq-black);
}

/***
=============================================
Brand Two
=============================================
***/
.brand-one--two {
  position: relative;
  display: block;
  padding: 90px 0px 0px;
}

/***
=============================================
 About Three
=============================================
***/
.about-three {
  position: relative;
  display: block;
  padding: 110px 0px 110px;
  overflow: hidden;
  z-index: 1;
}


.about-three .shape2 {
  position: absolute;
  left: 0;
  bottom: -18px;
  opacity: 0.3;
  z-index: -1;
}

.about-three .shape3 {
  position: absolute;
  top: 20px;
  right: 0;
  opacity: 0.3;
  z-index: -1;
}

.about-three__img {
  position: relative;
  display: block;
}

.about-three__img::before {
  position: absolute;
  top: 35px;
  right: 8px;
  width: 22px;
  height: 65px;
  background: var(--clenq-black);
  content: "";
}

.about-three__img::after {
  position: absolute;
  top: 115px;
  right: 8px;
  width: 22px;
  height: 155px;
  background: var(--clenq-primary);
  content: "";
}

.about-three__img1 {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 45px;
}

.about-three__img1 img {
  width: 100%;
}

.about-three__img2 {
  position: absolute;
  right: -10px;
  bottom: -95px;
}

.about-three__img2 .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  border: 10px solid #ffffff;
}

.about-three__img2 .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.about-three__img2:hover .inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-three__img2 img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.about-three__img2:hover img {
  transform: scale(1);
}

.about-three__img-content {
  position: absolute;
  left: -40px;
  bottom: -65px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.about-three__img-content .rating-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 14px solid #aaf81e;
  z-index: 2;
}

.about-three__img-content .rating-box::before {
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.about-three__img-content .rating-box::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #c4c0bf;
  border-radius: 50%;
  content: "";
  z-index: -2;
}

.about-three__img-content .rating-box .icon-box {
  position: relative;
  display: block;
}

.about-three__img-content .rating-box .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffa210;
  font-size: 30px;
}

.about-three__img-content .rating-box .text-box {
  position: relative;
  display: block;
  margin-top: 2px;
}

.about-three__img-content .rating-box .text-box h2 {
  color: #407d69;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.about-three__img-content .rating-box .content-box {
  position: relative;
  display: block;
}

.about-three__img-content .content-box .content-box-top {
  position: relative;
  display: block;
  padding-left: 19px;
  z-index: 1;
}

.about-three__img-content .content-box .content-box-top::before {
  position: absolute;
  top: 0;
  left: -20px;
  bottom: 0;
  right: -40px;
  background: #aaf81e;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.about-three__img-content .content-box .content-box-top p {
  color: var(--clenq-black);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--clenq-font-two);
}

.about-three__img-content .content-box .content-box-bottom {
  position: relative;
  display: block;
  padding: 16px 0px 16px;
  padding-left: 35px;
  z-index: 1;
}

.about-three__img-content .content-box .content-box-bottom::before {
  position: absolute;
  top: 0;
  left: -30px;
  bottom: 0;
  right: -90px;
  border-top: 65px solid var(--clenq-black);
  border-right: 50px solid transparent;
  content: "";
  z-index: -1;
}

.about-three__img-content .content-box .content-box-bottom:after {
  position: absolute;
  top: -4px;
  right: -85px;
  bottom: -12px;
  width: 10px;
  background: #ffffff;
  content: "";
  transform: rotate(37deg);
}

.about-three__img-content .content-box .content-box-bottom p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

.about-three__content {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-left: 35px;
}

.about-three__content-text1 {
  position: relative;
  display: block;
}

.about-three__content-text1 .text-box {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.about-three__content-text1 .text-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.about-three__content-text1 ul {
  position: relative;
  display: block;
}

.about-three__content-text1 ul li {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--clenq-black);
  border-radius: 10px;
  padding: 30px 15px 30px;
  z-index: 1;
  margin-bottom: 20px;
}

.about-three__content-text1 ul li:last-child {
  margin-bottom: 0;
}

.about-three__content-text1 ul li .shape1 {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: -1;
}

.about-three__content-text1 ul li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--clenq-black);
  border: 10px solid #e2e9d0;
}

.about-three__content-text1 ul li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-primary);
  font-size: 50px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.about-three__content-text1 ul li:hover .icon-box span::before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.about-three__content-text1 ul li .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.about-three__content-text1 ul li .content-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.about-three__content-text1 ul li .content-box p {
  margin: 0;
}

.about-three__content-text2 {
  position: relative;
  display: block;
  margin-top: 39px;
}

.about-three__content-text2 ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-three__content-text2 ul li {
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.about-three__content-text2 ul li:last-child {
  margin-bottom: 0;
}

.about-three__content-text2 ul li p {
  color: var(--clenq-black);
}

.about-three__content-text2 ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 20px;
  padding-right: 9px;
  top: 3px;
}

/***
=============================================
 Why Choose Three
=============================================
***/
.why-choose-two.style3 {
  position: relative;
  display: block;
  padding: 110px 0px 80px;
  z-index: 1;
}

.why-choose-two.style3 .shape3 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.2;
  z-index: 1;
}

.why-choose-two.style3 .shape4 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  z-index: 1;
}

.why-choose-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #d0d3c7;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.why-choose-two.style3 .why-choose-two__single .icon-box {
  background: #aaf81e;
}

.why-choose-two.style3 .why-choose-two__single .icon-box span::before {
  color: var(--clenq-black);
}

.why-choose-two.style3 .why-choose-two__bottom-single-img .content-box .btn-box .thm-btn {
  color: var(--clenq-black);
}

.why-choose-two.style3 .why-choose-two__bottom-single-img .content-box .btn-box .thm-btn:hover {
  color: #ffffff;
}

.why-choose-two.style3 .why-choose-two__single h2 {
  margin-bottom: 11px;
}

.why-choose-two.style3 .why-choose-two__single h2 a:hover {
  color: var(--clenq-black);
}

/***
=============================================
Process Three
=============================================
***/
.process-one--three {
  position: relative;
  display: block;
  padding: 110px 0px 80px;
}

.process-one--three .auto-container {
  position: static;
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.process-one--three__top {
  position: relative;
  display: block;
  padding-bottom: 62px;
}

.process-one--three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-one--three__top-inner .sec-title {
  padding-bottom: 0px;
}

.process-one--three .sec-title__title {
  color: var(--clenq-black);
}

.process-one--three .sec-title__tagline p {
  color: var(--clenq-black);
}

.process-one--three .process-one__inner {
  padding: 0px 0px 0px;
}

.process-one--three .process-one__single {
  max-width: 100%;
  width: 100%;
  background: #f2f4ec;
  border-radius: 10px;
  overflow: hidden;
  padding: 50px 0px 30px;
  z-index: 1;
}

.process-one--three .process-one__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom: 362px solid #eceee6;
  border-left: 362px solid transparent;
  content: "";
  z-index: -1;
}

.process-one--three .process-one__single .shape3 {
  position: absolute;
  top: 40px;
  left: 30px;
  z-index: -1;
}

.process-one--three .process-one__single-content::before {
  display: none;
}

.process-one--three .process-one__single-content h2 a {
  color: var(--clenq-black);
}

.process-one--three .process-one__single-img .count-box {
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
  width: 75px;
  height: 75px;
  background: var(--clenq-primary);
}

.process-one--three .process-one__single-content {
  padding: 26px 0px 22px;
}

/***
=============================================
Services Three
=============================================
***/
.services-two.style3 {
  position: relative;
  display: block;
  padding: 110px 0px 80px;
  z-index: 1;
}

.services-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #d8ddcd;
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.services-two.style3 .services-two__single-top .icon-box {
  background: var(--clenq-black);
}

.services-two.style3 .services-two__single-top .icon-box span::before {
  color: var(--clenq-primary);
}

/***
=============================================
Testimonial Two
=============================================
***/
.testimonial-one.style2 {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
}

.testimonial-one.style2 .testimonial-one__single {
  padding: 0px 0px 0px;
  padding-right: 0px;
  border-top-left-radius: 0px;
}

.testimonial-one.style2 .testimonial-one__single-top-left .img-holder {
  position: relative;
  display: block;
  width: 115px;
}

.testimonial-one.style2 .testimonial-one__single-top-left .img-holder::before {
  position: absolute;
  top: -25px;
  left: -25px;
  bottom: -25px;
  right: -25px;
  background: var(--clenq-primary);
  content: "";
  z-index: -1;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
}

.testimonial-one.style2 .testimonial-one__single-top-left .img-box {
  border: 4px solid #ffffff;
}

.testimonial-one.style2 .testimonial-one__single-top-left .content-box {
  margin-left: 45px;
  margin-top: 18px;
}

.testimonial-one.style2 .testimonial-one__single-top-right .icon-box {
  background: #edf0e8;
  margin-top: -3px;
}

.testimonial-one.style2 .testimonial-one__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
  padding: 25px 25px 25px;
  padding-right: 50px;
}

.testimonial-one.style2 .testimonial-one__single-bottom {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  background: #edf0e8;
  padding: 30px 50px 60px;
  z-index: 1;
}

.testimonial-one.style2 .testimonial-one__single-bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 30px;
  right: 0;
  background: #ffffff;
  border-radius: 78px;
  border-top-right-radius: 0px;
  content: "";
  z-index: -1;
}

.testimonial-one.style2 .testimonial-one__single-bottom .text-box {
  position: relative;
  display: block;
  max-width: 425px;
  width: 100%;
}

/***
=============================================
Projects Three
=============================================
***/
.projects-one--three {
  position: relative;
  display: block;
  background: #f3f3f3;
  z-index: 1;
}

.projects-one--three .shape1 {
  position: absolute;
  left: 190px;
  bottom: 30px;
  opacity: 0.2;
  z-index: -1;
}

.projects-one--three .shape2 {
  position: absolute;
  right: 230px;
  bottom: 25px;
  opacity: 0.2;
  z-index: -1;
}

.projects-one--three .container {
  position: static;
  max-width: 1800px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.projects-one--three .projects-one__single-img .inner .overlay-content {
  left: 0px;
  bottom: 30px;
  right: 75px;
  background: #faf8ec;
  padding: 20px 35px 19px;
  padding-right: 15px;
  border: 1px solid #ffffff;
  border-left: none;
  border-radius: 3px;
}

.projects-one--three .projects-one__single-img .inner .overlay-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 55px;
  background-color: var(--clenq-black);
  border-radius: 3px;
  padding: 0px 0px 0px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-one--three .projects-one__single-img .inner .overlay-content .btn-box a:hover {
  background: var(--clenq-primary);
}

.projects-one--three .projects-one__single-img .inner .overlay-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.projects-one--three .projects-one__single-img .inner .overlay-content .btn-box a:hover span::before {
  color: var(--clenq-black);
}

.projects-one--three .projects-one__single-img .inner .overlay-content::before {
  position: absolute;
  left: 0;
  bottom: 0;
  top: -27px;
  width: 160px;
  content: "";
  z-index: -1;
  border-top: 121px solid var(--clenq-primary);
  border-right: 160px solid transparent;
  background: transparent;
}

.projects-one--three .projects-one__single-img .inner .overlay-content::after {
  border-right: 35px solid #a5cb49;
}

.projects-one--three .projects-one__single-img .inner .overlay-content .content-box h2 a:hover {
  color: var(--clenq-black);
}

.projects-one--three .projects-one__bottom .btn-box a:hover {
  background: var(--clenq-primary);
  color: var(--clenq-black);
}


/***
=============================================
Video One
=============================================
***/
.video-one {
  position: relative;
  display: block;
  padding: 110px 0px 110px;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.video-one .shape1 {
  position: absolute;
  top: 375px;
  left: -20px;
  z-index: 1;
}

.video-one .shape2 {
  position: absolute;
  top: 273px;
  right: 300px;
  z-index: 1;
}

.video-one .shape3 {
  position: absolute;
  bottom: 200px;
  right: -20px;
  z-index: 1;
}

.video-one__inner {
  position: relative;
  display: block;
}

.video-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 990px;
  width: 100%;
}

.video-one__top-left {
  position: relative;
  display: block;
}

.video-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
}

.video-one__icon a {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  text-align: center;
  color: var(--clenq-black);
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-one__icon a:hover {
  color: var(--clenq-black);
  background: var(--clenq-primary);
}

.video-one__icon a::before,
.video-one__icon a::after {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.video-one__icon a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-one__top-right {
  position: relative;
  display: block;
}

.video-one__top-right .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--clenq-primary);
  border: 1px solid var(--clenq-black);
  border-radius: 50%;
  margin-bottom: 25px;
}

.video-one__top-right .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 55px;
}

.video-one__top-right h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 400;
}

.video-one__bottom {
  position: relative;
  display: block;
  background: var(--clenq-primary);
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
  text-align: center;
  padding: 36px 0px 36px;
  margin-top: 122px;
}

.video-one__bottom::before {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 2px dashed var(--clenq-black);
  border-radius: 5px;
  content: "";
}

.video-one__bottom h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}

/***
=============================================
About One About 
=============================================
***/
.about-one--about {
  position: relative;
  display: block;
  overflow: hidden;
}

/***
=============================================
Why Choose Two About 
=============================================
***/
.why-choose-two--about {
  position: relative;
  display: block;
}

.why-choose-two--about .why-choose-two__single .icon-box {
  background: var(--clenq-base);
}

.why-choose-two--about .why-choose-two__single .icon-box span::before {
  color: var(--clenq-black);
}

/***
=============================================
Team One About 
=============================================
***/
.team-one--about {
  position: relative;
  display: block;
  padding: 0px 0px 80px;
}

/***
=============================================
Pricing One About 
=============================================
***/
.pricing-one--about {
  position: relative;
  display: block;
}

.pricing-one--about .pricing-one__single .table-footer .btn-box .thm-btn:before {
  background: var(--clenq-base);
}

.pricing-one--about .pricing-one__single .table-footer .btn-box .thm-btn:hover {
  color: var(--clenq-black);
}

/***
=============================================
Process One About 
=============================================
***/
.process-one--about {
  position: relative;
  display: block;
  padding-top: 110px;
}

/***
=============================================
Team One Team
=============================================
***/
.team-one--team {
  position: relative;
  display: block;
  padding: 110px 0px 0px;
}

/***
=============================================
Why Choose One Team
=============================================
***/
.why-choose-one--team {
  position: relative;
  display: block;
  padding: 80px 0px 0px;
}

/***
=============================================
Cta One Team
=============================================
***/
.cta-one--team {
  position: relative;
  display: block;
  padding-bottom: 102px;
}

/***
=====================================================
Team Details
=====================================================
***/
.team-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 0px;
}

.team-details__img {
  position: relative;
  display: block;
  max-width: 465px;
  width: 100%;
  border: 1px solid var(--clenq-black2);
  border-radius: 5px;
  padding: 15px 15px 15px;
}

.team-details__img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.team-details__img .inner img {
  width: 100%;
}

.team-details__content {
  position: relative;
  display: block;
  margin-left: 45px;
  margin-top: -9px;
}

.team-details__content .title-box {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.team-details__content .title-box h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
}

.team-details__content .title-box p {
  margin: 0;
}

.team-details__content .text-box {
  position: relative;
  display: block;
}

.team-details__content .text-box p {
  margin: 0;
}

.team-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 52px;
}

.team-details__content-text1-single {
  position: relative;
  display: flex;
  align-items: center;
}

.team-details__content-text1-single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: var(--clenq-base);
  border-radius: 50%;
  border: 1px solid var(--clenq-black);
}

.team-details__content-text1-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 20px;
}

.team-details__content-text1-single .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.team-details__content-text1-single .content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 9px;
}

.team-details__content-text1-single .content-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.team-details__content-text1-single .content-box p a {
  color: rgba(21, 23, 26, 0.8);
}

.team-details__content-text1-single .content-box p a:hover {
  color: var(--clenq-primary);
}

.team-details__content-social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 49px;
}

.team-details__content-social-links .title {
  position: relative;
  display: block;
}

.team-details__content-social-links .title p {
  color: var(--clenq-black2);
  font-weight: 500;
}

.team-details__content-social-links ul {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: 15px;
}

.team-details__content-social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.team-details__content-social-links ul li:last-child {
  margin-right: 0;
}

.team-details__content-social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #eceef0;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__content-social-links ul li a:hover {
  background: var(--clenq-primary);
}

.team-details__content-social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: #433838;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details__content-social-links ul li a:hover span::before {
  color: #ffffff;
}

.team-details__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clenq-base);
  max-width: 585px;
  width: 100%;
  border-radius: 3px;
  padding: 11px 20px 12px;
  margin-top: 60px;
}

.team-details__content-bottom .left-text {
  position: relative;
  display: block;
}

.team-details__content-bottom .left-text h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.team-details__content-bottom .right-text {
  position: relative;
  display: block;
}

.team-details__content-bottom .right-text h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.team-details__content-bottom .right-text h4 a {
  color: #194b7c;
}

.team-details__content-bottom .right-text h4 span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-primary);
  font-size: 25px;
  top: 2px;
}


/***
=====================================================
Contact One
=====================================================
***/
.contact-one {
  position: relative;
  display: block;
  padding: 110px 0px 110px;
  z-index: 1;
}

.contact-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.contact-one .title-box {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 41px;
  margin-top: -10px;
}

.contact-one .title-box h2 {
  color: #131216;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-one__inner {
  position: relative;
  display: block;
  padding: 80px 0px 80px;
}

.contact-one__inner-box {
  position: relative;
  display: block;
  max-width: 875px;
  width: 100%;
  margin: 0 auto 0px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-one form input[type="text"],
.contact-one form input[type="email"] {
  color: rgba(21, 23, 26, 0.70);
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  padding: 0 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-one form textarea {
  color: rgba(21, 23, 26, 0.70);
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  height: 180px;
  border: 1px solid #e4e4e4;
  background: #ffffff;
  padding: 20px 20px 30px;
  margin-bottom: 20px;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 5px;
}

.contact-one form input[type="text"]:focus {
  color: rgba(21, 23, 26, 1.0);
  border-color: var(--clenq-primary);
}

.contact-one form input[type="email"]:focus {
  color: rgba(21, 23, 26, 1.0);
  border-color: var(--clenq-primary);
}

.contact-one form textarea:focus {
  color: rgba(21, 23, 26, 1.0);
  border-color: var(--clenq-primary);
}


.contact-one form input[type="text"]::-webkit-input-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form input[type="text"]:-moz-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form input[type="text"]::-moz-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form input[type="text"]:-ms-input-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form input[type="email"]::-webkit-input-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form input[type="email"]:-moz-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form input[type="email"]::-moz-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form input[type="email"]:-ms-input-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form textarea::-webkit-input-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form textarea:-moz-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form textarea::-moz-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one form textarea:-ms-input-placeholder {
  color: rgba(21, 23, 26, 0.70);
}

.contact-one .contact-page__btn {
  position: relative;
  display: block;
}

.contact-one .contact-page__btn button {
  position: relative;
  display: block;
  outline: none;
  border: none;
  margin: 0 auto;
}

/***
=====================================================
Pricing One Pricing
=====================================================
***/
.pricing-one--pricing {
  position: relative;
  display: block;
  padding: 110px 0px 80px;
}

.pricing-one--pricing .pricing-one__bg {
  bottom: 0px;
}

.pricing-one--pricing .pricing-one__single .table-footer .btn-box .thm-btn:before {
  background: var(--clenq-base);
}

.pricing-one--pricing .pricing-one__single .table-footer .btn-box .thm-btn:hover {
  color: var(--clenq-black);
}

/***
=====================================================
Brand One Pricing
=====================================================
***/
.brand-one--pricing {
  position: relative;
  display: block;
  padding-top: 101px;
}

/***
=====================================================
Services One Services
=====================================================
***/
.services-one--services {
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.services-one--services .services-one__single {
  box-shadow: 0px 0px 30px 0px rgba(224, 224, 224, 0.72);
}

/***
=============================================
Services Details
=============================================
***/
.services-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.services-details__content {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -13px;
}


.services-details__content-text1 {
  position: relative;
  display: block;
}

.services-details__content-text1 h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 19px;
}

.services-details__content-text1 .text1 {
  margin: 0;
  margin-bottom: 20px;
}

.services-details__content-text1 .text2 {
  margin: 0;
  margin-bottom: 32px;
}

.services-details__content-text1 h3 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 21px;
  font-family: var(--clenq-font);
}

.services-details__content-text1 .text3 {
  margin: 0;
}

.services-details__content-img1 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 45px;
  margin-bottom: 40px;
}

.services-details__content-img1 img {
  width: 100%;
}

.services-details__content-text2 {
  position: relative;
  display: block;
}

.services-details__content-text2-list {
  position: relative;
  display: block;
  margin-top: 60px;
}

.services-details__content-text2-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.services-details__content-text2-list li:last-child {
  margin-bottom: 0;
}

.services-details__content-text2-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 3px;
  background: var(--clenq-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__content-text2-list li:hover .icon-box {
  background: var(--clenq-primary);
}

.services-details__content-text2-list li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 65px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__content-text2-list li:hover .icon-box span::before {
  color: #ffffff;
}

.services-details__content-text2-list li .content-box {
  position: relative;
  display: block;
  margin-left: 40px;
  flex: 1;
}

.services-details__content-text2-list li .content-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.services-details__content-text2-list li .content-box p {
  margin: 0;
}

.services-details__content-text3 {
  position: relative;
  display: flex;
  align-items: center;
  background: #edf6ff;
  border-radius: 3px;
  padding: 51px 40px 50px;
  margin-top: 70px;
}

.services-details__content-text3 .content-box {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
  flex: 1;
}

.services-details__content-text3 .content-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 19px;
}

.services-details__content-text3 .content-box p {
  color: var(--clenq-black);
}

.services-details__content-text3 .content-box ul {
  position: relative;
  display: block;
  margin-top: 40px;
}

.services-details__content-text3 .content-box ul li {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.services-details__content-text3 .content-box ul li:last-child {
  margin-bottom: 0;
}

.services-details__content-text3 .content-box ul li p {
  margin: 0;
}

.services-details__content-text3 .content-box ul li p span::before {
  position: relative;
  display: inline-block;
  color: #131314;
  font-size: 17px;
  font-weight: 700;
  top: 2px;
}

.services-details__content-text3 .img-box {
  position: relative;
  display: block;
  margin-left: 50px;
}

.services-details__content-text3 .img-box img {
  width: 100%;
}

.services-details__faq {
  position: relative;
  display: block;
  margin-top: 36px;
}

.services-details__faq .title-box {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.services-details__faq .title-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.services-details__faq-inner {
  position: relative;
  display: block;
  background: #f8f8f2;
  padding: 45px 20px 55px;
}

.services-details__faq .accrodion {
  position: relative;
  display: block;
  border-radius: 0;
}

.services-details__faq .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 20px 16px 30px;
  background-color: #ffffff;
  border: 1px solid #f7f7f7;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-details__faq .accrodion-title h4 {
  position: relative;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--clenq-black);
  font-family: var(--clenq-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-details__faq .accrodion+.accrodion {
  margin-top: 10px;
}

.services-details__faq .accrodion.active .accrodion-title {
  background-color: #ffffff;
}

.services-details__faq .accrodion.active .accrodion-title h4 {
  color: var(--clenq-black);
}

.services-details__faq .accrodion-title h4::before {
  content: "\e928";
  font-family: 'icomoon' !important;
  font-weight: normal;
  font-size: 15px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  right: 0px;
  width: 30px;
  height: 30px;
  background: #d3d3d2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.services-details__faq .accrodion.active .accrodion-title h4::before {
  content: "\e922";
  color: var(--clenq-black);
  background: var(--clenq-base);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-details__faq .accrodion-content {
  position: relative;
  padding: 21px 25px 10px;
  padding-right: 30px;
  background: transparent;
  border-top: 0;
}

.services-details__faq .accrodion-content p {
  color: rgba(var(--clenq-black-rgb), .8);
  margin: 0;
}


/***
=============================================
Sidebar
=============================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single {
  position: relative;
  display: block;
}

.sidebar__single+.sidebar__single {
  margin-top: 40px;
}

.sidebar__single .title-box {
  position: relative;
  display: inline-block;
  padding-bottom: 21px;
}

.sidebar__single .title-box h2 {
  color: var(--clenq-black);
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.sidebar__single .title-box h2 .shape {
  position: relative;
  display: inline-block;
  top: -2px;
}

.sidebar__services {
  position: relative;
  display: block;
  background: var(--clenq-primary);
  border-radius: 10px;
  border: 1px solid #080501;
  padding: 31px 40px 40px;
  z-index: 1;
}

.sidebar__single.sidebar__services .title-box h2 {
  color: #ffffff;
}

.sidebar__services-box {
  position: relative;
  display: block;
}

.sidebar__services-box-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar__services-box-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sidebar__services-box-list li:last-child {
  margin-bottom: 0;
}

.sidebar__services-box-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 0px solid #f6f3ea;
  color: var(--clenq-black);
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px 7px;
  padding-right: 15px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.sidebar__services-box-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--clenq-base);
  border-radius: 5px;
  opacity: 0;
  content: "";
  z-index: -1;
}

.sidebar__services-box-list li a:hover::before,
.sidebar__services-box-list li a.active::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__services-box-list li a span::before {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  color: #000000;
  font-size: 11px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.sidebar__services-box-list li a:hover span::before,
.sidebar__services-box-list li a.active span::before {
  background: #ffffff;
}

.sidebar__services-box-list li a:hover,
.sidebar__services-box-list li a.active {
  color: #080501;
}


.sidebar__contact {
  position: relative;
  display: block;
  background: #edf6ff;
  border: 1px solid #080501;
  padding: 40px 40px 40px;
  border-radius: 10px;
  z-index: 1;
}

.sidebar__contact-box {
  position: relative;
  display: block;
}

.sidebar__contact-box-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  z-index: 1;
}

.sidebar__contact-box-img .gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.sidebar__contact-box-img img {
  width: 100%;
}

.sidebar__contact-box-img .overlay-content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0px 10px 40px;
  z-index: 2;
}

.sidebar__contact-box-img .overlay-content h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
}

.sidebar__contact-box-img .overlay-content .number-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 3px;
  max-width: 215px;
  width: 100%;
  margin: 41px auto 0px;
  padding: 7px 20px 7px;
}

.sidebar__contact-box-img .overlay-content .number-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--clenq-base);
  border-radius: 50%;
  border: 1px solid #2a2a2a;
}

.sidebar__contact-box-img .overlay-content .number-box .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 15px;
}

.sidebar__contact-box-img .overlay-content .number-box .text-box {
  position: relative;
  display: block;
  margin-left: 8px;
}

.sidebar__contact-box-img .overlay-content .number-box .text-box a {
  color: #131216;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--clenq-font-two);
}

.sidebar__contact-box-img .overlay-content .number-box .text-box a:hover {
  color: var(--clenq-primary);
}


.sidebar__search {
  position: relative;
  display: block;
  background: #eff6fc;
  border-radius: 10px;
  padding: 35px 40px 35px;
  z-index: 1;
}

.sidebar__search-form {
  position: relative;
  display: block;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: 1px solid #c8c8ca;
  outline: none;
  background-color: #ffffff;
  color: var(--clenq-black);
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 5px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--clenq-black);
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--clenq-black);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--clenq-black);
}

.sidebar__search-form ::placeholder {
  color: var(--clenq-black);
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--clenq-black);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--clenq-black);
}

.sidebar__search-form button[type="submit"] {
  background-color: #ffffff;
  color: var(--clenq-black);
  font-size: 20px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 60px;
  outline: none;
  border: 1px solid #c8c8ca;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
  background-color: var(--clenq-base);
}


.sidebar__catageries {
  position: relative;
  display: block;
  background: #eff6fc;
  border-radius: 10px;
  border: 1px solid #080501;
  padding: 31px 40px 40px;
  z-index: 1;
}

.sidebar__catageries-box {
  position: relative;
  display: block;
}

.sidebar__catageries-box-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar__catageries-box-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sidebar__catageries-box-list li:last-child {
  margin-bottom: 0;
}

.sidebar__catageries-box-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 0px solid #f6f3ea;
  color: var(--clenq-black);
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px 7px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.sidebar__catageries-box-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  transition: all 0.4s linear;
  background: var(--clenq-base);
  border-radius: 5px;
  opacity: 0;
  content: "";
  z-index: -1;
}

.sidebar__catageries-box-list li a:hover::before,
.sidebar__catageries-box-list li a.active::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__catageries-box-list li a:hover,
.sidebar__catageries-box-list li a.active {
  color: #080501;
}

.sidebar__catageries-box-list li a .number {
  position: relative;
  display: block;
  color: #080501;
  transform: scale(0.7);
  opacity: 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.sidebar__catageries-box-list li a:hover .number,
.sidebar__catageries-box-list li a.active .number {
  transform: scale(1.0);
  opacity: 1;
}

.sidebar__post {
  position: relative;
  display: block;
  background: #eff6fc;
  border-radius: 10px;
  border: 1px solid #080501;
  padding: 31px 40px 36px;
  z-index: 1;
}

.sidebar__post-box {
  position: relative;
  display: block;
}

.sidebar__post-box-list {
  position: relative;
  display: block;
}

.sidebar__post-box-list li {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.sidebar__post-box-list li:last-child {
  margin-bottom: 0;
}

.sidebar__post-box-list li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background: #000000;
}

.sidebar__post-box-list li .img-box img {
  width: 100%;
  transition: all 500ms ease;
}

.sidebar__post-box-list li:hover .img-box img {
  opacity: 0.5;
  transform: scaleX(1.05);
}

.sidebar__post-box-list li .text-box {
  position: relative;
  display: block;
  margin-top: 12px;
}

.sidebar__post-box-list li .text-box h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.sidebar__post-box-list li .text-box h3 a {
  color: #080501;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.sidebar__post-box-list li .text-box h3 a:hover {
  background-size: 100% 1px;
}

.sidebar__tag {
  position: relative;
  display: block;
  background: #eff6fc;
  border-radius: 10px;
  border: 1px solid #080501;
  padding: 31px 40px 40px;
  z-index: 1;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-top: -10px;
}

.sidebar__tags-list a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #080501;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0px 14px 0px;
  border: 0px solid #cfcfd1;
  background: #e4e4dd;
  margin-left: 5px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__tags-list a:hover {
  background: var(--clenq-base);
}

/***
=============================================
Projects One Projects
=============================================
***/
.projects-one--projects {
  position: relative;
  display: block;
  padding: 110px 0px 71px;
}

/***
=============================================
Projects Four
=============================================
***/
.projects-one--three.style4 {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 71px;
}

.projects-one--three.style4 .container {
  max-width: 1200px;
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content .content-box h2 a {
  color: var(--clenq-black2);
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content .content-box h2 a:hover {
  color: var(--clenq-primary);
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content::before {
  border-top: 121px solid var(--clenq-base);
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content::after {
  border-right: 35px solid #e6db08;
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content .btn-box a {
  background-color: var(--clenq-black2);
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content .btn-box a:hover {
  background: var(--clenq-primary);
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content .btn-box a:hover span::before {
  color: #ffffff;
}

.projects-one--three.style4 .projects-one__single-img .inner .overlay-content {
  right: 30px;
}

/***
=============================================
Project Details
=============================================
***/
.project-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.project-details__inner {
  position: relative;
  display: block;
}

.project-details__img1 {
  position: relative;
  display: block;
}

.project-details__img1 .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.project-details__img1 .inner img {
  width: 100%;
}

.project-details__img1-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f1f8ff;
  padding: 23px 20px 22px;
  padding-left: 390px;
  z-index: 1;
}

.project-details__img1-content .text-box {
  position: relative;
  display: block;
}

.project-details__img1-content .text-box h2 {
  font-size: 43px;
  line-height: 53px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-details__img1-content .social-links {
  position: relative;
  display: block;
}

.project-details__img1-content .social-links ul {
  position: relative;
  display: block;
  border: 1px solid #e3e3e3;
  background: #ffffff;
  border-radius: 5px;
  padding: 5px 22px 5px;
}

.project-details__img1-content .social-links ul li {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  padding-right: 18px;
}

.project-details__img1-content .social-links ul li:first-child {
  padding-left: 0;
}

.project-details__img1-content .social-links ul li:last-child {
  padding-right: 0;
}

.project-details__img1-content .social-links ul li::before {
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 1px;
  background: #e3e3e3;
  content: "";
}

.project-details__img1-content .social-links ul li:last-child:before {
  display: none;
}

.project-details__img1-content .social-links ul li a {
  position: relative;
  display: block;
}

.project-details__img1-content .social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: #1e1d21;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-details__img1-content .social-links ul li a:hover span::before {
  color: var(--clenq-primary);
}

.project-details__img1-content-two {
  position: absolute;
  left: 35px;
  bottom: 0;
  background: #ffffff;
  box-shadow: 0px 0px 26px 0px rgba(215, 212, 212, 0.35);
  padding: 37px 45px 40px;
  z-index: 2;
}

.project-details__img1-content-two::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--clenq-primary);
  content: "";
  z-index: 1;
}

.project-details__img1-content-two::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 160px;
  background: var(--clenq-base);
  content: "";
  z-index: 2;
}

.project-details__img1-content-two ul {
  position: relative;
  display: block;
}

.project-details__img1-content-two ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid #d0dae3;
  padding-bottom: 10px;
  margin-bottom: 7px;
}

.project-details__img1-content-two ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.project-details__img1-content-two ul li p {
  color: rgba(var(--clenq-black-rgb), 0.7);
  line-height: 28px;
}

.project-details__img1-content-two ul li h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

.project-details-text1 {
  position: relative;
  display: block;
  margin-top: 61px;
}

.project-details-text1 h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 13px;
}

.project-details-text1 .text1 {
  margin: 0;
  margin-bottom: 23px;
}

.project-details-text1 .text2 {
  margin: 0;
}

.project-details-text2 {
  position: relative;
  display: block;
  margin-top: 40px;
}

.project-details-text2 h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}

.project-details-text2 .text1 {
  margin: 0;
}

.project-details-text3 {
  position: relative;
  display: block;
  margin-top: 60px;
}

.project-details-text3-content {
  position: relative;
  display: block;
  margin-top: -9px;
}

.project-details-text3-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.project-details-text3-content p {
  margin: 0;
}

.project-details-text3-content ul {
  position: relative;
  display: block;
  margin-top: 35px;
}

.project-details-text3-content ul li {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.project-details-text3-content ul li:last-child {
  margin-bottom: 0;
}

.project-details-text3-content ul li p {
  position: relative;
  margin: 0;
  padding-left: 20px;
}

.project-details-text3-content ul li p::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--clenq-primary);
  border-radius: 50%;
  content: "";
}

.project-details-text3-img {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.project-details-text3-img img {
  width: 100%;
}

.project-details-text4 {
  position: relative;
  display: block;
  background: #ecf6ff;
  margin-top: 70px;
  padding: 34px 40px 51px;
  border-radius: 3px;
}

.project-details-text4.project-details-text4::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background: var(--clenq-primary);
  content: "";
}

.project-details-text4-single {
  position: relative;
  display: block;
}

.project-details-text4-single .top-text {
  position: relative;
  display: block;
}

.project-details-text4-single .top-text h2 {
  color: #2b5280;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 17px;
}

.project-details-text4-single .top-text p {
  color: rgba(21, 23, 26, 0.8);
}

.project-details-text4-single ul {
  position: relative;
  display: block;
  margin-top: 25px;
}

.project-details-text4-single ul li {
  position: relative;
  display: block;
}

.project-details-text4-single ul li p {
  color: rgba(21, 23, 26, 0.8);
}

.project-details-text4-single ul li p span::before {
  position: relative;
  display: inline-block;
  color: #565352;
  font-size: 15px;
  padding-right: 10px;
}

/***
=============================================
Blog List Page
=============================================
***/
.blog-list-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.blog-list-page__content {
  position: relative;
  display: block;
  margin-right: 10px;
}

.blog-list-page__single {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.blog-list-page__single-img {
  position: relative;
  display: block;
  z-index: 5;
}

.blog-list-page__single-img .date-box {
  position: absolute;
  left: 30px;
  bottom: -13px;
  width: 85px;
  height: 26px;
  background: #c9e5ff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clenq-black2);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.blog-list-page__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #000000;
}

.blog-list-page__single-img .inner img {
  width: 100%;
  transition: all 500ms ease;
}

.blog-list-page__single:hover .blog-list-page__single-img .inner img {
  opacity: 0.5;
  transform: scaleX(1.05);
}

.blog-list-page__single-content {
  position: relative;
  display: block;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: none;
  padding: 35px 30px 40px;
  z-index: 1;
}

.blog-list-page__single-content .shape1 {
  position: absolute;
  top: 80px;
  right: 45px;
  z-index: -1;
}

.blog-list-page__single-content::before {
  position: absolute;
  top: -20px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fafdff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  content: "";
  z-index: -1;
}

.blog-list-page__single-content:after {
  position: absolute;
  top: -20px;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #e3e3e3;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: none;
  content: "";
  z-index: -1;
}

.blog-list-page__single-content .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}

.blog-list-page__single-content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 19px;
  line-height: 0;
}

.blog-list-page__single-content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-list-page__single-content .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-list-page__single-content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: #2c2c2c;
  font-size: 16px;
}

.blog-list-page__single-content .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-list-page__single-content .meta-box li .text p {
  color: rgba(var(--clenq-black2-rgb), 0.8);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.blog-list-page__single-content .meta-box li .text p a {
  color: rgba(var(--clenq-black2-rgb), 0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content .meta-box li .text p a:hover {
  color: var(--clenq-primary);
}

.blog-list-page__single-content h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
}

.blog-list-page__single-content h2 a {
  color: var(--clenq-black);
}

.blog-list-page__single-content h2 a:hover {
  color: var(--clenq-primary);
}

.blog-list-page__single-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 31px;
}

.blog-list-page__single-content-bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  content: "";
}

.blog-list-page__single-content-bottom ul {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.blog-list-page__single-content-bottom ul li {
  position: relative;
  display: block;
  margin-right: 25px;
}

.blog-list-page__single-content-bottom ul li:last-child {
  margin-right: 0;
}

.blog-list-page__single-content-bottom ul li .inner {
  position: relative;
  display: block;
}

.blog-list-page__single-content-bottom ul li .inner .btn-box {
  position: relative;
  display: block;
}

.blog-list-page__single-content-bottom ul li .inner .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--clenq-black);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  line-height: 58px;
  background: #ffffff;
  padding: 0px 25px 0px;
  padding-left: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-bottom ul li .inner .btn-box a:hover {
  color: var(--clenq-primary);
}

.blog-list-page__single-content-bottom ul li .inner .btn-box a span::before {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: var(--clenq-base);
  border-radius: 50%;
  color: var(--clenq-black);
  font-size: 11px;
  margin-left: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-bottom ul li .inner .btn-box a:hover span::before {
  background: var(--clenq-primary);
  color: #ffffff;
}

.blog-list-page__single-content-bottom ul li .inner p {
  color: #74808e;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

.blog-list-page__single-content-bottom ul li .inner p span::before {
  position: relative;
  display: inline-block;
  color: #74808e;
  font-size: 18px;
  top: 3px;
  padding-right: 3px;
}

.blog-list-page__single-content-bottom .share-btn {
  position: relative;
  display: block;
}

.blog-list-page__single-content-bottom .share-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 60px;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__single-content-bottom .share-btn a:hover {
  background: var(--clenq-base);
}

.blog-list-page__single-content-bottom .share-btn a span::before {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list-page__content .styled-pagination {
  padding-top: 0px;
}

/***
=============================================
Blog Details
=============================================
***/
.blog-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.blog-details__content {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-details__content::before {
  position: absolute;
  top: 30px;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #dcdee0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  content: "";
  z-index: -1;
}

.blog-details__content-img1 {
  position: relative;
  display: block;
}

.blog-details__content-img1 .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.blog-details__content-img1 .inner img {
  width: 100%;
}

.blog-details__content-img1 .icon-box {
  position: absolute;
  right: 25px;
  bottom: -28px;
  z-index: 5;
}

.blog-details__content-img1 .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 58px;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-img1 .icon-box a:hover {
  background: var(--clenq-primary);
  border-color: var(--clenq-primary);
}

.blog-details__content-img1 .icon-box a span::before {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-img1 .icon-box a:hover span::before {
  color: #ffffff;
}

.blog-details__content-inner {
  position: relative;
  display: block;
  padding: 35px 30px 51px;
}

.blog-details__content-text1 {
  position: relative;
  display: block;
  padding-bottom: 36px;
  z-index: 1;
}

.blog-details__content-text1 .shape1 {
  position: absolute;
  top: 53px;
  right: 30px;
  z-index: -1;
}

.blog-details__content-text1::before {
  position: absolute;
  top: -35px;
  left: -29px;
  bottom: 0;
  right: -29px;
  background: #f4f9fe;
  content: "";
  z-index: -1;
}

.blog-details__content-text1 .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 19px;
}

.blog-details__content-text1 .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 19px;
  line-height: 0;
}

.blog-details__content-text1 .meta-box li:last-child {
  margin-right: 0px;
}

.blog-details__content-text1 .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-details__content-text1 .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: #2c2c2c;
  font-size: 16px;
}

.blog-details__content-text1 .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-details__content-text1 .meta-box li .text p {
  color: rgba(var(--clenq-black2-rgb), 0.8);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.blog-details__content-text1 .meta-box li .text p a {
  color: rgba(var(--clenq-black2-rgb), 0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text1 .meta-box li .text p a:hover {
  color: var(--clenq-primary);
}

.blog-details__content-text1 h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
}

.blog-details__content-text1 h2 a {
  color: var(--clenq-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text1 h2 a:hover {
  color: var(--clenq-primary);
}

.blog-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__content-text2 .text1 {
  margin: 0;
  margin-bottom: 31px;
}

.blog-details__content-text2 h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 19px;
}

.blog-details__content-text2 .text2 {
  margin: 0;
}

.blog-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.blog-details__content-text3-single {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.blog-details__content-text3-single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 90px;
  background: var(--clenq-primary);
  border-radius: 3px;
  overflow: hidden;
  top: 8px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text3-single:hover .icon-box {
  background: var(--clenq-base);
}

.blog-details__content-text3-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 50px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text3-single:hover .icon-box span::before {
  color: var(--clenq-black);
}

.blog-details__content-text3-single .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 25px;
}

.blog-details__content-text3-single h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 11px;
}

.blog-details__content-text3-single p {
  margin: 0;
}

.blog-details__content-text4 {
  position: relative;
  display: block;
  margin-top: 41px;
}

.blog-details__content-text4 h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.blog-details__content-text4 .text1 {
  margin: 0;
}

.blog-details__content-text4 ul {
  position: relative;
  display: block;
  margin-top: 28px;
}

.blog-details__content-text4 ul li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.blog-details__content-text4 ul li:last-child {
  margin-bottom: 0;
}

.blog-details__content-text4 ul li p {
  color: var(--clenq-primary);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.blog-details__content-text4 ul li p img {
  position: relative;
  display: inline-block;
  top: -2px;
  padding-right: 7px;
}

.blog-details__content-text5 {
  position: relative;
  display: block;
  margin-top: 36px;
}

.blog-details__content-text5 .text1 {
  margin: 0;
  margin-bottom: 32px;
}

.blog-details__content-text5 h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 16px;
}

.blog-details__content-text5 .text2 {
  margin: 0;
}


.blog-details__content-text6 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-top: 85px;
}

.blog-details__content-text6-tag {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__content-text6-tag .title-box {
  position: relative;
  display: block;
}

.blog-details__content-text6-tag .title-box h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #2b5280;
}

.blog-details__content-text6-tag ul {
  position: relative;
  display: block;
  margin-left: 13px;
}

.blog-details__content-text6-tag ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.blog-details__content-text6-tag ul li:last-child {
  margin-right: 0;
}

.blog-details__content-text6-tag ul li a {
  position: relative;
  display: block;
  background: #e4e4dd;
  padding: 10px 15px 10px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #080501;
  text-transform: capitalize;
}

.blog-details__content-text6-tag ul li a:hover {
  background: var(--clenq-base);
}


.blog-details__content-text6-post {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__content-text6-post .title-box {
  position: relative;
  display: block;
}

.blog-details__content-text6-post .title-box h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #2b5280;
}

.blog-details__content-text6-post ul {
  position: relative;
  display: block;
  margin-left: 14px;
}

.blog-details__content-text6-post ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.blog-details__content-text6-post ul li:last-child {
  margin-right: 0;
}

.blog-details__content-text6-post ul li a {
  position: relative;
  display: block;
  background: #e4e4dd;
  padding: 10px 15px 10px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #080501;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text6-post ul li a:hover {
  background: var(--clenq-primary);
  color: #ffffff;
}

.blog-details__author {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 29px 30px 35px;
  margin-top: 20px;
}

.blog-details__author-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.blog-details__author-img img {
  width: 100%;
}

.blog-details__author-content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 25px;
}

.blog-details__author-content h2 {
  color: var(--clenq-primary);
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
  margin-bottom: 7px;
}

.blog-details__author-content p {
  color: #2b5280;
  font-weight: 500;
  margin-bottom: 20px;
}

.blog-details__author-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  background: #f4f3f0;
  border-radius: 5px;
  max-width: 270px;
  width: 100%;
  padding: 12px 0px 12px;
  padding-left: 19px;
}

.blog-details__author-content-bottom .title-box {
  position: relative;
  display: block;
}

.blog-details__author-content-bottom .title-box p {
  color: #2b5280;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.blog-details__author-content-bottom ul {
  position: relative;
  display: block;
  margin-left: 15px;
}

.blog-details__author-content-bottom ul li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.blog-details__author-content-bottom ul li:last-child {
  margin-right: 0;
}

.blog-details__author-content-bottom ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__author-content-bottom ul li a:hover {
  background: var(--clenq-base);
}

.blog-details__author-content-bottom ul li a span::before {
  position: relative;
  display: inline-block;
  color: #433838;
  font-size: 15px;
}

.comment-one {
  position: relative;
  display: block;
  margin-top: 47px;
}

.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--clenq-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 36px;
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 38px;
  margin-bottom: 45px;
}

.comment-one__single.ml75 {
  margin-left: 75px;
}

.comment-one__image {
  position: relative;
  display: block;
  width: 105px;
  height: 105px;
  overflow: hidden;
  border-radius: 50%;
}

.comment-one__image img {
  width: 100%;
}

.comment-one__content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 30px;
  margin-top: -7px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #43628a;
  margin-bottom: 7px;
}

.comment-one__content h3 .comment-one__btn {
  position: relative;
  display: inline-block;
  color: #15171a;
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  background: #efeeee;
  padding: 1px 15px 1px;
  margin-left: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-one__content h3 .comment-one__btn:hover {
  background: var(--clenq-primary);
  color: #ffffff;
}

.comment-one__content .text1 {
  position: relative;
  color: rgba(21, 23, 26, 0.7);
  margin-bottom: 13px;
}

.comment-one__content .date-box {
  position: relative;
  color: rgba(21, 23, 26, 0.7);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}


.comment-form {
  position: relative;
  display: block;
  padding-top: 7px;
}

.comment-form .comment-form__title {
  margin-bottom: 23px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 70px;
  width: 100%;
  border: 1px solid #7f7e7d;
  background-color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 15px;
  color: rgba(8, 5, 1, 0.6);
  display: block;
  border-radius: 5px;
  font-family: var(--clenq-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-form__input-box textarea {
  font-size: 15px;
  color: rgba(8, 5, 1, 0.6);
  height: 220px;
  width: 100%;
  background-color: #ffffff;
  padding: 25px 20px 30px;
  border: 1px solid #7f7e7d;
  outline: none;
  margin-bottom: 0px;
  border-radius: 5px;
  resize: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


.comment-form__input-box input[type="text"]:focus {
  background-color: #f0f2f4;
}

.comment-form__input-box input[type="email"]:focus {
  background-color: #f0f2f4;
}

.comment-form__input-box textarea:focus {
  background-color: #f0f2f4;
}

.comment-form__input-box.text-message-box {
  margin-bottom: 10px;
}

.comment-form__btn.thm-btn {
  border: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/***
=============================================
Google Map One
=============================================
***/
.google-map-one {
  position: relative;
  display: block;
  z-index: 1;
}

.google-map-one__map {
  position: relative;
  display: block;
  border: none;
  height: 570px;
  width: 100%;
}

.map {
  -webkit-filter: grayscale(100%);
}

/***
=============================================
Contact One Contact
=============================================
***/
.contact-one--contact {
  position: relative;
  display: block;
  padding: 195px 0px 30px;
  z-index: 1;
}

.contact-one--contact__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.contact-one--contact form input[type="text"]:focus {
  color: rgba(21, 23, 26, 1.0);
  border-color: #262222;
}

.contact-one--contact form input[type="email"]:focus {
  color: rgba(21, 23, 26, 1.0);
  border-color: #262222;
}

.contact-one--contact form textarea:focus {
  color: rgba(21, 23, 26, 1.0);
  border-color: #262222;
}

.contact-one--contact .contact-page__btn button.thm-btn {
  background: var(--clenq-primary);
  color: #ffffff;
}


/***
=============================================
Brand One Contact
=============================================
***/
.brand-one--contact {
  position: relative;
  display: block;
  padding: 100px 0px 110px;
}

/***
=============================================
Contact Page Top
=============================================
***/
.contact-page-top {
  position: relative;
  display: block;
  padding: 100px 0px 0px;
  margin-bottom: -170px;
  z-index: 5;
}

.contact-page-top .title-box {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 65px;
}

.contact-page-top .title-box h2 {
  font-size: 43px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 27px;
}

.contact-page-top .title-box p {
  font-size: 18px;
}

.contact-page-top__inner {
  position: relative;
  display: block;
  background: var(--clenq-base);
  border-radius: 10px;
  padding: 65px 0px 57px;
}

.contact-page-top__single {
  position: relative;
  display: block;
}

.contact-page-top__single::before {
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 1px;
  background: #c5bb04;
  content: "";
}

.contact-page-top__single.bdrn::before {
  display: none;
}

.contact-page-top__single .icon {
  position: relative;
  display: block;
  height: 85px;
  width: 85px;
  background-color: #080501;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  border: 4px solid #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  margin: 0 auto 26px;
}

.contact-page-top__single .content {
  position: relative;
  display: block;
}

.contact-page-top__single .content h2 {
  color: #080501;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 14px;
}

.contact-page-top__single .content p {
  color: #080501;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.contact-page-top__single .content p a {
  color: #080501;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
}

.contact-page-top__single .content p a:hover {
  color: var(--clenq-primary);
}

/***
=============================================
Faq Page
=============================================
***/
.faq-page {
  position: relative;
  display: block;
  padding: 100px 0px 110px;
  z-index: 1;
}

.faq-page__pattern {
  position: absolute;
  top: 300px;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.faq-page .title-box {
  position: relative;
  display: block;
}

.faq-page .title-box h2 {
  font-size: 43px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 28px;
}

.faq-page .title-box p {
  font-size: 18px;
  line-height: 30px;
}

.faq-page__inner {
  position: relative;
  display: block;
  padding-top: 122px;
}

.faq-page__single {
  position: relative;
  display: block;
}

.faq-page__faq {
  position: relative;
  display: block;
}

.faq-page__faq .title-box {
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.faq-page__faq .title-box h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin: 0;
}

.faq-page__faq-inner {
  position: relative;
  display: block;
}

.faq-page__faq .accrodion {
  position: relative;
  display: block;
  border-radius: 5px;
  border: 1px solid #262222;
  background-color: #ffffff;
}

.faq-page__faq .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 17px 20px 17px 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 5px;
}

.faq-page__faq .accrodion-title h4 {
  position: relative;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #080501;
  font-family: var(--clenq-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-page__faq .accrodion+.accrodion {
  margin-top: 10px;
}

.faq-page__faq .accrodion-title h4::before {
  content: "\e905";
  font-family: 'icomoon' !important;
  font-weight: normal;
  font-size: 15px;
  color: #000000;
  position: absolute;
  top: 50%;
  right: 0px;
  width: 33px;
  height: 33px;
  background: var(--clenq-base);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-page__faq .accrodion.active .accrodion-title h4::before {
  content: "\e905";
  color: var(--clenq-black);
  background: var(--clenq-base);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%) rotate(-90deg);
}

.faq-page__faq .accrodion-content {
  position: relative;
  padding: 21px 30px 35px;
  border-top: 1px solid #262222;
}

.faq-page__faq .accrodion-content p {
  color: rgba(21, 23, 26, 0.8);
  margin: 0;
}



/***
=============================================
Error Page
=============================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 182px 0px 185px;
  z-index: 1;
}

.error-page__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__inner h2 {
  color: #141212;
  font-size: 180px;
  line-height: 0.9em;
  font-weight: 700;
  margin-bottom: 25px;
}

.error-page__inner h2 .icon {
  position: absolute;
  top: 57px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 45px;
  color: var(--clenq-primary);
}

.error-page__inner h2 .clr1 {
  color: #141212;
  text-shadow: 5px 12px 0px #e4e4e6;
}

.error-page__inner h2 .clr2 {
  color: var(--clenq-primary);
  text-shadow: 5px 12px 0px #e6f1fc;
}

.error-page__inner h3 {
  color: var(--clenq-primary);
  font-size: 38px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 40px;
}

.error-page__inner p {
  color: #080501;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

.error-page__search {
  position: relative;
  display: block;
  margin-top: 51px;
}

.error-page__search form.search-form {
  position: relative;
  display: block;
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
}

.error-page__search .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background-color: #ffffff;
  border: 1px solid #eae9e9;
  color: rgba(20, 18, 18, 0.75);
  font-size: 16px;
  font-weight: 300;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease 0s;
  font-family: var(--clenq-font);
}

.error-page__search .search-form button {
  position: absolute;
  top: 5px;
  right: 15px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 50px;
  background: transparent;
  text-align: center;
  border: 0px solid #f6f4ec;
  transition: all 500ms ease 0s;
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
}

.error-page__search .search-form button i {
  color: #000000;
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.error-page__search .search-form button:hover i {
  color: var(--clenq-primary);
}

.error-page__search .search-form input[type="text"]:focus {
  outline: none;
}

.error-page__search .search-form input::-webkit-input-placeholder {
  color: rgba(20, 18, 18, 0.75);
}

.error-page__search .search-form input:-moz-placeholder {
  color: rgba(20, 18, 18, 0.75);
}

.error-page__search .search-form input::-moz-placeholder {
  color: rgba(20, 18, 18, 0.75);
}

.error-page__search .search-form input:-ms-input-placeholder {
  color: rgba(20, 18, 18, 0.75);
}

.error-page__btn {
  position: relative;
  display: block;
  margin-top: 55px;
  line-height: 0;
}

.error-page__btn .thm-btn {
  border-radius: 32px;
  border: 1px solid var(--clenq-black);
}


/***
=====================================================
Shop Page
=====================================================
***/
.shop-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
  z-index: 1;
}

.shop-page__top {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.shop-page__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  padding: 0px 30px 0px;
  padding-right: 17px;
  border-radius: 25px;
}

.shop-page__top-left {
  position: relative;
  display: block;
}

.shop-page__top-left p {
  color: var(--clenq-black);
}

.shop-page__top-right {
  position: relative;
  display: block;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 300px;
  width: 100%;
}

.product__showing-sort .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  max-width: 300px;
  width: 100% !important;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 55px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: #f7f7f7 !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--clenq-black) !important;
  font-size: 16px;
  line-height: 55px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 11px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--clenq-black);
}

.shop-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.shop-page__single-img {
  position: relative;
  display: block;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  overflow: hidden;
  z-index: 1;
}

.shop-page__single-img::before {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.shop-page__single:hover .shop-page__single-img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.shop-page__single-img img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.shop-page__single:hover .shop-page__single-img img {
  transform: scale(1.1) rotate(1deg);
}

.shop-page__single-img .text {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #161010;
  font-size: 14px;
  width: 55px;
  height: 25px;
  border-radius: 25px;
  background: var(--clenq-base);
  z-index: 5;
}

.shop-page__single-content {
  position: relative;
  display: block;
}

.shop-page__single-content .btn-box {
  position: relative;
  display: block;
  z-index: 1;
}

.shop-page__single-content .btn-box a {
  position: relative;
  display: block;
  background: #ecf3f9;
  padding: 12px 10px 13px;
  color: var(--clenq-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-page__single:hover .shop-page__single-content .btn-box a {
  color: #ffffff;
}

.shop-page__single-content .btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: var(--clenq-primary);
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.shop-page__single:hover .shop-page__single-content .btn-box a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.shop-page__single-content .bottom-text {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0px 0px 18px 0px rgba(229, 230, 232, 0.72);
  padding: 27px 25px 27px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.shop-page__single-content .bottom-text .text-box {
  position: relative;
  display: block;
}

.shop-page__single-content .bottom-text .text-box h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.shop-page__single-content .bottom-text .text-box h4 a {
  color: var(--clenq-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-page__single-content .bottom-text .text-box h4 a:hover {
  color: var(--clenq-primary);
}

.shop-page__single-content .bottom-text .text-box p {
  color: var(--clenq-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.shop-page__single-content .bottom-text .text-box p del {
  color: #abb2b8;
  padding-left: 4px;
}

.shop-page__single-content .bottom-text .rating-box {
  position: relative;
  display: block;
}

.shop-page__single-content .bottom-text .rating-box ul li span {
  color: #ed8a19;
}


/***
=============================================
   Styled Pagination Two
=============================================
***/
.styled-pagination-two {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.styled-pagination-two li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.styled-pagination-two li:last-child {
  margin-right: 0;
}

.styled-pagination-two li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 50px;
  background: transparent;
  border-radius: 20px;
  color: #01050c;
  font-size: 16px;
  line-height: 50px;
  font-weight: 500;
  border: 1px solid #e1e1e1;
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--clenq-font);
  z-index: 1;
}

.styled-pagination-two li a:hover,
.styled-pagination-two li a.active {
  color: #ffffff;
  background: var(--clenq-black);
  border-color: var(--clenq-black);
}

.styled-pagination-two li.prev a,
.styled-pagination-two li.next a {
  color: #383838;
  font-weight: 500;
  font-size: 13px;
  width: 60px;
  height: 50px;
  border: 1px solid #e1e1e1;
  text-transform: uppercase;
  border-radius: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  top: -1px;
}

.styled-pagination-two li.prev a:hover,
.styled-pagination-two li.next a:hover {
  color: #ffffff;
  background: var(--clenq-black);
  border-color: var(--clenq-black);
}

.styled-pagination-two li.prev {
  margin-right: 15px;
}

.styled-pagination-two li.next {
  margin-left: 10px;
}



/***
=============================================
Shop Details
=============================================
***/
.shop-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 44px;
}

.shop-details__img-box {
  position: relative;
  display: block;
  margin-right: 35px;
}

.shop-details__img-box-inner {
  position: relative;
  display: block;
}

.shop-details__img-box-thumb {
  position: absolute;
  bottom: -42px;
  left: 0;
  right: 0;
  max-width: 400px;
  margin: 0 auto;
  z-index: 2;
}

.shop-details__img-box-thumb-img {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 2px solid #fff;
  overflow: hidden;
}

.shop-details__img-box-thumb-img img {
  width: 100%;
}

.shop-details__img-box-img {
  position: relative;
  display: block;
}

.shop-details__img-box-img .img-box {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}

.shop-details__img-box-img .img-box img {
  width: 100%;
}

.shop-details-top__nav {
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: 50%;
  bottom: 85px;
  z-index: 5;
  transform: translateY(0%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-details-top__nav .swiper-button-next,
.shop-details-top__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 5;
  width: 55px;
  height: 55px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #000000;
  border-radius: 50%;
  font-weight: 700;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
}

.shop-details-top__nav .swiper-button-next {
  left: -10px;
}

.shop-details-top__nav .swiper-button-prev {
  right: -10px;
}

.shop-details-top__nav .swiper-button-next:hover,
.shop-details-top__nav .swiper-button-prev:hover {
  background: var(--clenq-base);
}

.shop-details-top__nav .swiper-button-next::after,
.shop-details-top__nav .swiper-button-prev::after {
  display: none;
}

.shop-details-top__nav .swiper-button-next i:before,
.shop-details-top__nav .swiper-button-prev i:before {
  font-weight: 700;
}

.shop-details-top__nav .swiper-button-prev .angle-left {
  position: relative;
  right: 2px;
  font-weight: 700;
}

.shop-details-top__nav .swiper-button-next .angle-right {
  position: relative;
  left: 0px;
  font-weight: 700;
}


.shop-details__content {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-top: -9px;
}

.shop-details__content .title {
  position: relative;
  display: block;
}

.shop-details__content .title h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
}

.shop-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 16px;
}

.shop-details__content-text1 h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--clenq-font);
}

.shop-details__content-text1 h3 del {
  position: relative;
  display: inline-block;
  color: rgba(8, 5, 1, 0.5);
  font-size: 14px;
  font-weight: 400;
  margin-left: 7px;
  top: -6px;
}

.shop-details__content-text1 h3 .text {
  color: #f42647;
  font-size: 14px;
  margin-left: 0;
}

.shop-details__content-text1 h3 span {
  position: relative;
  display: inline-block;
  color: var(--clenq-base);
  font-size: 15px;
  font-weight: 400;
  top: -6px;
  margin-left: 13px;
}

.shop-details__content-text1 h3 .text2 {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  background: #b6edb2;
  padding: 0px 5px 0px;
  margin-left: 0;
}

.shop-details__review {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 5px;
}

.shop-details__review ul {
  position: relative;
  display: block;
}

.shop-details__review ul li {
  position: relative;
  display: inline-block;
}

.shop-details__review ul li span::before {
  position: relative;
  display: inline-block;
  color: #efce4a;
  font-size: 15px;
}

.shop-details__review ul li p {
  color: var(--clenq-black);
  font-size: 14px;
}



.shop-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 35px;
}

.shop-details__content-text2 p {
  margin: 0;
}

.shop-details__content-text2 ul {
  position: relative;
  display: block;
  margin-top: 20px;
}

.shop-details__content-text2 ul li {
  position: relative;
  display: block;
  margin-bottom: 1px;
}

.shop-details__content-text2 ul li:last-child {
  margin-bottom: 0;
}

.shop-details__content-text2 ul li p {
  color: rgba(68, 67, 68, 0.8);
  margin: 0;
}

.shop-details__content-text2 ul li p span::before {
  position: relative;
  display: inline-block;
  color: #232323;
  font-size: 22px;
  padding-right: 10px;
  top: 4px;
}


.shop-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 20px;
}

.shop-details__content-text3 .title {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.shop-details__content-text3 .title p {
  color: var(--clenq-black);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
}

.shop-details__content-text3 .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-details__content-text3 .add-to-cart-btn {
  position: relative;
  display: block;
  margin-right: 20px;
}

.shop-details__content-text3 .add-to-cart-btn a {
  position: relative;
  display: inline-block;
  color: #fefefe;
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  background: var(--clenq-black);
  padding: 18px 40px 19px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__content-text3 .add-to-cart-btn a:hover {
  background: var(--clenq-base);
}

.shop-details__content-text3 .product-quantity {
  position: relative;
  display: block;
}

.shop-details__content-text3 .product-quantity-box {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 15px;
  padding-left: 1px;
}

.shop-details__content-text3 .product-quantity-box .input-group.bootstrap-touchspin {
  position: relative;
  width: 115px;
  height: 50px;
}

.shop-details__content-text3 .product-quantity-box input.quantity-spinner.form-control {
  position: relative;
  display: block;
  padding: 0;
  width: 30px;
  flex: none;
  height: 50px;
  color: var(--clenq-black);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  margin: 0 auto;
  text-align: center;
  border: none;
  font-family: var(--clenq-font);
  z-index: 5;
  left: 11px;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 100%;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
  position: absolute;
  top: 14px;
  right: 23px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  border-left: none;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  border-right: none;
}

.shop-details__content-text3 .product-quantity-box .form-control {
  background: transparent;
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
  position: absolute;
  top: 0px;
  left: 1px;
  right: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e92b";
  color: #232323;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(90deg);
}

.shop-details__content-text3 .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e92b";
  color: #232323;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 22px;
  transform: rotate(-90deg);
}

.shop-details__content-text3 .btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.shop-details__content-text3 .btn-box a {
  position: relative;
  display: inline-block;
  color: #080501;
  font-size: 15px;
  font-weight: 500;
  background: var(--clenq-base);
  padding: 10px 35px 11px;
  border-radius: 5px;
  font-family: var(--clenq-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__content-text3 .btn-box a:hover {
  color: #ffffff;
  background: var(--clenq-black);
}

.shop-details__content-text3 .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f9f7f7;
  font-size: 20px;
  color: #171616;
  margin-left: 30px;
}

.shop-details__content-text3 .icon-box span:before {
  position: relative;
  display: inline-block;
  font-weight: 700;
}


.shop-details__content-text4 {
  position: relative;
  display: block;
  margin-top: 30px;
}

.shop-details__content-text4 ul {
  position: relative;
  display: block;
}

.shop-details__content-text4 ul li {
  position: relative;
  display: block;
}

.shop-details__content-text4 ul li .text {
  position: relative;
  display: block;
}

.shop-details__content-text4 ul li .text p {
  color: #15171a;
  font-size: 15px;
}

.shop-details__content-text4 ul li .text p span {
  color: var(--clenq-black);
  font-size: 16px;
  font-weight: 600;
}

.shop-details__content-text4 ul li .text p i::before {
  position: relative;
  display: inline-block;
  color: var(--clenq-black);
  font-size: 22px;
  font-weight: 400;
  padding-right: 5px;
  top: 5px;
}


.shop-details__content-social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.shop-details__content-social-links .title {
  position: relative;
  display: block;
  margin-right: 15px;
}

.shop-details__content-social-links .title h4 {
  color: rgba(21, 23, 26, 0.8);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--clenq-font);
}

.shop-details__content-social-links ul {
  position: relative;
  display: block;
}

.shop-details__content-social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 18px;
}

.shop-details__content-social-links ul li:last-child {
  margin-right: 0;
}

.shop-details__content-social-links ul li a {
  position: relative;
  display: block;
  color: #212330;
  font-size: 16px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__content-social-links ul li a:hover {
  color: var(--clenq-primary);
}


/***
=============================================
Shop Details Tab
=============================================
***/
.shop-details__tab {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #dddddd;
  margin-top: 99px;
  border-radius: 10px;
}

.shop-details__tab-button {
  position: relative;
  display: block;
  text-align: center;
  margin-top: -1px;
  z-index: 2;
}

.shop-details__tab-button .tab-buttons {
  position: relative;
  display: block;
}

.shop-details__tab-button .tab-buttons li {
  position: relative;
  display: inline-block;
  background: #f1f8ff;
  cursor: pointer;
  padding: 13px 45px 13px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-right: 0px;
}

.shop-details__tab-button .tab-buttons li:last-child {
  margin-right: 0;
}

.shop-details__tab-button .tab-buttons li:hover,
.shop-details__tab-button .tab-buttons li.active-btn {
  background: var(--clenq-primary);
}

.shop-details__tab-button .tab-buttons li h4 {
  color: #080501;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--clenq-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-details__tab-button .tab-buttons li:hover h4,
.shop-details__tab-button .tab-buttons li.active-btn h4 {
  color: #ffffff
}

.shop-details__tab-content-item {
  position: relative;
  display: block;
}

.shop-details__tab .tabs-content .tab {
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
  opacity: 1;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 1;
}

.shop-details__tab .tabs-content .tab.active-tab {
  position: relative;
  display: block;
  opacity: 1.0;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 5;
}

.shop-details__tab-description {
  position: relative;
  display: block;
  padding: 36px 60px 55px;
}

.shop-details__tab-description .text-box1 {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.shop-details__tab-description .text-box1 p {
  margin: 0;
}

.shop-details__tab-description .text-box2 {
  position: relative;
  display: block;
}

.shop-details__tab-description .text-box2 p {
  margin: 0;
}

.shop-details__tab-specifications {
  position: relative;
  display: block;
  padding: 36px 60px 55px;
}

.shop-details__tab-specifications .text-box1 {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.shop-details__tab-specifications .text-box1 p {
  margin: 0px;
}

.shop-details__tab-specifications .text-box2 {
  position: relative;
  display: block;
}

.shop-details__tab-specifications .text-box2 p {
  margin: 0;
}

.shop-details__tab-content-item.style2 {
  position: relative;
  display: block;
  padding: 50px 40px 50px;
}

.shop-details__tab-reviews {
  position: relative;
  display: block;
}

.review-box-outer {
  position: relative;
  display: block;
}

.single-review-box-outer {
  position: relative;
  display: block;
  background: #f5f5f5;
  padding: 38px 30px 34px;
}

.single-review-box {
  position: relative;
  display: block;
  padding-left: 70px;
  min-height: 70px;
}

.single-review-box .img-box {
  position: absolute;
  top: 9px;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.single-review-box .img-box img {
  width: 100%;
  border-radius: 50%;
}

.single-review-box .text-box {
  position: relative;
  display: block;
  padding-left: 25px;
}

.single-review-box .text-box .review-box {
  position: relative;
  display: block;
}

.single-review-box .text-box .review-box ul {
  position: relative;
  display: block;
}

.single-review-box .text-box .review-box ul li {
  position: relative;
  display: inline-block;
}

.single-review-box .text-box .review-box ul li i:before {
  position: relative;
  display: inline-block;
  color: #efce4a;
  font-size: 15px;
}

.single-review-box .text-box .review-box {
  padding: 0 0 10px;
}

.single-review-box .text-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}

.single-review-box .text-box h5 span {
  color: #757575;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--clenq-font);
}

.single-review-box .text-box p {
  margin: 0;
}

.review-form {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 53px 60px 60px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
  margin-top: 60px;
}

.review-form .title-box {
  position: relative;
  display: block;
  padding-bottom: 24px;
}

.review-form .title-box h2 {
  font-size: 30px;
  font-weight: 600;
}


.review-form .add-rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.review-form .add-rating-box .add-rating-title {
  position: relative;
  float: left;
}

.review-form .add-rating-box .add-rating-title p {
  line-height: 20px;
  margin: 0;
}

.review-form .add-rating-box .review-box {
  position: relative;
  float: left;
  padding-left: 20px;
}

.review-form .add-rating-box .review-box ul li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 20px;
  margin-right: 5px;
}

.review-form .add-rating-box .review-box ul li:last-child {
  margin-right: 0px;
}

.review-form .add-rating-box .review-box ul li i {
  color: #efce4a;
  font-size: 14px;
  line-height: 20px;
  transition: all 500ms ease 0s;
}

.shop-details__tab-reviews .review-form .input-box {
  position: relative;
  display: block;
}

.shop-details__tab-reviews .review-form .input-box .field-label {
  position: relative;
  display: block;
  padding-bottom: 9px;
  color: #757575;
}

.shop-details__tab-reviews .review-form form input[type="text"],
.shop-details__tab-reviews .review-form form input[type="email"],
.shop-details__tab-reviews .review-form form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #e5e5e5;
  color: #757575;
  font-size: 16px;
  padding: 0 20px;
  margin-bottom: 22px;
  border-radius: 0px;
  transition: all 500ms ease;
  outline: none;
}

.shop-details__tab-reviews .review-form form textarea {
  height: 120px;
  padding: 10px 20px;
}

.shop-details__tab-reviews .review-form form input[type="text"]:focus {
  border-color: #e1dddd;
}

.shop-details__tab-reviews .review-form form input[type="email"]:focus {
  border-color: #e1dddd;
}

.shop-details__tab-reviews .review-form form textarea:focus {
  border-color: #e1dddd;
}


.shop-details__tab-reviews .review-form .button-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 35px;
}

.shop-details__tab-reviews .review-form .button-box .left {
  position: relative;
  display: block;
}

.shop-details__tab-reviews .review-form .button-box .right {
  position: relative;
  display: block;
  padding-left: 20px;
}

/***
=============================================
Checked Box2
=============================================
***/
.checked-box2 {
  position: relative;
  display: block;
  min-height: 30px;
}

.checked-box2 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #757575;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  min-height: 30px;
  font-family: var(--clenq-font);
}

.checked-box2 input[type="checkbox"] {
  display: none;
}

.checked-box2 input[type="checkbox"]+label span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #d6d3d0;
  cursor: pointer;
  border-radius: 0px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box2 label span:before {
  font-family: 'icomoon' !important;
  content: "\e904";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: 0px;
  color: var(--clenq-black);
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box2 input[type="checkbox"]:checked+label span {
  border-color: #dedede;
}

.checked-box2 input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.shop-page--shop-details {
  position: relative;
  display: block;
  padding: 60px 0px 80px;
  z-index: 1;
}

.shop-page--shop-details .title-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.shop-page--shop-details .title-box h2 {
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}


/***
=====================================================
Cart Page
=====================================================
***/
.cart-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 103px 0px 110px;
}

.cart-page__left {
  position: relative;
  display: block;
  margin-right: -30px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 800px;
  }
}

.cart-table {
  margin-bottom: 24px;
}

.cart-table thead th {
  color: var(--clenq-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding: 0;
  border: none;
  padding-bottom: 7px;
  font-family: var(--clenq-font-two);
  text-transform: capitalize;
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid #eaeaea;
}

.cart-table tbody td {
  font-size: 16px;
  font-weight: 500;
  color: var(--clenq-black);
  vertical-align: middle;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0;
  font-family: var(--clenq-font-two);
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 85px;
  margin-right: 26px;
}

.cart-table .product-box .img-box .inner {
  position: relative;
  display: block;
  width: 85px;
  border-radius: 3px;
  overflow: hidden;
}

.cart-table .product-box .img-box img {
  width: 100%;
}

.product-box-croos-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
  height: 25px;
  width: 25px;
  background-color: var(--clenq-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #080501;
  z-index: 2;
}

.cart-table h3 {
  color: var(--clenq-black);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  margin: 0;
  text-transform: none;
  font-family: var(--clenq-font);
}

.cart-table h3 a {
  color: var(--clenq-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--clenq-base);
}

.cart-cupon__form-box {
  position: relative;
  display: block;
}

.cart-cupon__sub-title {
  font-size: 18px;
  color: var(--clenq-black);
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 16px;
}

.cart-cupon__form {
  position: relative;
  display: block;
}

.cart-cupon__input {
  width: 100%;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 210px;
  font-family: var(--clenq-font);
  font-size: 15px;
  color: rgba(var(--clenq-black-rgb), .5);
  height: 60px;
  border: 1px solid #dddddd;
  outline: none;
  font-weight: 400;
  outline: none;
}

.cart-cupon__form input[type="text"]:focus {
  border: 1px solid #dddddd;
}

.cart-cupon__form ::placeholder {
  color: rgba(var(--clenq-black-rgb), .5);
}

.cart-cupon__form button {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  border: none;
  outline: none !important;
  color: var(--clenq-black);
  padding: 0px 60px 0px;
  font-size: 16px;
  line-height: 60px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 0;
  font-family: var(--clenq-font);
}

.cart-cupon__form button.thm-btn {
  background-color: var(--clenq-base);
}

.cart-cupon__form button:hover {
  color: #ffffff;
}

.cart-cupon__form button.thm-btn::before {
  background: var(--clenq-black);
}

.cart-cupon__btn {
  font-size: 15px;
  font-weight: 500;
  color: var(--clenq-black);
  position: relative;
  display: inline-block;
  font-family: var(--clenq-font-two);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-top: 23px;
}

.cart-cupon__btn:hover {
  color: var(--clenq-primary);
}

.cart-cupon__btn:before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--clenq-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-cupon__btn:hover:before {
  background: var(--clenq-primary);
}


.cart-page__right {
  position: relative;
  display: block;
  margin-left: 40px;
  margin-top: 5px;
}

.cart-page__total-box {
  position: relative;
  display: block;
}

.cart-page__total-table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
  background-color: #f6fbff;
  padding-bottom: 25px;
}

.cart-page__total-table {
  min-width: 330px;
  width: 100%;
}

.cart-page__total-table tbody {
  position: relative;
}

.cart-page__total-table tbody tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0px;
  border-bottom: 1px solid #e4e2e0;
  margin-left: 20px;
  margin-right: 20px;
}

.cart-page__total-table tbody tr:first-child {
  background-color: #f0f0f0;
  padding: 13px 20px;
  border-bottom: 0;
  margin: 0;
}

.cart-page__total-table tbody tr:last-child {
  border-bottom: 0;
}

.cart-page__total-table tbody tr td {
  font-size: 18px;
  font-weight: 600;
  color: var(--clenq-black);
  text-transform: capitalize;
}

.cart-page__total-table tbody tr td .flat-rate {
  color: var(--clenq-black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-transform: none;
}

.cart-page__total-table tbody tr td .shipping-usa {
  font-size: 14px;
  color: rgba(8, 5, 1, 0.7);
  line-height: 20px;
}

.cart-page__total-table tbody tr td .change-address {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--clenq-black);
  line-height: 14px;
  font-weight: 400;
}

.cart-page__total-table tbody tr td .change-address a {
  color: var(--clenq-black);
}

.cart-page__total-table tbody tr td .change-address:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--clenq-black);
}

.proceed-checkout {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  background-color: var(--clenq-primary);
  border: none;
  outline: none;
  padding: 9px 0;
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.proceed-checkout:hover {
  background-color: var(--clenq-black);
  color: #ffffff;
}

.cart-page .product-quantity {
  position: relative;
  display: block;
  max-width: 152px;
  border-radius: 0px;
  margin-right: 20px;
}

.cart-page .product-quantity-box {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 0px;
  overflow: hidden;
  padding-left: 1px;
}

.cart-page .product-quantity-box .input-group.bootstrap-touchspin {
  position: relative;
  width: 150px;
  height: 60px;
}

.cart-page .product-quantity-box input.quantity-spinner.form-control {
  position: relative;
  display: block;
  padding: 0;
  width: 50px;
  flex: none;
  height: 60px;
  color: var(--clenq-black);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  margin: 0 auto;
  text-align: center;
  border: none;
  font-family: var(--clenq-font);
  z-index: 5;
  left: 50px;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 100%;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
  position: relative;
  display: block;
  margin-left: 0px;
  background: #f7f7f7;
  color: var(--clenq-black);
  cursor: pointer;
  height: 60px;
  width: 50px;
  margin: 0;
  padding: 0;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  float: right;
  border-left: none;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  float: left;
  border-right: none;
}

.cart-page .product-quantity-box .form-control {
  background: #f7f7f7;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
  position: absolute;
  top: 11px;
  left: 0px;
  right: 10px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e902";
  color: #000000;
  font-size: 15px;
  padding: 0;
  line-height: 60px;
  width: 35px;
  height: 35px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(0deg);
  font-weight: 700;
}

.cart-page .product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e903";
  color: #000000;
  font-size: 15px;
  padding: 0;
  line-height: 60px;
  width: 35px;
  height: 35px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

/*** 
=============================================
    Checkout Area Css
=============================================
***/
.checkout-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 110px 0px 110px;
}

.checkout-area .form {
  position: relative;
  display: block;
  margin-top: -7px;
}

.checkout-area .form .title {
  position: relative;
  display: block;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 8px;
  margin-bottom: 25px;
}

.checkout-area .form .title h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.checkout-area .form form .field-label {
  color: #080501;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px;
  text-transform: none;
}

.checkout-area .form form .field-label.style2 {
  color: var(--clenq-black);
  font-size: 18px;
  font-weight: 600;
}

.checkout-area form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.checkout-area .form form .field-input input[type="text"],
.checkout-area .form form .field-input input[type="email"],
.checkout-area .form form .field-input input[type="tel"] {
  position: relative;
  display: block;
  border: 1px solid #e0e0e0;
  color: rgba(8, 5, 1, 0.5);
  font-size: 15px;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
  border-radius: 0px;
  width: 100%;
  outline: none;
  transition: all 500ms ease;
}

.checkout-area .form form .field-input textarea {
  position: relative;
  display: block;
  border: 1px solid #e0e0e0;
  color: rgba(8, 5, 1, 0.5);
  font-size: 15px;
  font-weight: 400;
  height: 120px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 20px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  outline: none;
}

.checkout__select-box {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.checkout__select-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100% !important;
}

.checkout__select-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.checkout__select-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  background-color: #ffffff !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: rgba(8, 5, 1, 0.5) !important;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  line-height: 60px;
}

.checkout__select-box .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 25px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: #000000;
}

.checkout-area__checkbox {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.checkout-area__checkbox-single+.checkout-area__checkbox-single {
  margin-top: 0px;
}

.checkout-area__checkbox-single label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: rgba(9, 9, 9, 0.87);
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
  cursor: pointer;
}

.checkout-area__checkbox-single input[type="checkbox"] {
  display: none;
}

.checkout-area__checkbox-single input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  border: 1px solid #d6d3d0;
  cursor: pointer;
  border-radius: 0%;
  transition: all 300ms ease;
}

.checkout-area__checkbox-single label span:before {
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  content: "";
  background: #d6d3d0;
  border-radius: 0%;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checkout-area__checkbox-single input[type="checkbox"]:checked+label span {
  border-color: #d6d3d0;
}

.checkout-area__checkbox-single input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}


.checkout-area__sidebar {
  position: relative;
  display: block;
  margin-left: 45px;
}

.checkout-area__sidebar-single {
  position: relative;
  display: block;
  background: #f3f7fc;
  padding: 26px 20px 37px;
  margin-bottom: 30px;
}

.checkout-area__sidebar-single.mb0 {
  margin-bottom: 0;
  padding-bottom: 55px;
}

.checkout-area__sidebar-single .title {
  position: relative;
  display: block;
  border-bottom: 1px solid #e4e2e0;
  padding-bottom: 11px;
}

.checkout-area__sidebar-single .title h3 {
  color: var(--clenq-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.checkout-area__sidebar-single ul {
  position: relative;
  display: block;
}

.checkout-area__sidebar-single ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e2e0;
  padding-top: 24px;
  padding-bottom: 23px;
}

.checkout-area__sidebar-single ul li.bg {
  position: relative;
  z-index: 1;
}

.checkout-area__sidebar-single ul li.bg::before {
  position: absolute;
  top: -1px;
  left: -20px;
  bottom: -1px;
  right: -20px;
  background: #ffffff;
  content: "";
  z-index: -1;
}

.checkout-area__sidebar-single ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}


.checkout-area__sidebar-single ul li .text-box {
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-area__sidebar-single ul li .text-box .img-box {
  position: relative;
  display: block;
  margin-right: 15px;
  width: 50px;
  overflow: hidden;
  border-radius: 5px;
}

.checkout-area__sidebar-single ul li .text-box .img-box img {
  width: 100%;
}

.checkout-area__sidebar-single ul li .title-one {
  position: relative;
  display: block;
}

.checkout-area__sidebar-single ul li .title-one p {
  color: #080501;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.checkout-area__sidebar-single ul li .title-box {
  position: relative;
  display: block;
}

.checkout-area__sidebar-single ul li .title-box p {
  color: var(--clenq-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.checkout-area__sidebar-single ul li .title-box p span {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.checkout-area__sidebar-single ul li .price {
  position: relative;
  display: block;
  line-height: 0;
}

.checkout-area__sidebar-single ul li .price p {
  color: #080501;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.checkout-area__sidebar-single ul li .price .text1 {
  color: var(--clenq-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--clenq-font);
}

.checkout-area__sidebar-single ul li .price span {
  color: rgba(var(--clenq-black-rgb), 0.7);
  font-size: 14px;
  line-height: 20px;
}

.checkout-area__sidebar-single ul li .price a {
  position: relative;
  display: block;
  color: var(--clenq-black);
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  margin-top: 5px;
}

.checkout__payment {
  position: relative;
  display: block;
  margin-bottom: 10px;
  margin-top: 40px;
}

.checkout__payment__item {
  position: relative;
  display: block;
  border: 1px solid #232323;
  padding: 14px 20px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-bottom: 10px;
}

.checkout__payment__item--active.checkout__payment__item {
  border-color: var(--clenq-primary);
}

.checkout__payment__item.mb0 {
  margin-bottom: 0;
}

.checkout__payment__title {
  display: flex;
  color: var(--clenq-black);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  align-items: center;
  cursor: pointer;
  font-family: var(--clenq-font);
}

.checkout__payment__title::before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1px solid #0d0d0d;
  border-radius: 50%;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--clenq-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: transparent;
  border-color: var(--clenq-primary);
  content: '\f00c';
}

.checkout__payment__content {
  font-size: 15px;
  line-height: 25px;
  margin-top: 13px;
}

.checkout__payment__checkbox {
  position: relative;
  display: block;
  margin-top: 28px;
}

.checkout__payment__checkbox label {
  color: rgb(8, 5, 1, 0.87);
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  padding-left: 25px;
}

.checkout__payment-btn {
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
}

.checkout__payment-btn a {
  width: 100%;
  background: var(--clenq-primary);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/
body.boxed-wrapper {
  background-color: var(--gardon-primary);
}

.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.boxed-wrapper .main-header__search {
  display: none;
}

.boxed-wrapper .main-header__cart-box {
  display: none;
}