
:root {
  --servixa-font: "Inter", sans-serif;
  --servixa-gray: #585b6b;
  --servixa-gray-rgb: 88, 91, 107;
  --servixa-base: #d90202;
  --servixa-base-rgb: 217, 2, 2;
  --servixa-primary: #ebebeb;
  --servixa-primary-rgb: 235, 235, 235;
  --servixa-black: #111111;
  --servixa-black-rgb: 17, 17, 17;
  --servixa-white: #ffffff;
  --servixa-white-rgb: 255, 255, 255;
  --servixa-bdr-color: #e6e6e6;
  --servixa-bdr-color-rgb: 230, 230, 230;
  --servixa-bdr-radius: 10px;
}

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

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

body {
  font-family: var(--servixa-font);
  color: var(--servixa-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

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

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

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

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

h1,
h2,
h3,

h5,
h6 {
  font-family: "Roboto Condensed",sans-serif;
  color: var(--servixa-black);
  
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
}

h4 {
  font-family: "Roboto Condensed",sans-serif;
  
  color: #ffffff;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
}

p {
  margin: 0;
}

 

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

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

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

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

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

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

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



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

::-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;
}
.ph{
    
    color: white;
	margin-top: 10px;
	margin-bottom: 29px;
}

 .center{ text-align: center;
 
 }
/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--servixa-black);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateX(-100%);
  transition: background-color 0.7s ease;
  transition: all 0.5s ease;
}

.chat-popup.popup-visible {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner {
  position: relative;
  display: block;
  padding: 40px 35px;
  padding-top: 32px;
}

.chat-popup .close-chat {
  position: absolute;
  display: flex;
  left: 0px;
  top: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--servixa-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .70);
}

.chat-popup .chat-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .10);
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
  outline: none;
}

.chat-popup .chat-form .form-group button {
  border: none;
}

.chat-popup .chat-form .form-group .thm-btn::before,
.chat-popup .chat-form .form-group .thm-btn::after {
  background-color: var(--servixa-white);
}

.chat-popup .chat-form .form-group .thm-btn:hover {
  color: var(--servixa-base);
}

.chat-popup .chat-form .form-group .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}


.chat-icon {
  position: fixed;
  display: inline-block;
  left: 3px;
  bottom: 59px;
  z-index: 99;
}

.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--servixa-base);
  z-index: 1;
  border: none;
}

.chat-icon button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--servixa-base-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}



/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  transform: translateX(0%);
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--servixa-base);
  border-color: var(--servixa-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--servixa-white-rgb), .50);
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  background-color: var(--servixa-black);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: rgba(var(--servixa-white-rgb), 1);
  border: none;
  border-radius: 0;
  outline: none;
  transition: all 500ms ease;
  background-color: rgba(var(--servixa-white-rgb), .10);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::before,
.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::after {
  background-color: var(--servixa-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--servixa-black);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--servixa-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--servixa-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--servixa-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--servixa-white-rgb), .10);
  border-radius: 50%;
  color: var(--servixa-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--servixa-base);
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--servixa-white);
}


/*=============== scrollbar-Css =============*/

.xs-sidebar-widget {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.xs-sidebar-widget::-webkit-scrollbar {
  display: none;
}



.mobile-nav__content {
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  -ms-overflow-style: auto;
}

.mobile-nav__content::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav__content::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}

.mobile-nav__content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}




/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--servixa-base);
  -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(--servixa-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(--servixa-base);
  opacity: 0.4;
}

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




/*---------------------------------
     Preloader CSS
-----------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999;
}

.preloader {
  width: 60px;
  height: 60px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--servixa-base);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/*--- End of Preloader ---*/



/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--servixa-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--servixa-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--servixa-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}





/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

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

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--servixa-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--servixa-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
}




.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--servixa-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--servixa-black);
  text-align: center;
  font-size: 20px;
  color: var(--servixa-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: var(--servixa-primary);
  color: var(--servixa-black);
}

.search-popup input::placeholder {
  color: var(--servixa-black);
}


/* Section Title Css */
.section-title {
  position: relative;
  display: block;
  margin-top: -13px;
  margin-bottom: 48px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.section-title__tagline {
  position: relative;
  display: block;
  color: var(--servixa-base);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.5px;
}


.section-title__tagline-border {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border: 1px solid var(--servixa-base);
}

.section-title__shape-1 {
  position: absolute;
  right: -1px;
  top: -4px;
}

.section-title__shape-1>.section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--servixa-base);
}

.section-title__shape-2 {
  position: absolute;
  left: -1px;
  top: -4px;
}

.section-title__shape-2>.section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--servixa-base);
}

.section-title__title {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

.section-title__title span {
  color: var(--servixa-base);
}

.section-title__title .split-line {
  text-transform: none;
}




/* Thm Btn Css */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.thm-btn>span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--servixa-black);
  border-radius: 50%;
  color: var(--servixa-white);
  transition: all 0.5s linear;
}

.thm-btn:hover>span {
  background-color: var(--servixa-white);
  color: var(--servixa-base);
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--servixa-black);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}




.thm-btn::after {
  position: absolute;
  background-color: var(--servixa-black);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
  color: var(--servixa-white);
}


.thm-btn-two {
  border-radius: 30px;
}
















/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7.5px 55px 7.5px;
  z-index: 1;
}

.main-menu__top-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--servixa-white-rgb), .10);
  z-index: -1;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 2px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--servixa-white-rgb), .30);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 18px;
  color: var(--servixa-white);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-white);
  line-height: 16px;
}

.main-menu__contact-list li .text p a {
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--servixa-base);
}

.main-menu__top-welcome-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-white);
  text-transform: capitalize;
  line-height: 18px;
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-time {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-time-icon {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-time-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-white);
}

.main-menu__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-white);
  line-height: 16px;
  margin-left: 10px;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--servixa-white-rgb), .40);
  border-radius: 5px;
  font-size: 14px;
  color: var(--servixa-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--servixa-base);
  border: 1px solid var(--servixa-white);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--servixa-white);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu__social a+a {
  margin-left: 5px;
}

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

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

.main-menu__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--servixa-white-rgb), .10);
  z-index: -1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 55px;
}

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

.main-menu__logo {
  position: relative;
  display: block;
  padding: 15px 0;
  z-index: 1;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 18px 0;
}

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

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  color: var(--servixa-white);
  font-size: 18px;
  top: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--servixa-white);
  color: var(--servixa-black);
}

.main-menu__call-content {
  position: relative;
  display: block;
  top: 3px;
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-white);
  line-height: 16px;
  text-transform: capitalize;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 6px;
}

.main-menu__call-number a {
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--servixa-base);
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--servixa-base);
}

.main-menu__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--servixa-base);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
  margin-left: 10px;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 35px;
  height: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  background-color: var(--servixa-base);
  width: 25px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--servixa-white);
  margin-top: 6px;
  margin-bottom: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  background-color: var(--servixa-base);
  width: 35px;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  background-color: var(--servixa-base);
  width: 25px;
}

.main-menu__btn-box {
  position: relative;
  display: block;
}

.main-menu__btn-box .thm-btn::before,
.main-menu__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.main-menu__btn-box .thm-btn:hover {
  color: var(--servixa-base);
}

.main-menu__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}



.stricky-header.main-menu {
  background-color: var(--servixa-black);
}

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



@media (min-width: 1200px) {

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

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

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

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--servixa-white);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
}

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

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

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

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 56%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--servixa-white);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--servixa-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;
  background-color: var(--servixa-white);
  min-width: 300px;
  padding: 25px 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--servixa-bdr-radius);
  border-bottom-right-radius: var(--servixa-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

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

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

.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: 1px solid rgba(var(--servixa-black-rgb), 0.10);
  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;
  display: flex;
  align-items: center;
  color: rgba(var(--servixa-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 16px 0px 16px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.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 {
  color: rgba(var(--servixa-base-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--servixa-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
  margin-left: 20px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

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

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

.main-menu .mobile-nav__toggler:hover {
  color: var(--servixa-white);
}

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

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

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

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--servixa-white);
  cursor: pointer;
}

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

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

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

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

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--servixa-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(--servixa-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--servixa-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(--servixa-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

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

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

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

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

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

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

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

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

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

.mobile-nav__contact li {
  color: var(--servixa-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(--servixa-base);
}

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

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



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -25px;
  margin-bottom: -25px;
}

.home-showcase__inner {
  padding: 40px 42px 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  background-color: rgb(0, 0, 0, 0.10);
  padding: 1px;
  border-radius: var(--servixa-bdr-radius);
}

.home-showcase__image>img {
  width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 800ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0.70;
  z-index: 1;
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1.0;
  transform-origin: top center;
}

.home-showcase__buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -ms-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -moz-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -o-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #222222), color-stop(100, #222222));
  background-image: -webkit-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: linear-gradient(to right, #222222 0%, #222222 100%);

  opacity: 1;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  z-index: -1;
}

.home-showcase__image:hover .home-showcase__buttons::before {
  opacity: 0.90;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.home-showcase__buttons__item {
  padding: 5px 20px 5px;
  padding-right: 8px;
  width: 175px;
  justify-content: space-between;
  text-align: center;
  color: var(--servixa-white);
}

.home-showcase__buttons__item::before,
.home-showcase__buttons__item::after {
  background-color: var(--servixa-white);
}

.home-showcase__buttons__item:hover {
  color: var(--servixa-black);
}

.home-showcase__buttons__item:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: var(--servixa-black);
  margin-top: 18px;
  text-transform: capitalize;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--servixa-white, #ffffff);
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

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

.main-menu-two__top {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7.5px 55px 7.5px;
  background-color: var(--servixa-base);
  z-index: 1;
}

.main-menu-two__top-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--servixa-white-rgb), .10);
  z-index: -1;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li+li {
  margin-left: 46px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 2px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--servixa-white-rgb), .30);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 18px;
  color: var(--servixa-white);
  position: relative;
  display: inline-block;
}

.main-menu-two__contact-list li .text {
  margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-white);
  line-height: 16px;
}

.main-menu-two__contact-list li .text p a {
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--servixa-black);
}

.main-menu-two__top-welcome-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-white);
  text-transform: capitalize;
  line-height: 18px;
}

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

.main-menu-two__top-time {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time-icon {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-white);
}

.main-menu-two__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-white);
  line-height: 16px;
  margin-left: 10px;
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--servixa-white-rgb), .40);
  border-radius: 5px;
  font-size: 14px;
  color: var(--servixa-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--servixa-base);
  border: 1px solid var(--servixa-white);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--servixa-white);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-two__social a+a {
  margin-left: 5px;
}

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

.main-menu-two__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--servixa-white-rgb), .10);
  z-index: -1;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 55px;
}

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

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 15px 0;
  z-index: 1;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 18px 0;
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  color: var(--servixa-white);
  font-size: 18px;
  top: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-icon:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.main-menu-two__call-content {
  position: relative;
  display: block;
  top: 3px;
  margin-left: 10px;
}

.main-menu-two__call-sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-gray);
  line-height: 16px;
  text-transform: capitalize;
}

.main-menu-two__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 6px;
}

.main-menu-two__call-number a {
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--servixa-base);
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

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

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--servixa-base);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--servixa-base);
}

.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
  margin-left: 10px;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 35px;
  height: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  background-color: var(--servixa-base);
  width: 25px;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  background-color: var(--servixa-base);
  width: 35px;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  background-color: var(--servixa-base);
  width: 25px;
}

.main-menu-two__nav-sidebar-icon .icon-dots-menu-one,
.main-menu-two__nav-sidebar-icon .icon-dots-menu-two,
.main-menu-two__nav-sidebar-icon .icon-dots-menu-three {
  background-color: var(--servixa-black);
}

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

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--servixa-black);
}

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

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

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

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--servixa-base);
  z-index: 5;
}

.main-menu-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7.5px 0px 7.5px;
  z-index: 1;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__top-menu li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -10px;
  bottom: 6px;
  width: 1px;
  background-color: var(--servixa-white);
  transform: rotate(15deg);
}

.main-menu-three__top-menu li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li+li {
  margin-left: 46px;
}

.main-menu-three__contact-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--servixa-white-rgb), .40);
}

.main-menu-three__contact-list li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 16px;
  color: var(--servixa-white);
}

.main-menu-three__contact-list li .text {
  margin-left: 10px;
}

.main-menu-three__contact-list li .text p {
  font-size: 16px;
  color: var(--servixa-white);
}

.main-menu-three__contact-list li .text p a {
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--servixa-black);
}

.main-menu-three__top-text {
  color: var(--servixa-white);
}

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

.main-menu-three__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 19px;
  margin-right: 12px;
}

.main-menu-three__language-switcher::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: var(--servixa-white);
  content: "";
  opacity: .30;
}

.main-menu-three__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 12px;
}

.main-menu-three__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--servixa-white);
  font-size: 18px;
  line-height: 18px;
}

.main-menu-three__language-switcher .language-switcher {
  position: relative;
  display: block;
}

.main-menu-three__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 48px;
}

.main-menu-three__language-switcher .language-switcher form .select-box {
  position: relative;
  display: block;
}

.main-menu-three__language-switcher .nice-select {
  background-color: var(--servixa-base);
  border-radius: 0px;
  color: var(--servixa-white);
  font-size: 16px;
  font-weight: 600;
  height: 30px;
  line-height: 30px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--servixa-font);
}

.main-menu-three__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -6px;
  border-bottom: 1px solid var(--servixa-white);
  border-right: 1px solid var(--servixa-white);
}

.main-menu-three__language-switcher .nice-select .list {
  width: 65px;
  background-color: var(--servixa-base);
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--servixa-white-rgb), .20);
  border-radius: 5px;
  font-size: 14px;
  color: var(--servixa-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-three__social a:hover {
  color: var(--servixa-base);
  border: 1px solid var(--servixa-white);
}

.main-menu-three__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--servixa-white);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-three__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-three__social a+a {
  margin-left: 10px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--servixa-white-rgb), .15);
  z-index: -1;
}

.main-menu-three__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-three__left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__logo {
  display: block;
  padding: 15px 0;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__right-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 18px 0 18px;
}

.main-menu-three__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

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

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--servixa-base);
}

.main-menu-three__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-three__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart:hover {
  color: var(--servixa-base);
}


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

.main-menu-three__btn-box .thm-btn::before,
.main-menu-three__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.main-menu-three__btn-box .thm-btn:hover {
  color: var(--servixa-base);
}

.main-menu-three__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}



.stricky-header.main-menu-three {
  background-color: var(--servixa-black);
}

/*--------------------------------------------------------------
# End Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--servixa-black);
}

.main-slider__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1000ms ease-in;
  transition: transform 7000ms ease, opacity 1000ms ease-in, -webkit-transform 7000ms ease;
}

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

.main-slider .swiper-slide-active .main-slider__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider__img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px) scale(0.9);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(400px) scale(0.9);
  transform: perspective(400px) rotateY(0deg) translateX(400px) scale(0.9);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  visibility: hidden;
  -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__img img {
  width: auto;
  animation: leftRight 4s ease-in-out infinite;
}

.main-slider .swiper-slide-active .main-slider__img {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  -webkit-transition-delay: 2600ms;
  -moz-transition-delay: 2600ms;
  -ms-transition-delay: 2600ms;
  -o-transition-delay: 2600ms;
  transition-delay: 2600ms;
}


.main-slider__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 570px;
  height: 50%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 0%);
  mix-blend-mode: soft-light;
  -moz-transform: skew(0deg, 0deg) translateX(100%);
  -webkit-transform: skew(0deg, 0deg) translateX(100%);
  -o-transform: skew(0deg, 0deg) translateX(100%);
  -ms-transform: skew(0deg, 0deg) translateX(100%);
  transform: skew(0deg, 0deg) translateX(100%);
  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;
  z-index: -1;
}

.main-slider .swiper-slide-active .main-slider__shape-1,
.main-slider .swiper-slide-active .main-slider__shape-2,
.main-slider .swiper-slide-active .main-slider__shape-3,
.main-slider .swiper-slide-active .main-slider__shape-4 {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0);
  -webkit-transform: skew(0deg, 0deg) translate(0);
  -o-transform: skew(0deg, 0deg) translate(0);
  -ms-transform: skew(0deg, 0deg) translate(0);
  transform: skew(0deg, 0deg) translate(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 590px;
  height: 53%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 0%);
  mix-blend-mode: soft-light;
  -moz-transform: skew(0deg, 0deg) translateX(100%);
  -webkit-transform: skew(0deg, 0deg) translateX(100%);
  -o-transform: skew(0deg, 0deg) translateX(100%);
  -ms-transform: skew(0deg, 0deg) translateX(100%);
  transform: skew(0deg, 0deg) translateX(100%);
  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;
  z-index: -1;
}

.main-slider__shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 570px;
  height: 50%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  mix-blend-mode: soft-light;
  -moz-transform: skew(0deg, 0deg) translateX(100%);
  -webkit-transform: skew(0deg, 0deg) translateX(100%);
  -o-transform: skew(0deg, 0deg) translateX(100%);
  -ms-transform: skew(0deg, 0deg) translateX(100%);
  transform: skew(0deg, 0deg) translateX(100%);
  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;
  z-index: -1;
}

.main-slider__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 590px;
  height: 53%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  mix-blend-mode: soft-light;
  -moz-transform: skew(0deg, 0deg) translateX(100%);
  -webkit-transform: skew(0deg, 0deg) translateX(100%);
  -o-transform: skew(0deg, 0deg) translateX(100%);
  -ms-transform: skew(0deg, 0deg) translateX(100%);
  transform: skew(0deg, 0deg) translateX(100%);
  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;
  z-index: -1;
}

.main-slider__shape-5 {
  position: absolute;
  bottom: 45px;
  left: -85px;
  -moz-transform: skew(0deg, 0deg) translateX(-100%);
  -webkit-transform: skew(0deg, 0deg) translateX(-100%);
  -o-transform: skew(0deg, 0deg) translateX(-100%);
  -ms-transform: skew(0deg, 0deg) translateX(-100%);
  transform: skew(0deg, 0deg) translateX(-100%);
  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;
  z-index: -1;
}

.main-slider__shape-5 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.main-slider .swiper-slide-active .main-slider__shape-5 {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0);
  -webkit-transform: skew(0deg, 0deg) translate(0);
  -o-transform: skew(0deg, 0deg) translate(0);
  -ms-transform: skew(0deg, 0deg) translate(0);
  transform: skew(0deg, 0deg) translate(0);
  -webkit-transition-delay: 3200ms;
  -moz-transition-delay: 3200ms;
  -ms-transition-delay: 3200ms;
  -o-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.main-slider__shape-6 {
  position: absolute;
  bottom: 0;
  right: 0;
  -moz-transform: skew(0deg, 0deg) translateX(100%);
  -webkit-transform: skew(0deg, 0deg) translateX(100%);
  -o-transform: skew(0deg, 0deg) translateX(100%);
  -ms-transform: skew(0deg, 0deg) translateX(100%);
  transform: skew(0deg, 0deg) translateX(100%);
  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;
  z-index: -1;
}

.main-slider__shape-6 img {
  width: auto;
}

.main-slider .swiper-slide-active .main-slider__shape-6 {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0);
  -webkit-transform: skew(0deg, 0deg) translate(0);
  -o-transform: skew(0deg, 0deg) translate(0);
  -ms-transform: skew(0deg, 0deg) translate(0);
  transform: skew(0deg, 0deg) translate(0);
  -webkit-transition-delay: 3000ms;
  -moz-transition-delay: 3000ms;
  -ms-transition-delay: 3000ms;
  -o-transition-delay: 3000ms;
  transition-delay: 3000ms;
}

.main-slider .container {
  position: relative;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  padding-top: 206px;
  padding-bottom: 180px;
  z-index: 15;
}

.main-slider__sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--servixa-base);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

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

.main-slider__title {
  position: relative;
  font-size: 60px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 24px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider__title span {
  color: var(--servixa-base);
}

.main-slider .swiper-slide-active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--servixa-white-rgb), .70);
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 44px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider__btn-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider__btn-and-review-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: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
}

.main-slider__btn-box .thm-btn::before,
.main-slider__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.main-slider__btn-box .thm-btn:hover {
  color: var(--servixa-base);
}

.main-slider__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.main-slider__review-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-slider__review-box ul {
  position: relative;
  display: block;
}

.main-slider__review-box ul li {
  position: relative;
  display: block;
  float: left;
}

.main-slider__review-box ul li+li {
  margin-left: -20px;
}

.main-slider__review-box ul li .img-box {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--servixa-base);
}

.main-slider__review-box ul li .img-box img {
  width: 100%;
}

.main-slider__review-box .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
  flex: 1;
}

.main-slider__review-box .text-box h2 {
  color: var(--servixa-white);
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider__review-box .text-box p {
  color: var(--servixa-white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}


#main-slider-pagination {
  position: absolute;
  left: 60px;
  right: auto;
  top: 55%;
  bottom: 0;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  height: 80px;
  width: auto;
  z-index: 100;
}

#main-slider-pagination::before {
  position: absolute;
  top: -105px;
  left: 50%;
  width: 4px;
  height: 85px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
  transform: translateX(-50%);
  opacity: 0.3;
  content: "";
}

#main-slider-pagination::after {
  position: absolute;
  bottom: -105px;
  left: 50%;
  width: 4px;
  height: 85px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
  transform: translateX(-50%);
  opacity: 0.3;
  content: "";
}

#main-slider-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  background: rgba(var(--servixa-white-rgb), 0.4);
  border-radius: 50%;
  opacity: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(var(--servixa-white-rgb), 1);
}

#main-slider-pagination .swiper-pagination-bullet::before {
  position: absolute;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border: 1px solid rgba(var(--servixa-white-rgb), 0.4);
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#main-slider-pagination .swiper-pagination-bullet:hover {
  transform: scaleX(1.0);
  border: 1px solid rgba(var(--servixa-white-rgb), 1.0);
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-top: 25px;
}


/*--------------------------------------------------------------
  # Main Slider Two
  --------------------------------------------------------------*/
.main-slider-two-two {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--servixa-black);
}

.main-slider-two__bg-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1000ms ease-in;
  transition: transform 7000ms ease, opacity 1000ms ease-in, -webkit-transform 7000ms ease;
}

.main-slider-two__bg-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .95);
  z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider-two__img-box {
  position: absolute;
  bottom: 0;
  right: 95px;
}

.main-slider-two__man {
  position: absolute;
  bottom: 328px;
  right: 127px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(200px);
  transform: perspective(400px) rotateY(0deg) translateY(200px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  -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-two__man img {
  width: auto !important;
}

.main-slider-two .swiper-slide-active .main-slider-two__man {
  visibility: visible;
  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: 2800ms;
  -moz-transition-delay: 2800ms;
  -ms-transition-delay: 2800ms;
  -o-transition-delay: 2800ms;
  transition-delay: 2800ms;
}

.main-slider-two__img {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px) scale(0.9);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(400px) scale(0.9);
  transform: perspective(400px) rotateY(0deg) translateX(400px) scale(0.9);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  visibility: hidden;
  -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-two__img img {
  width: auto !important;
}

.main-slider-two .swiper-slide-active .main-slider-two__img {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  -webkit-transition-delay: 2400ms;
  -moz-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.main-slider-two__shape-1 {
  position: absolute;
  top: 0;
  right: 273px;
  opacity: .70;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-200px);
  transform: perspective(400px) rotateY(0deg) translateY(-200px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  -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: -1;
}

.main-slider-two__shape-1 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.main-slider-two .swiper-slide-active .main-slider-two__shape-1 {
  visibility: visible;
  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: 3200ms;
  -moz-transition-delay: 3200ms;
  -ms-transition-delay: 3200ms;
  -o-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.main-slider-two__shape-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: .60;
  z-index: -1;
}

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

.main-slider-two .container {
  position: relative;
  z-index: 30;
}

.main-slider-two__content {
  position: relative;
  display: block;
  padding-top: 162px;
  padding-bottom: 161px;
  z-index: 15;
}

.main-slider-two__content-inner {
  position: relative;
  display: block;
  padding-left: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  z-index: 1;
}

.main-slider-two__content-inner::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 10px;
  background: var(--servixa-base);
  border-bottom-left-radius: 15px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  content: "";
  -moz-transform: skew(0deg, 0deg) translateX(-100%);
  -webkit-transform: skew(0deg, 0deg) translateX(-100%);
  -o-transform: skew(0deg, 0deg) translateX(-100%);
  -ms-transform: skew(0deg, 0deg) translateX(-100%);
  transform: skew(0deg, 0deg) translateX(-100%);
  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-two .swiper-slide-active .main-slider-two__content-inner::before {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0);
  -webkit-transform: skew(0deg, 0deg) translate(0);
  -o-transform: skew(0deg, 0deg) translate(0);
  -ms-transform: skew(0deg, 0deg) translate(0);
  transform: skew(0deg, 0deg) translate(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-two__content-inner::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 375px;
  height: 10px;
  background: var(--servixa-base);
  border-bottom-left-radius: 15px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  content: "";
  -moz-transform: skew(0deg, 0deg) translateX(-100%);
  -webkit-transform: skew(0deg, 0deg) translateX(-100%);
  -o-transform: skew(0deg, 0deg) translateX(-100%);
  -ms-transform: skew(0deg, 0deg) translateX(-100%);
  transform: skew(0deg, 0deg) translateX(-100%);
  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-two .swiper-slide-active .main-slider-two__content-inner::after {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0);
  -webkit-transform: skew(0deg, 0deg) translate(0);
  -o-transform: skew(0deg, 0deg) translate(0);
  -ms-transform: skew(0deg, 0deg) translate(0);
  transform: skew(0deg, 0deg) translate(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-two__sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--servixa-white);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

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

.main-slider-two__title {
  position: relative;
  font-size: 60px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 24px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two__title span {
  color: var(--servixa-base);
}

.main-slider-two .swiper-slide-active .main-slider-two__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider-two__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--servixa-white-rgb), .70);
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 44px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .main-slider-two__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-two__btn-and-video-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__btn-and-video-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: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

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

.main-slider-two__btn-box .thm-btn::before,
.main-slider-two__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.main-slider-two__btn-box .thm-btn:hover {
  color: var(--servixa-base);
}

.main-slider-two__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}


.main-slider-two__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
}

.main-slider-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--servixa-white);
  background-color: rgba(var(--servixa-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

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

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

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

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

.main-slider-two__video-title {
  font-size: 20px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 1em;
}

.main-slider-two #main-slider-pagination {
  top: 50%;
}

/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  padding: 324px 0 184px;
  background-color: var(--servixa-black);
  overflow: hidden;
  z-index: 5;
}

.banner-one__bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.banner-one__shape-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -115px;
  width: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .90;
  z-index: -1;
}

.banner-one__shape-4 {
  position: absolute;
  top: 160px;
  right: 30px;
  z-index: -1;
}

.banner-one__shape-4 img {
  width: auto;
}

.banner-one__shape-5 {
  position: absolute;
  bottom: 125px;
  right: 70px;
  z-index: -1;
}

.banner-one__shape-5 img {
  width: auto;
}

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

.banner-one__left {
  position: relative;
  display: block;
  margin-right: -50px;
  z-index: 3;
}

.banner-one__title-box {
  position: relative;
  display: block;
}

.banner-one__sub-title {
  position: relative;
  display: block;
}

.banner-one__sub-title p {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--servixa-white);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
}

.banner-one__title {
  position: relative;
  font-size: 60px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 24px;
}

.banner-one__title span {
  color: var(--servixa-base);
}

.banner-one__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--servixa-white-rgb), .70);
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 44px;
}

.banner-one__thm-and-other-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.banner-one__btn-box {
  position: relative;
  display: block;
}

.banner-one__btn-box .thm-btn::before,
.banner-one__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.banner-one__btn-box .thm-btn:hover {
  color: var(--servixa-base);
}

.banner-one__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}


.banner-one__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
}

.banner-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--servixa-white);
  background-color: rgba(var(--servixa-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.banner-one__video-icon:hover {
  background-color: var(--servixa-white);
  color: var(--servixa-base);
}

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

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

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

.banner-one__video-title {
  font-size: 20px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 1em;
}

.banner-one__right {
  position: absolute;
  bottom: -185px;
  right: 0;
}

.banner-one__img-box {
  position: relative;
  display: block;
}

.banner-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.banner-one__img>img {
  width: 100%;
  animation: topBottom 3s ease-in-out infinite;
}

.banner-one__img-shape-box {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 552px;
  height: 552px;
  background: rgba(var(--servixa-base-rgb), .40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: -1;
}

.banner-one__img-shape-1 {
  position: relative;
  width: 451px;
  height: 451px;
  background: rgba(var(--servixa-base-rgb), .40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-one__img-shape-2 {
  position: relative;
  width: 368px;
  height: 368px;
  background: rgba(var(--servixa-base-rgb), .40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-one__shape-1 {
  position: absolute;
  top: 51px;
  left: 0;
}

.banner-one__shape-1 img {
  width: auto
}

.banner-one__shape-2 {
  position: absolute;
  top: 126px;
  left: 0;
}

.banner-one__shape-2 img {
  width: auto
}

.banner-one__shape-3 {
  position: absolute;
  top: 32px;
  right: 0;
}

.banner-one__shape-3 img {
  width: auto
}

.banner-one__client-review {
  position: absolute;
  background-color: var(--servixa-white);
  border-radius: 16px;
  padding: 25px 15px 25px;
  max-width: 200px;
  width: 100%;
  bottom: 80px;
  left: -170px;
}

.banner-one__client-review-img {
  position: absolute;
  top: -16px;
  right: -12px;
  max-width: 56px;
  border-radius: 50%;
}

.banner-one__client-review-img img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--servixa-base);
}

.banner-one__client-review-text {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.banner-one__client-review-text h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
}

.banner-one__client-review-client-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.banner-one__client-review-client-name {
  font-size: 16px;
  color: var(--servixa-gray);
  font-weight: 600;
  line-height: 16px;
}

.banner-one__client-review-star {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
}

.banner-one__client-review-star span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--servixa-base);
}

.banner-one__happy-customer {
  position: absolute;
  background-color: var(--servixa-white);
  border-radius: 12px;
  padding: 15px 15px 15px;
  max-width: 200px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  top: 100px;
  right: -110px;
  animation: leftRight 4s ease-in-out infinite;
}

.banner-one__happy-customer-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-one__happy-customer-list li+li {
  margin-left: -10px;
}

.banner-one__happy-customer-img {
  position: relative;
  display: block;
  max-width: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.banner-one__happy-customer-img img {
  width: 100%;
  border-radius: 50%;
  border: 1px solid var(--servixa-base);
}

.banner-one__happy-customer-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  z-index: -1;
}

.banner-one__happy-customer-count-box {
  position: relative;
  display: block;
  margin-top: 15px;
}

.banner-one__happy-customer-count-box-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.banner-one__happy-customer-count-box-inner p {
  font-size: 30px;
  color: var(--servixa-base);
  font-weight: 700;
  line-height: 30px;
}

.banner-one__happy-customer-count-box-inner span {
  font-size: 30px;
  color: var(--servixa-base);
  font-weight: 700;
  line-height: 30px;
}

.banner-one__happy-customer-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-black);
  margin-top: 3px;
}

/*==============================================
    About One
===============================================*/
.about-one {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  z-index: 1;
}

.about-one__shape-1 {
  position: absolute;
  top: 255px;
  right: -30px;
  opacity: .03;
  z-index: -1;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__shape-2 {
  position: absolute;
  top: 160px;
  left: -189px;
  opacity: .20;
  z-index: -1;
}

.about-one__shape-2 img {
  width: auto;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 175px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  right: -205px;
  border-left: 153px solid var(--servixa-base);
  border-right: 50px solid transparent;
  border-top: 310px solid transparent;
  z-index: -1;
}

.about-one__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  border-top-right-radius: 0;
}

.about-one__video-link {
  position: absolute;
  top: 125px;
  right: -125px;
  z-index: 3;
}

.about-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 20px;
  color: var(--servixa-black);
  background-color: rgba(var(--servixa-white-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-one__video-icon:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

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

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

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

.about-one__img-two {
  position: absolute;
  bottom: -160px;
  right: -155px;
  z-index: 1;
}

.about-one__img-two:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: 0;
  right: 158px;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  border-top-right-radius: 0;
  z-index: -1;
}

.about-one__img-two:after {
  content: "";
  position: absolute;
  top: -15px;
  right: 0px;
  background-color: #f31e1e;
  height: 15px;
  width: 153px;
  z-index: -1;
  border-top-right-radius: 5px;
}

.about-one__img-two img {
  width: auto;
  border-radius: var(--servixa-bdr-radius);
  border-top-right-radius: 0;
}

.about-one__experience-box {
  position: absolute;
  bottom: -159px;
  left: 0;
  background-color: var(--servixa-base);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px 28px 40px;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.about-one__experience-count {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__experience-count h3 {
  font-size: 50px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 50px !important;
  font-family: var(--servixa-font) !important;
}

.about-one__experience-count span {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: var(--servixa-white);
  font-family: var(--servixa-font);
}

.about-one__experience-count-text {
  color: var(--servixa-white);
  font-weight: 500;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}

.about-one__right .section-title {
  margin-bottom: 24px;
}

.about-one__point-box {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 31px;
}

.about-one__point {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-one__point li {
  position: relative;
  display: flex;
  max-width: 320px;
  width: 100%;
  gap: 15px;
}

.about-one__point-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 75px;
  background-color: var(--servixa-base);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  transition: all 500ms ease;
  z-index: 1;
}

.about-one__point li:hover .about-one__point-icon {
  background-color: var(--servixa-black);
}

.about-one__point-icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.about-one__point li:hover .about-one__point-icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }

  33.3% {
    transform: translateX(-3px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.about-one__point-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__point-content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 8px;
}

.about-one__point-content p {
  font-size: 15px;
  line-height: 22px;
}

.about-one__point-two-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-one__point-two {
  position: relative;
  display: block;
  max-width: 315px;
  width: 100%;
}

.about-one__point-two li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-one__point-two li+li {
  margin-top: 9px;
}

.about-one__point-two li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-color: var(--servixa-base);
  border-radius: 50%;
}

.about-one__point-two li .icon span {
  position: relative;
  display: inline-block;
  font-size: 10px;
  color: var(--servixa-white);
}

.about-one__point-two li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__review-box {
  position: relative;
  display: block;
}

.about-one__review-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-one__review-list li {
  position: relative;
  display: block;
}

.about-one__review-list li+li {
  margin-left: -15px;
}

.about-one__review-img {
  position: relative;
  display: block;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  background-color: var(--servixa-white);
}

.about-one__review-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--servixa-white);
}

.about-one__review-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.about-one__review-star span {
  font-size: 15px;
  color: var(--servixa-base);
  position: relative;
  display: inline-block;
}

.about-one__review-text {
  font-weight: 500;
  color: var(--servixa-gray);
}

.about-one__btn-and-author-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
}

.about-one__btn-box {
  position: relative;
  display: block;
}

.about-one__author-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-one__author-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.about-one__author-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border: 4px solid var(--servixa-base);
  border-radius: 50%;
}

.about-one__author-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  overflow: hidden;
}

.about-one__author-img img {
  width: 100%;
  border-radius: 50%;
}

.about-one__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__author-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 6px;
}

.about-one__author-sign {
  position: relative;
  display: block;
  margin-left: 25px;
  padding-left: 25px;
}

.about-one__author-sign:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background-color: var(--servixa-bdr-color);
}

.about-one__author-sign img {
  width: auto;
}

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

.about-two__shape-1 {
  position: absolute;
  bottom: 45px;
  right: -33px;
  opacity: .50;
  z-index: -1;
}

.about-two__shape-1 img {
  width: auto;
}

.about-two__shape-2 {
  position: absolute;
  top: 120px;
  left: -115px;
  z-index: -1;
}

.about-two__shape-2 img {
  width: auto;
  filter: sepia(1);
  opacity: .10;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 150px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: -192px;
  border-left: 135px solid var(--servixa-base);
  border-right: 46px solid transparent;
  border-top: 290px solid transparent;
  border-radius: var(--servixa-bdr-radius);
  z-index: -1;
}

.about-two__img-box::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  border-left: 126px solid var(--servixa-base);
  border-right: 28px solid transparent;
  border-top: 166px solid transparent;
  border-radius: var(--servixa-bdr-radius);
  z-index: -1;
}

.about-two__img {
  position: relative;
  display: block;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.about-two__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.about-two__img-2 {
  position: absolute;
  right: -150px;
  bottom: -80px;
}

.about-two__img-2 img {
  width: auto;
  border-radius: var(--servixa-bdr-radius);
}

.about-two__experience-box {
  position: absolute;
  bottom: -80px;
  left: 124px;
  background-color: var(--servixa-base);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 28px 20px;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.about-two__experience-count {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__experience-count h3 {
  font-size: 27px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 27px !important;
  font-family: var(--servixa-font) !important;
}

.about-two__experience-count span {
  font-size: 27px;
  font-weight: 700;
  line-height: 27px;
  color: var(--servixa-white);
  font-family: var(--servixa-font);
}

.about-two__experience-count-text {
  color: var(--servixa-white);
  font-weight: 500;
}

.about-two__video-link {
  position: absolute;
  top: 125px;
  right: -125px;
  z-index: 3;
}

.about-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 20px;
  color: var(--servixa-black);
  background-color: rgba(var(--servixa-white-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-two__video-icon:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

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

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

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

.about-two__right {
  position: relative;
  display: block;
  margin-left: 50px;
}

.about-two__right .section-title {
  margin-bottom: 20px;
}

.about-two__points-box {
  position: relative;
  display: block;
  margin: 20px 0 20px;
}

.about-two__points-box li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-two__points-box li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--servixa-black);
  border-radius: var(--servixa-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.about-two__points-box li .icon::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: var(--servixa-base);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.about-two__points-box li:hover .icon::before {
  top: -40%;
}

.about-two__points-box li .icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-two__points-box li:hover .icon span {
  transform: scale(0.9);
  color: var(--servixa-white);
}

.about-two__points-box li .content {
  position: relative;
  display: block;
  flex: 1;
}

.about-two__points-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 6px;
}

.about-two__points-box li+li {
  margin-top: 15px;
}

.about-two__text-2 {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--servixa-base);
}

.about-two__btn-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 23px;
}

.about-two__btn-box {
  position: relative;
  display: block;
}

.about-two__review-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-two__review-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-two__review-list li {
  position: relative;
  display: block;
}

.about-two__review-list li+li {
  margin-left: -15px;
}

.about-two__review-img {
  position: relative;
  display: block;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  background-color: var(--servixa-white);
}

.about-two__review-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--servixa-white);
}

.about-two__review-star-and-text {
  position: relative;
  display: block;
}

.about-two__review-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.about-two__review-star span {
  font-size: 15px;
  color: var(--servixa-base);
  position: relative;
  display: inline-block;
}

.about-two__review-text {
  font-weight: 500;
  color: var(--servixa-gray);
}

/*==============================================
    About Three
===============================================*/
.about-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.about-three__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.about-three__shape-1 img {
  width: auto;
}

.about-three__left {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-right: 50px;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  bottom: 0;
  background-color: var(--servixa-base);
  border-radius: 10px;
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.about-three__img:after {
  content: "";
  position: absolute;
  top: 120px;
  left: -60px;
  width: 20px;
  bottom: 0;
  background-color: var(--servixa-base);
  border-radius: 10px;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  z-index: -1;
}

.about-three__img img {
  width: 100%;
  border-radius: 10px;
}

.about-three__img-two {
  position: absolute;
  bottom: -124px;
  left: -100px;
  z-index: 2;
}

.about-three__img-two:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: -10px;
  bottom: 0;
  background-color: var(--servixa-white);
  border-radius: 10px;
  z-index: -1;
}

.about-three__img-two img {
  width: auto;
  border-radius: 10px;
}

.about-three__video-and-experience-box {
  position: absolute;
  bottom: -124px;
  left: 135px;
  right: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--servixa-base);
  border-radius: 10px;
  padding: 18px 20px 18px;
  z-index: 3;
}

.about-three__video-link {
  position: relative;
  display: block;
}

.about-three__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 20px;
  color: var(--servixa-black);
  background-color: rgba(var(--servixa-white-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-three__video-icon:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.about-three__video-link .ripple,
.about-three__video-icon .ripple:before,
.about-three__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

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

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

.about-three__experience-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
}

.about-three__experience-count {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__experience-count h3 {
  font-size: 50px;
  color: var(--servixa-white);
  font-weight: 700;
  line-height: 50px !important;
  font-family: var(--servixa-font) !important;
}

.about-three__experience-count span {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: var(--servixa-white);
  font-family: var(--servixa-font);
}

.about-three__experience-count-text {
  color: var(--servixa-white);
  font-weight: 500;
}

.about-three__right {
  position: relative;
  display: block;
  margin-right: -70px;
}

.about-three__right .section-title {
  margin-bottom: 20px;
}

.about-three__progress-box-outer {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 32px;
  margin-bottom: 37px;
}

.about-three__progress-single {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__progress-box {
  position: relative;
  display: inline-block;
  height: 100px;
}

.about-three__progress-box canvas {
  transform: rotate(72deg);
}

.about-three__progress-box .about-three__pack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.about-three__progress-box .about-three__pack p {
  font-size: 20px;
  font-weight: 700;
  color: var(--servixa-black);
  line-height: 20px;
}

.about-three__progress-box .about-three__pack span {
  font-size: 20px;
  font-weight: 700;
  color: var(--servixa-black);
  line-height: 20px;
}

.about-three__progress-content {
  margin-left: 25px;
}

.about-three__progress-content p {
  font-size: 22px;
  color: var(--servixa-black);
  font-weight: 700;
  line-height: 30px;
}

.about-three__points-and-founder-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-three__point-two {
  position: relative;
  display: block;
  max-width: 315px;
  width: 100%;
}

.about-three__point-two li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-three__point-two li+li {
  margin-top: 9px;
}

.about-three__point-two li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-color: var(--servixa-base);
  border-radius: 50%;
}

.about-three__point-two li .icon span {
  position: relative;
  display: inline-block;
  font-size: 10px;
  color: var(--servixa-white);
}

.about-three__point-two li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-three__author-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background-color: var(--servixa-primary);
  padding: 20px 30px 20px;
  border-radius: var(--servixa-bdr-radius);
}

.about-three__author-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border: 4px solid var(--servixa-base);
  border-radius: 50%;
}

.about-three__author-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  overflow: hidden;
}

.about-three__author-img img {
  width: 100%;
  border-radius: 50%;
}

.about-three__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-three__author-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 6px;
}

.about-three__btn-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 23px;
}

.about-three__btn-box {
  position: relative;
  display: block;
}

.about-three__review-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-three__review-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-three__review-list li {
  position: relative;
  display: block;
}

.about-three__review-list li+li {
  margin-left: -15px;
}

.about-three__review-img {
  position: relative;
  display: block;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  background-color: var(--servixa-white);
}

.about-three__review-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--servixa-white);
}

.about-three__review-star-and-text {
  position: relative;
  display: block;
}

.about-three__review-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.about-three__review-star span {
  font-size: 15px;
  color: var(--servixa-base);
  position: relative;
  display: inline-block;
}

.about-three__review-text {
  font-weight: 500;
  color: var(--servixa-gray);
}

/*--------------------------------------------------------------
# Appointment Two
--------------------------------------------------------------*/
.appointment-one {
  position: relative;
  display: block;
  padding: 90px 0 120px;
  z-index: 1;
}

.appointment-one__inner {
  position: relative;
  display: block;
  background-color: rgba(var(--servixa-base-rgb), 10);
  border-radius: var(--servixa-bdr-radius);
  padding: 60px 60px 60px;
  z-index: 1;
}

.appointment-one__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .25;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  z-index: -1;
}

.appointment-one__img {
  position: absolute;
  bottom: 0;
  left: 55px;
  animation: leftRight 4s ease-in-out infinite;
}

.appointment-one__img img {
  width: auto;
}

.appointment-one__right {
  position: relative;
  display: block;
  margin-left: 50px;
}

.appointment-one__right .section-title {
  margin-bottom: 28px;
}

.appointment-one__right .section-title__tagline {
  color: var(--servixa-white);
}

.appointment-one__right .section-title__tagline-border {
  border: 1px solid var(--servixa-white);
}

.appointment-one__right .section-title__shape-1>.section-title__circle {
  background-color: var(--servixa-white);
}

.appointment-one__right .section-title__shape-2>.section-title__circle {
  background-color: var(--servixa-white);
}

.appointment-one__right .section-title__title {
  margin-right: -100px;
  color: var(--servixa-white);
}

.appointment-one__form {
  position: relative;
  display: block;
}

.appointment-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.appointment-one__input-box input[type="text"],
.appointment-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--servixa-white-rgb), .50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-white);
  display: block;
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
}

.appointment-one__input-box-icon {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.appointment-one__input-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-white);
}

.appointment-one__input-box .select-box {
  width: 100%;
}

.appointment-one__input-box .nice-select {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--servixa-white-rgb), .50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-white);
  display: block;
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
  line-height: 60px;
  float: none;
}

.appointment-one__input-box .nice-select:after {
  position: absolute;
  top: 24px;
  right: 20px;
  border-bottom: 4px solid var(--servixa-white);
  border-right: 4px solid var(--servixa-white);
  margin-top: 0px;
  z-index: 10;
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
}

.appointment-one__input-box.nice-select .option {
  color: var(--servixa-white);
}

.appointment-one__btn-box {
  position: relative;
  display: block;
}

.appointment-one__btn-box .thm-btn {
  border: none;
  background-color: var(--servixa-black);
}

.appointment-one__btn-box .thm-btn>span {
  background-color: var(--servixa-base);
}

.appointment-one__btn-box .thm-btn::before,
.appointment-one__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.appointment-one__btn-box .thm-btn:hover {
  color: var(--servixa-black);
}

.appointment-one__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

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

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

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

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--servixa-black) !important;
  background: var(--servixa-black) !important;
  color: var(--servixa-white) !important;
}

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

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

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

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: var(--servixa-white);
  border: none;
}

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

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

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: var(--servixa-black);
  color: var(--servixa-white);
  border-color: var(--servixa-black);
}

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

/*--------------------------------------------------------------
# Appointment Two
--------------------------------------------------------------*/
.appointment-two {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.appointment-two__bg-color {
  position: absolute;
  height: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--servixa-black);
  z-index: -1;
}

.appointment-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .30;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.appointment-two__left {
  position: relative;
  display: block;
  padding: 50px 50px 0px;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
  border-bottom-right-radius: 0;
  z-index: 1;
}

.appointment-two__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .15;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--servixa-bdr-radius);
 
  border-bottom-right-radius: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.appointment-two__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
 
  border-bottom-right-radius: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.appointment-two__left .section-title {
  margin-bottom: 28px;
}

.appointment-two__left .section-title__tagline {
  color: var(--servixa-white);
}

.appointment-two__left .section-title__tagline-border {
  border: 1px solid var(--servixa-white);
}

.appointment-two__left .section-title__shape-1>.section-title__circle {
  background-color: var(--servixa-white);
}

.appointment-two__left .section-title__shape-2>.section-title__circle {
  background-color: var(--servixa-white);
}

.appointment-two__left .section-title__title {
  margin-right: -100px;
  color: var(--servixa-white);
}

.appointment-two__form {
  position: relative;
  display: block;
}

.appointment-two__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.appointment-two__input-box input[type="text"],
.appointment-two__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--servixa-white-rgb), .50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-white);
  display: block;
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
}

.appointment-two__input-box-icon {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.appointment-two__input-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-white);
}

.appointment-two__input-box .select-box {
  width: 100%;
}

.appointment-two__input-box .nice-select {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--servixa-white-rgb), .50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-white);
  display: block;
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
  line-height: 60px;
  float: none;
}

.appointment-two__input-box .nice-select:after {
  position: absolute;
  top: 24px;
  right: 20px;
  border-bottom: 4px solid var(--servixa-white);
  border-right: 4px solid var(--servixa-white);
  margin-top: 0px;
  z-index: 10;
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
}

.appointment-two__input-box.nice-select .option {
  color: var(--servixa-white);
}


.appointment-two__input-box textarea {
  font-size: 16px;
  color: var(--servixa-white);
  height: 150px;
  width: 100%;
  padding: 15px 20px 30px;
  border: 1px solid rgba(var(--servixa-white-rgb), .50);
  background-color: transparent;
  border-radius: var(--servixa-bdr-radius);
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.appointment-two__input-box.text-message-box {
  height: 150px;
}

.appointment-two__btn-box {
  position: relative;
  display: block;
  margin-left: -50px;
}

.appointment-two__btn-box .thm-btn {
  border: none;
}

.appointment-two__btn-box .thm-btn:hover {
  color: var(--servixa-black);
}

.appointment-two__btn-box .thm-btn::before,
.appointment-two__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.appointment-two__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.appointment-two__right {
  position: relative;
  display: block;
}

.appointment-two__shape-1 {
  position: absolute;
  top: -50px;
  left: -30px;
}

.appointment-two__shape-1 img {
  width: auto;
}

.appointment-two__contact-info {
  position: relative;
  display: block;
  margin-left: -30px;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  padding: 31px 40px 33px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-top: 298px;
  background-color: rgb(255, 255, 255);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  z-index: 1;
}

.appointment-two__contact-info-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.appointment-two__contact-info-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.appointment-two__contact-info-text {
  margin: 10px 0 20px;
}

.appointment-two__contact-info-list {
  position: relative;
  display: block;
}

.appointment-two__contact-info-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.appointment-two__contact-info-list li .icon {
  position: relative;
  display: inline-block;
}

.appointment-two__contact-info-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-base);
  font-weight: 700;
}

.appointment-two__contact-info-list li .content {
  position: relative;
  display: block;
}

.appointment-two__contact-info-list li .content p {
  color: var(--servixa-gray);
  font-weight: 500;
}

.appointment-two__contact-info-list li .content p a {
  color: var(--servixa-gray);
}

.appointment-two__contact-info-list li .content p a:hover {
  color: var(--servixa-base);
}

.appointment-two__contact-info-list li+li {
  margin-top: 10px;
}

.appointment-two__btn-box-two {
  position: absolute;
  bottom: 0;
  right: 0;
}

.appointment-two__btn-box-two .thm-btn {
  border: none;
}

.appointment-two__btn-box-two .thm-btn:hover {
  color: var(--servixa-black);
}

.appointment-two__btn-box-two .thm-btn::before,
.appointment-two__btn-box-two .thm-btn::after {
  background-color: var(--servixa-white);
}

.appointment-two__btn-box-two .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.appointment-two__img-1 {
  position: absolute;
  top: -303px;
  left: 15px;
  animation: topBottom 3s ease-in-out infinite;
}

.appointment-two__img-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.contact-page__top-img {
  position: relative;
  display: block;
}

.contact-page__top-img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.contact-page__middle {
  position: relative;
  display: block;
  margin-top: 50px;
  margin-bottom: 115px;
}

.contact-page__middle-left {
  position: relative;
  display: block;
}

.contact-page__middle-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.contact-page__middle-text {
  margin-top: 14px;
}

.contact-page__contact-info {
  position: relative;
  display: block;
  margin-top: 29px;
  margin-bottom: 26px;
}

.contact-page__contact-info-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--servixa-base);
  margin-bottom: 18px;
}

.contact-page__contact-list {
  position: relative;
  display: block;
}

.contact-page__contact-list li {
  position: relative;
  display: block;
}

.contact-page__contact-list li+li {
  margin-top: 19px;
}

.contact-page__contact-list-title {
  font-size: 18px;
  font-weight: 700;
}

.contact-page__contact-list li p>a {
  color: var(--servixa-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li p>a:hover {
  color: var(--servixa-base);
}

.contact-page__contact-list li p>span {
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
}

.contact-page__contact-link {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.374em;
  color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-link:hover {
  color: var(--servixa-black);
}

.contact-page__middle-right {
  position: relative;
  display: block;
  margin-top: 10px;
}

.contact-page__google-map {
  position: relative;
  display: block;
  border: none;
  height: 477px;
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.contact-page__bottom {
  position: relative;
  display: block;
}

.contact-page__form-box {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 50px 60px 60px;
  border-radius: var(--servixa-bdr-radius);
}

.comment-one__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.comment-one__text {
  font-size: 14px;
}

.contact-page__form {
  position: relative;
  display: block;
  margin-top: 34px;
}

.contact-page__form .row {
  --bs-gutter-x: 20px;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--servixa-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  color: var(--servixa-gray);
  display: block;
  border-radius: var(--servixa-bdr-radius);
}

.contact-page__input-box textarea {
  color: var(--servixa-gray);
  height: 150px;
  width: 100%;
  background-color: var(--servixa-white);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  border-radius: var(--servixa-bdr-radius);
}

.contact-page__btn {
  border: none;
}

.contact-page__input-box.text-message-box {
  height: 150px;
}

/***  =============================================
Before After
=============================================  ***/
.before-after {
  position: relative;
  display: block;
  padding: 90px 0 120px;
  z-index: 1;
}

.before-after__shape-1 {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: -1;
}

.before-after__shape-1 img {
  width: auto;
}

.before-after__left {
  position: relative;
  display: block;
  margin-right: -106px;
}

.before-and-after__img-box {
  position: relative;
  display: block;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.before-and-after__img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: var(--servixa-bdr-radius);
  background-color: var(--servixa-primary);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.before-and-after__img-box .before-after {
  position: relative;
}

.before-and-after__img-box .before-after .twentytwenty-container img {
  width: 100%;
}

.before-and-after__img-box .before-after .twentytwenty-horizontal .twentytwenty-before-label:before {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100px;
  height: 100px;
  line-height: 90px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--servixa-white);
  margin: 0px;
  padding: 0px;
  background: transparent;
  z-index: 1;
  transform: rotate(-45deg);
  text-transform: uppercase;
  display: none;
}

.before-and-after__img-box .before-after .twentytwenty-horizontal .twentytwenty-before-label:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.before-and-after__img-box .before-after .twentytwenty-horizontal .twentytwenty-after-label:before {
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 140px;
  text-align: center;
  font-size: 16px;
  background: transparent;
  font-weight: 700;
  color: var(--servixa-white);
  margin: 0px;
  padding: 0px;
  bottom: 0px;
  transform: rotate(-45deg);
  z-index: 1;
  text-transform: uppercase;
  display: none;
}

.before-and-after__img-box.before-after .twentytwenty-horizontal .twentytwenty-after-label:after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.twentytwenty-after-label,
.twentytwenty-before-label {
  opacity: 1 !important;
}

.before-and-after__img-box .twentytwenty-overlay {
  border-radius: 10px
}

.before-and-after__img-box .twentytwenty-horizontal .twentytwenty-before-label:before,
.before-and-after__img-box .twentytwenty-horizontal .twentytwenty-after-label:before {
  bottom: 0px;
  background-color: var(--servixa-base);
  border-radius: 5px;
  z-index: 100;

}

.before-and-after__img-box .twentytwenty-before-label:before,
.before-and-after__img-box .twentytwenty-after-label:before {
  padding: 0 19px;
}

.before-after__img {
  position: relative;
  display: block;
}

.before-after__right {
  position: relative;
  display: block;
  margin-left: 130px;
}

.before-after__right .section-title__title {
  margin-right: -100px;
}

.before-after__right .section-title {
  margin-bottom: 28px;
}

.before-after__text {
  font-style: italic;
  font-weight: 600;
  color: var(--servixa-base);
}

.before-after__text-2 {
  margin: 10px 0 25px;
}

.before-after__points {
  position: relative;
  display: block;
}

.before-after__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.before-after__points li+li {
  margin-top: 5px;
}

.before-after__points li .icon {
  position: relative;
  display: inline-block;
}

.before-after__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--servixa-base);
}

.before-after__points li h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.before-after__btn-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 33px;
}

.before-after__btn-box {
  position: relative;
  display: block;
}

.before-after__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.before-after__call-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.before-after__call-box .icon:hover {
  background-color: var(--servixa-black);
}

.before-after__call-box .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-white);
}

.before-after__call-box .content {
  position: relative;
  display: block;
  flex: 1;
}

.before-after__call-box .content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.before-after__call-box .content h4 a {
  color: var(--servixa-black);
}

.before-after__call-box .content h4 a:hover {
  color: var(--servixa-base);
}

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

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

.blog-one__single-inner {
  position: relative;
  display: block;
  background-color: var(--servixa-bdr-color);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  padding: 20px 20px 61px;
  border-radius: var(--servixa-bdr-radius);
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.blog-one__single-inner::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.blog-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-one__date {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--servixa-base);
  width: 52px;
  height: 50px;
  border-radius: var(--servixa-bdr-radius);
}

.blog-one__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
  line-height: 18px;
  color: var(--servixa-white);
  font-weight: 700;
}

.blog-one__date span {
  font-size: 14px;
  font-weight: 600;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
 
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.blog-two__img-box {
  position: relative;
  display: block;
}

.blog-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.blog-two__img:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 50%;
  height: 100%;
  background-color: rgba(var(--servixa-black-rgb), .70);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(100%);
  transform-origin: left;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}


.blog-two__single:hover .blog-two__img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-two__img:after {
  position: absolute;
  content: '';
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-color: rgba(var(--servixa-black-rgb), .70);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(-100%);
  transform-origin: top;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.blog-two__single:hover .blog-two__img:after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-two__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-two__plus {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) scale(0);
  transition: all 600ms ease;
  z-index: 3;
}

.blog-two__single:hover .blog-two__plus {
  transform: rotate(0deg) scale(1);
  transition-delay: 700ms;
}

.blog-two__plus a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--servixa-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__plus a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}

.blog-two__tag {
  position: absolute;
  bottom: 5px;
  right: 65px;
  z-index: 4;
}

.blog-two__tag a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--servixa-base);
  font-size: 16px;
  color: var(--servixa-white);
  font-weight: 600;
  padding: 7px 25px 10px;
  border-radius: var(--servixa-bdr-radius);
}

.blog-two__tag a:hover {
  background-color: var(--servixa-white);
  color: var(--servixa-base);
}

.blog-two__date {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--servixa-base);
  width: 54px;
  height: 52px;
  border-radius: var(--servixa-bdr-radius);
}

.blog-two__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
  line-height: 18px;
  color: var(--servixa-white);
  font-weight: 700;
}

.blog-two__date span {
  font-size: 14px;
  font-weight: 600;
}

.blog-two__content {
  position: relative;
  display: block;
  padding-top: 25px;
}

.blog-two__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-two__meta li {
  position: relative;
  display: block;
}

.blog-two__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--servixa-gray);
}

.blog-two__meta li a span {
  position: relative;
  font-size: 16px;
  color: var(--servixa-base);
}

.blog-two__meta li a:hover {
  color: var(--servixa-base);
}

.blog-two__title {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  margin-top: 17px;
  font-weight: 700;
}

.blog-two__title a {
  color: var(--servixa-black);
}

.blog-two__title a:hover {
  color: var(--servixa-base);
}

.blog-two__author-info {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.blog-two__author-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: var(--servixa-base);
  border-radius: 50%;
}

.blog-two__author-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.blog-two__author-img img {
  width: auto;
  border-radius: 50%;
}

.blog-two__author-content {
  position: relative;
  display: block;
  margin-left: 15px;
}

.blog-two__author-content h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.blog-two__author-content p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.blog-two__read-more {
  position: absolute;
  right: 75px;
  bottom: 18px;
  z-index: 2;
}

.blog-two__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: var(--servixa-black);
}

.blog-two__read-more a:hover {
  color: var(--servixa-base);
}

.blog-two__read-more a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--servixa-base);
  border-radius: 5px;
  font-size: 16px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__read-more a:hover span {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}


/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  padding: 90px 0 90px;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-page .blog-list__pagination {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-details__inner {
  position: relative;
  display: block;
  max-width: 1050px;
  margin: 0 auto 0;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img-box-1 {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.blog-details__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.blog-details__date {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 75px;
  background-color: var(--servixa-base);
  text-align: center;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.blog-details__date p {
  font-size: 35px;
  font-weight: 700;
  color: var(--servixa-white);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.blog-details__date p span {
  font-family: var(--servixa-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-white);
}


.blog-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-details__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--servixa-base);
  border-radius: 16px;
}

.blog-details__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--servixa-white);
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-details__meta li {
  position: relative;
  display: block;
}

.blog-details__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--servixa-gray);
}

.blog-details__meta li a:hover {
  color: var(--servixa-base);
}

.blog-details__meta li a span {
  color: var(--servixa-base);
}

.blog-details__title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 30px;
  line-height: 50px;
  margin-bottom: 19px;
  text-transform: capitalize;
}

.blog-details__text-2 {
  margin-top: 21px;
  margin-bottom: 40px;
}

.blog-details__author-box {
  position: relative;
  display: block;
  background-color: rgba(var(--servixa-base-rgb), .15);
  padding: 40px 40px 37px;
  border-radius: var(--servixa-bdr-radius);
}

.blog-details__author-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--servixa-black);
  margin-bottom: 30px;
}

.blog-details__author-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: right;
  color: var(--servixa-black);
}

.blog-details__author-name span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--servixa-font);
}

.blog-details__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 41px;
  margin-bottom: 19px;
  text-transform: capitalize;
}

.blog-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-box-img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.blog-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--servixa-primary);
  padding: 30px 30px 30px;
  margin-top: 30px;
  margin-bottom: 60px;
  border-radius: var(--servixa-bdr-radius);
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__tag-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
}

.blog-details__tag-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-details__tag-list li {
  position: relative;
  display: block;
}

.blog-details__tag-list li a {
  position: relative;
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  padding: 10px 15px 10px;
  text-transform: capitalize;
  border-radius: 5px;
}

.blog-details__tag-list li a:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.blog-details__share-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__share-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
}

.blog-details__share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details__share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--servixa-black);
  background-color: var(--servixa-white);
  border-radius: 50%;
}

.blog-details__share a:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.comment-one {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 40px 40px 40px;
  border-radius: var(--servixa-bdr-radius);
}

.comment-one__single {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--servixa-white);
  padding: 29px 29px 30px;
  border-radius: var(--servixa-bdr-radius);
}

.comment-one__single+.comment-one__single {
  margin-top: 30px;
}

.comment-one__image {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.comment-one__image img {
  width: 100%;
  border-radius: 50%;
}

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--servixa-black);
  margin-bottom: 3px;
}

.comment-one__content p {
  margin-top: 14px;
}

.comment-one__btn-box {
  position: absolute;
  top: 0px;
  right: 0px;
}

.comment-one__btn {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--servixa-black);
}

.comment-one__btn span {
  font-size: 11px;
  color: var(--servixa-base);
}

.comment-one__btn:hover {
  color: var(--servixa-base);
}

.comment-form {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 40px 40px 40px;
  margin-top: 60px;
  border-radius: var(--servixa-bdr-radius);
}

.comment-form__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.comment-form__text {
  margin-top: 10px;
  margin-bottom: 30px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: var(--servixa-white);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-gray);
  display: block;
  border-radius: var(--servixa-bdr-radius);
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--servixa-gray);
  height: 140px;
  width: 100%;
  background-color: var(--servixa-white);
  border: none;
  padding: 20px 20px 30px;
  outline: none;
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
}

.comment-form__input-box.text-message-box {
  height: 140px;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn-box .thm-btn {
  border: none;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
.blog-details__left-sidebar .blog-details__img {
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
}

.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 30px;
  background: var(--servixa-base);
  content: "";
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 50px 30px 50px;
  border-radius: var(--servixa-bdr-radius);
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 8px;
  border: 1px solid var(--servixa-bdr-color);
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--servixa-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--servixa-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 42px 30px 50px;
  border-radius: var(--servixa-bdr-radius);
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li+li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--servixa-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding: 15px 25px 16px;
  border-radius: 5px;
  background-color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--servixa-base);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
  transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
  color: var(--servixa-white);
}

.sidebar__category-list li.active a {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--servixa-black);
  font-size: 16px;
  font-weight: 600;
  background-color: rgba(var(--servixa-black-rgb), .15);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--servixa-font);
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, 0.3);
  color: var(--servixa-white);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: var(--servixa-primary);
  border-radius: var(--servixa-bdr-radius);
}

.sidebar__post-box {
  position: relative;
  display: block;
}

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single+.sidebar__post-single {
  margin-top: 27px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--servixa-black);
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
}

.sidebar-post__img::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--servixa-base-rgb), .80);
  border-radius: 2px;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.70;
  z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
  opacity: 1.0;
}

.sidebar-post__img img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  border-radius: var(--servixa-bdr-radius);
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  position: relative;
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.sidebar__post-content-box h3 a {
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
  color: var(--servixa-base);
}

.sidebar__contact {
  position: relative;
  display: block;
  padding: 50px 30px 50px;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.sidebar__contact-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: var(--servixa-bdr-radius);
  z-index: -1;
}

.sidebar__contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--servixa-black-rgb), 0.85);
  border-radius: var(--servixa-bdr-radius);
  content: "";
}

.sidebar__contact-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--servixa-base);
  border-radius: 50%;
  margin-bottom: 24px;
}

.sidebar__contact-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--servixa-white);
  font-size: 25px;
  line-height: 25px;
}

.sidebar__contact-text {
  position: relative;
  display: block;
}

.sidebar__contact-text p {
  color: var(--servixa-white);
}

.sidebar__contact-text h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-top: 5px;
}

.sidebar__contact-text h2 a {
  color: var(--servixa-white);
}

.sidebar__contact-text h2 a:hover {
  color: var(--servixa-base);
}

.sidebar__contact-btn {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 41px;
}

.sidebar__contact-btn .thm-btn:hover {
  color: var(--servixa-base);
}

.sidebar__contact-btn .thm-btn:hover>span {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}

.sidebar__contact-btn .thm-btn::after,
.sidebar__contact-btn .thm-btn::before {
  background-color: var(--servixa-white);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 41px 30px 40px;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  background: var(--servixa-white);
  padding: 6px 20px 8px;
  text-transform: capitalize;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: var(--servixa-white);
  background: var(--servixa-base);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-list__inner {
  position: relative;
  display: block;
  max-width: 850px;
  margin: 0 auto 0;
}

.blog-list__left {
  position: relative;
  display: block;
}

.blog-list__single {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.blog-list__img-box {
  position: relative;
  display: block;
}

.blog-list__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.blog-list__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-list__single:hover .blog-list__img:before {
  opacity: 0.2;
}

.blog-list__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
  border-radius: var(--servixa-bdr-radius);
  border-bottom-left-radius: 0;
}

.blog-list__single:hover .blog-list__img img {
  transform: scale(1.06) rotate(0deg);
}

.blog-list__date {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 75px;
  background-color: var(--servixa-base);
  text-align: center;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.blog-list__date p {
  font-size: 30px;
  font-weight: 700;
  color: var(--servixa-white);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.blog-list__date p span {
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-white);
}

.blog-list__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-list__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-list__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--servixa-base);
  border-radius: 16px;
}

.blog-list__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--servixa-font-two);
  color: var(--servixa-white);
}

.blog-list__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-list__meta li {
  position: relative;
  display: block;
}

.blog-list__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--servixa-gray);
}

.blog-list__meta li a:hover {
  color: var(--servixa-base);
}

.blog-list__meta li a span {
  color: var(--servixa-base);
}

.blog-list__title {
  font-size: 35px;
  font-weight: 700;
  margin-top: 30px;
  line-height: 1.3em;
  margin-bottom: 19px;
  text-transform: capitalize;
}

.blog-list__title a {
  color: var(--servixa-black);
}

.blog-list__title a:hover {
  color: var(--servixa-base);
}

.blog-list__btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.blog-list__pagination {
  position: relative;
  display: block;
  text-align: center;
}

.blog-list__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 10px;
}

.blog-list__pagination .pg-pagination li a {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  display: inline-block;
  color: var(--servixa-black);
  font-weight: 500;
  font-size: 18px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--servixa-bdr-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li:hover a,
.blog-list__pagination .pg-pagination li.active a {
  border: 1px solid var(--servixa-base);
  color: var(--servixa-black);
}

/*--------------------------------------------------------------
# Blog Left Sidebar
--------------------------------------------------------------*/
.blog-left-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-left-sidebar .blog-list__pagination {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Blog Right Sidebar
--------------------------------------------------------------*/
.blog-right-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-right-sidebar .blog-list__pagination {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Blog List Left
--------------------------------------------------------------*/
.blog-list__left .blog-list__img {
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}


/***
=============================================
Brand One
=============================================
***/
.brand-one {
  position: relative;
  display: block;
  margin-top: -20px;
  z-index: 2;
}

.brand-one__inner {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  border-radius: var(--servixa-bdr-radius);
  padding: 30px 30px 30px;
  border-top-right-radius: 0;
}

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

.brand-one__single-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.brand-one__single-inner a {
  position: relative;
  display: block;
}

.brand-one__single-inner img {
  width: auto;
}

/***
=============================================
Brand Two
=============================================
***/
.brand-two {
  margin-top: 0;
  background-color: var(--servixa-base);
}

.brand-two .brand-one__inner {
  background-color: var(--servixa-base);
  border-radius: 0;
}


/***
=============================================
Brand Three
=============================================
***/
.brand-three {
  margin-top: 0;
}




/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  background: linear-gradient(0deg, rgba(131, 58, 180, 0) 0%, rgba(217, 2, 2, 0.07) 50%, rgba(252, 176, 69, 0) 100%);
  z-index: 1;
}

.counter-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.counter-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin: 0 auto;
  background-color: var(--servixa-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.counter-one__single:hover .counter-one__icon {
  background-color: var(--servixa-black);
}

.counter-one__icon:before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background-color: rgba(var(--servixa-base-rgb), .30);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.counter-one__single:hover .counter-one__icon:before {
  background-color: var(--servixa-white);
  background-color: rgba(var(--servixa-black-rgb), .30);
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 48px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
  transform: scale(0.9);
  color: var(--servixa-white);
}

.counter-one__content {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  padding: 68px 30px 36px;
  border-radius: var(--servixa-bdr-radius);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.10);
  margin-top: -40px;
  z-index: 1;
}

.counter-one__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--servixa-base);
  border-radius: 15px;
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.counter-one__single:hover .counter-one__content::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

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

.counter-one__count h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px !important;
  color: var(--servixa-base);
  font-family: var(--servixa-font) !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__count h3 {
  color: var(--servixa-white);
}

.counter-one__count span {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__count span {
  color: var(--servixa-white);
}

.counter-one__count-text {
  font-size: 18px;
  color: var(--servixa-black);
  font-weight: 600;
  line-height: 28px;
  margin-top: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__count-text {
  color: var(--servixa-white);
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  padding-top: 80px;
  z-index: 2;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--servixa-black);
  border-radius: 18px;
  padding: 66px 50px 67px;
  overflow: hidden;
  margin-left: -1px;
  z-index: 1;
}

.cta-one__inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}


.cta-one__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--servixa-white);
  text-transform: capitalize;
}

.cta-one__from-box {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
}

.cta-one__form {
  position: relative;
  display: block;
}

.cta-one__input-box {
  position: relative;
  display: block;
}

.cta-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-gray);
  padding-right: 223px;
  padding-left: 25px;
  background-color: var(--servixa-white);
  border-radius: 30px;
}

.cta-one__input-box .thm-btn {
  border: none;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  padding-right: 6px;
}

.cta-one__input-box .thm-btn>span {
  height: 40px;
  width: 40px;
}


/*--------------------------------------------------------------
# CTA Two
--------------------------------------------------------------*/
.cta-two {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  margin-top: 190px;
  z-index: 1;
}

.cta-two__bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-two__inner {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.cta-two__left {
  position: relative;
  display: block;
}

.cta-two__img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.cta-two__img img {
  width: auto;
}

.cta-two__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: -15px;
  margin-top: 93px;
}

.cta-two__shape-1 {
  position: absolute;
  bottom: -72px;
  right: 275px;
}

.cta-two__shape-1 img {
  width: auto;
}

.cta-two__title {
  font-size: 65px;
  font-weight: 700;
  line-height: 75px;
  color: var(--servixa-white);
  text-transform: capitalize;
}

.cta-two__btn-and-call {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.cta-two__btn-box {
  position: relative;
  display: block;
}

.cta-two__btn-box .thm-btn::before,
.cta-two__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.cta-two__btn-box .thm-btn:hover span {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}

.cta-two__btn-box .thm-btn:hover {
  color: var(--servixa-black);
}

.cta-two__call-us {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.cta-two__call-us .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-two__call-us .icon:hover {
  background-color: var(--servixa-primary);
}

.cta-two__call-us .icon>span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cta-two__call-us .icon:hover span {
  color: var(--servixa-black);
}

.cta-two__call-us .content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.cta-two__call-us .content>span {
  color: var(--servixa-white);
}

.cta-two__call-us .content>p {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.cta-two__call-us .content>p>a {
  color: var(--servixa-white);
}

.cta-two__call-us .content>p>a:hover {
  color: var(--servixa-base);
}

/***=============================================
        CTA Three
=============================================***/
.cta-three {
  padding-top: 0;
}

/*==============================================
  Download App One
===============================================*/
.download-app-one {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  z-index: 1;
}

.download-app-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .15;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.download-app-one__inner {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.download-app-one__img-1 {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 1;
}

.download-app-one__img-1 img {
  width: auto;
}

.download-app-one__inner .section-title {
  margin-bottom: 32px;
}

.download-app-one__inner .section-title__tagline::after {
  background: var(--servixa-black);
}

.download-app-one__inner .section-title__title {
  color: var(--servixa-white);
}

.download-app-one__text {
  color: rgba(var(--servixa-white-rgb), .70);
}

.download-app-one__google-and-app-store {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.download-app-one__google-and-app-store a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--servixa-base);
  padding: 15px 30px 15px;
  border-radius: var(--servixa-bdr-radius);
}

/***
=============================================
Error Page
=============================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__img {
  position: relative;
  display: block;
}

.error-page__img img {
  width: auto;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.error-page__content h2 {
  color: var(--servixa-base);
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.error-page__content p {
  color: var(--servixa-black);
  margin: 0;
}

.error-page__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 21px;
}

/***  =============================================
Faq One
=============================================  ***/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

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

.faq-one__bg-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

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

.faq-one__left .section-title__title {
  margin-right: -50px;
}

.faq-one__left .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  background: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--servixa-black-rgb), .15);
  background: var(--servixa-white);
}

.faq-one__left .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 17px 25px 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__left .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--servixa-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.faq-one__left .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--servixa-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--servixa-base-rgb), 1);
}

.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--servixa-white);
  background-color: var(--servixa-black);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__left .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
}

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

.faq-one__right {
  position: relative;
  display: block;
  margin-left: 140px;
}

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

.faq-one__img {
  position: relative;
  display: block;
  max-width: 358px;
  width: 100%;
  margin: 0 auto;
}

.faq-one__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.faq-one__img-2 {
  position: absolute;
  bottom: -77px;
  left: -140px;
}

.faq-one__img-2 img {
  width: auto;
  border-radius: var(--servixa-bdr-radius);
}

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

.faq-two__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% - 132px) /2);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  border-top-left-radius: var(--servixa-bdr-radius);
  border-bottom-left-radius: var(--servixa-bdr-radius);
  z-index: -1;
}

.faq-two__right {
  position: relative;
  display: block;
  margin-left: 100px;
  padding: 50px 50px 0px;
  border-radius: var(--servixa-bdr-radius);
  margin-top: 50px;
  z-index: 1;
}

.faq-two__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.faw-two__appointment-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--servixa-white);
  margin-bottom: 25px;
}

.faq-two__right .appointment-two__input-box.text-message-box {
  height: 100px;
}

.faq-two__right .appointment-two__input-box textarea {
  height: 100px;
}

.faq-two__right .appointment-one__btn-box {
  margin-left: -50px;
}

.faq-two__right .appointment-one__btn-box .thm-btn {
  background-color: var(--servixa-base);
}

.faq-two__right .appointment-one__btn-box .thm-btn>span {
  background-color: var(--servixa-black);
}

/***  =============================================
FAQ Page
=============================================  ***/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 1;
}

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

.feature-one__single-inner {
  position: relative;
  display: block;
  border-bottom: 3px solid var(--servixa-base);
  background-color: var(--servixa-black);
  border-radius: var(--servixa-bdr-radius);
  padding: 40px 40px 37px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.feature-one__single-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .20;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.feature-one__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.feature-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--servixa-black);
  border-radius: var(--servixa-bdr-radius);
  font-size: 15px;
  color: var(--servixa-white);
}

.feature-one__single:hover .feature-one__arrow a {
  background-color: var(--servixa-base);
}

.feature-one__icon-and-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px dashed rgba(var(--servixa-white-rgb), .50);
  padding-bottom: 25px;
  margin-bottom: 20px;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.feature-one__title {
  position: relative;
  display: block;
  flex: 1;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  color: var(--servixa-white);
}

.feature-one__text {
  color: rgba(var(--servixa-white-rgb), .80);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
}

.feature-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.feature-two .section-title__title {
  color: var(--servixa-white);
}

.feature-two__carousel.owl-carousel .owl-stage-outer {
  padding-top: 10px;
}

.feature-two__single {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-two__single-inner {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  padding: 57px 15px 28px;
 
  border-radius: 10px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.feature-two__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: -1;
}

.feature-two__single:hover .feature-two__single-bg {
  opacity: 1;
  transform: translateY(0px);
}

.feature-two__single-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-base-rgb), .80);
  border-radius: 10px;
}

.feature-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin: 0 auto -40px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.feature-two__single:hover .feature-two__icon {
  background-color: var(--servixa-white);
}

.feature-two__icon:before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background-color: rgba(var(--servixa-base-rgb), .30);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.feature-two__single:hover .feature-two__icon:before {
  background-color: var(--servixa-white);
  background-color: rgba(var(--servixa-white-rgb), .30);
}

.feature-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-two__single:hover .feature-two__icon span {
  transform: scale(0.9);
  color: var(--servixa-base);
}

.feature-two__content {
  position: relative;
  display: block;
  margin-top: 25px;
}

.feature-two__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 12px;
}

.feature-two__title a {
  color: var(--servixa-black);
}

.feature-two__single:hover .feature-two__title a {
  color: var(--servixa-white);
}

.feature-two__text {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__text {
  color: rgba(var(--servixa-white-rgb), .80);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  margin-top: -234px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.site-footer__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.10;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 340px 0 95px;
}

.site-footer__top-inner {
  position: relative;
  display: block;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: 8px;
}

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

.footer-widget__about-text {
  color: rgba(var(--servixa-white-rgb), .80);
  margin-top: 29px;
  margin-bottom: 32px;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--servixa-white);
  border: 1px solid rgba(var(--servixa-white-rgb), .30);
  font-size: 16px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border: 1px solid var(--servixa-base);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--servixa-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 15px;
}

.footer-widget__quick-link {
  position: relative;
  display: block;
  margin-left: 68px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.footer-widget__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--servixa-white);
}

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

.footer-widget__quick-link-list li {
  position: relative;
  display: block;
}

.footer-widget__quick-link-list li+li {
  margin-top: 16px;
}

.footer-widget__quick-link-list li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--servixa-white-rgb), .80);
}

.footer-widget__quick-link-list li>a:hover {
  color: var(--servixa-base);
}

.footer-widget__quick-link-list li>a>span {
  font-size: 12px;
  margin-right: 12px;
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-left: -7px;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: -31px;
}

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

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.footer-widget__contact-list li+li {
  margin-top: 8px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: inline-block;
  top: 9px;
}

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

.footer-widget__contact-list li .content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.footer-widget__contact-list li .content>span {
  position: relative;
  display: block;
  font-weight: 700;
  color: var(--servixa-white);
  margin-bottom: 3px;
}

.footer-widget__contact-list li .content p {
  color: rgba(var(--servixa-white-rgb), .80);
}

.footer-widget__contact-list li .content p a {
  color: rgba(var(--servixa-white-rgb), .80);
}

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

.site-footer__bottom {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
}

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

.site-footer__bottom-text {
  color: var(--servixa-white);
}

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

.site-footer__bottom-text a:hover {
  color: var(--servixa-white);
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

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

.site-footer__bottom-menu li+li {
  margin-left: 30px;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--servixa-white);
}

.site-footer__bottom-menu li a:hover {
  color: var(--servixa-base);
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer-two__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.03;
  z-index: -1;
}

.site-footer-two__shape-1 img {
  width: auto;
}

.site-footer-two__top {
  position: relative;
  display: block;
  padding: 112px 0 117px;
}

.footer-widget-two__about {
  position: relative;
  display: block;
  margin-top: 8px;
}

.footer-widget-two__logo {
  position: relative;
  display: block;
}

.footer-widget-two__about-text {
  color: rgba(var(--servixa-white-rgb), .80);
  margin-top: 20px;
  margin-bottom: 22px;
}

.footer-widget-two__contact {
  position: relative;
  display: block;
}

.footer-widget-two__contact li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-widget-two__contact li+li {
  margin-top: 14px;
}

.footer-widget-two__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(var(--servixa-white-rgb), .10);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__contact li:hover .icon {
  background-color: var(--servixa-base);
}

.footer-widget-two__contact li .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__contact li:hover .icon span {
  color: var(--servixa-white);
}

.footer-widget-two__contact li .content {
  position: relative;
  display: block;
  flex: 1;
}

.footer-widget-two__contact li .content h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--servixa-white);
}

.footer-widget-two__contact li .content p {
  color: rgba(var(--servixa-white-rgb), .80);
}

.footer-widget-two__contact li .content p a {
  color: rgba(var(--servixa-white-rgb), .80);
}

.footer-widget-two__contact li .content p a:hover {
  color: var(--servixa-base);
}

.footer-widget-two__title-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.footer-widget-two__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--servixa-white);
  text-transform: capitalize;
}

.footer-widget-two__usefull-link {
  position: relative;
  display: block;
  margin-left: 30px;
}

.footer-widget-two__link-box {
  position: relative;
  display: block;
}

.footer-widget-two__link {
  position: relative;
  display: block;
}

.footer-widget-two__link li {
  position: relative;
  display: block;
}

.footer-widget-two__link li+li {
  margin-top: 12px;
}

.footer-widget-two__link li a {
  color: rgba(var(--servixa-white-rgb), .80);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__link li a:hover {
  color: var(--servixa-base);
}

.footer-widget-two__link-2 {
  margin-left: 55px;
}

.footer-widget-two__services {
  position: relative;
  display: block;
  margin-left: 20px;
}

.footer-widget-two__newsletter {
  position: relative;
  display: block;
  margin-left: -35px;
}

.footer-widget-two__newsletter-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--servixa-white);
}

.footer-widget-two__newsletter-form {
  position: relative;
  display: block;
  margin-top: 5px;
}

.footer-widget-two__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget-two__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 52px;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid rgba(var(--servixa-white-rgb), .10);
  color: rgba(var(--servixa-white-rgb), .80);
  font-weight: 400;
  border-radius: 0;
  padding-right: 65px;
}

.footer-widget-two__newsletter-form-input-box input[type="email"]:focus {
  outline: none;
}

.footer-widget-two__newsletter-btn {
  position: absolute;
  top: 3px;
  right: 8px;
  border: none;
  width: 44px;
  height: 44px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--servixa-white);
  background-color: rgba(var(--servixa-white-rgb), .10);
  border-radius: 50%;
}

.footer-widget-two__newsletter-btn:hover {
  color: var(--servixa-base);
  background-color: var(--servixa-white);
}

.site-footer-two__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 27px;
}

.site-footer-two__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--servixa-white);
  background-color: rgba(var(--servixa-white-rgb), .10);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer-two__social a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}

.site-footer-two__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--servixa-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer-two__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer-two__social a+a {
  margin-left: 16px;
}

.site-footer-two__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--servixa-white-rgb), .10);
}

.site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 26px 0 25px;
}

.site-footer-two__bottom-text {
  color: rgba(var(--servixa-white-rgb), .80);
}

.site-footer-two__bottom-text a {
  color: var(--servixa-base);
}

.site-footer-two__bottom-text a:hover {
  color: var(--servixa-white);
}

.site-footer-two__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-two__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-two__bottom-menu li+li {
  margin-left: 30px;
}

.site-footer-two__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--servixa-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__bottom-menu li a:hover {
  color: var(--servixa-base);
}


/*==============================================
    Site Footer Three
===============================================*/
.site-footer-three {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer-three__bg-color {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 77px;
  width: calc((100% - 580px) / 2);
  background-color: rgba(var(--servixa-white-rgb), 0.03);
  z-index: -1;
}

.site-footer-three__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.site-footer-three__top {
  position: relative;
  display: block;
}

.footer-widget-three__about {
  position: relative;
  display: block;
  padding-top: 120px;
}

.footer-widget-three__logo {
  position: relative;
  display: block;
}

.footer-widget-three__about-text {
  color: rgba(var(--servixa-white-rgb), .80);
  margin-top: 20px;
  margin-bottom: 22px;
}

.footer-widget-three__working-box {
  position: relative;
  display: block;
}

.footer-widget-three__working-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: var(--servixa-white);
  text-transform: capitalize;
  margin-bottom: 15px;
}

.footer-widget-three__working-hour {
  position: relative;
  display: block;
}

.footer-widget-three__working-hour li {
  position: relative;
  display: block;
}

.footer-widget-three__working-hour li+li {
  margin-top: 18px;
  border-top: 1px dashed rgba(var(--servixa-white-rgb), .30);
  padding-top: 18px;
}

.footer-widget-three__working-hour li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--servixa-white-rgb), .80);
}

.footer-widget-three__right {
  position: relative;
  display: block;
}

.footer-widget-three__title-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.footer-widget-three__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--servixa-white);
  text-transform: capitalize;
}

.footer-widget-three__right-bottom {
  position: relative;
  display: block;
  margin-left: 75px;
  border-top: 1px dashed rgba(var(--servixa-white-rgb), .20);
  padding-top: 50px;
}

.footer-widget-three__usefull-link {
  position: relative;
  display: block;
}

.footer-widget-three__link-box {
  position: relative;
  display: block;
}

.footer-widget-three__link {
  position: relative;
  display: block;
}

.footer-widget-three__link li {
  position: relative;
  display: block;
}

.footer-widget-three__link li+li {
  margin-top: 12px;
}

.footer-widget-three__link li a {
  color: rgba(var(--servixa-white-rgb), .80);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__link li a:hover {
  color: var(--servixa-base);
}

.footer-widget-three__link-2 {
  margin-left: 55px;
}

.footer-widget-three__services {
  position: relative;
  display: block;
}

.footer-widget-three__newsletter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 65px 75px 0px;
  padding-right: 0;
  margin-bottom: 53px;
}

.footer-widget-three__newsletter-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--servixa-white);
}

.footer-widget-three__newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 450px;
  width: 100%;
}

.footer-widget-three__newsletter-form-input-box {
  position: relative;
  display: block;
  width: 100%;
}

.footer-widget-three__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 64px;
  width: 100%;
  background-color: rgba(var(--servixa-white-rgb), .10);
  outline: none;
  border: none;
  color: rgba(var(--servixa-white-rgb), .80);
  font-weight: 400;
  border-radius: 32px;
  padding-right: 190px;
  padding-left: 30px;
}

.footer-widget-three__newsletter-form .thm-btn {
  border: none;
  position: absolute;
  top: 5px;
  right: 5px;
}

.footer-widget-three__newsletter-form .thm-btn:hover {
  color: var(--servixa-base);
}

.footer-widget-three__newsletter-form .thm-btn::before {
  background-color: var(--servixa-white);
}

.footer-widget-three__newsletter-form .thm-btn::after {
  background-color: var(--servixa-white);
}

.footer-widget-three__newsletter-form .thm-btn:hover span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.footer-widget-three__contact {
  position: relative;
  display: block;
}

.footer-widget-three__contact li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-widget-three__contact li+li {
  margin-top: 14px;
}

.footer-widget-three__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(var(--servixa-white-rgb), .15);
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__contact li:hover .icon {
  background-color: var(--servixa-base);
}

.footer-widget-three__contact li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__contact li:hover .icon span {
  color: var(--servixa-white);
}

.footer-widget-three__contact li .content {
  position: relative;
  display: block;
  flex: 1;
}

.footer-widget-three__contact li .content h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--servixa-white);
}

.footer-widget-three__contact li .content p {
  color: rgba(var(--servixa-white-rgb), .80)
}

.footer-widget-three__contact li .content p a {
  color: rgba(var(--servixa-white-rgb), .80)
}

.footer-widget-three__contact li .content p a:hover {
  color: var(--servixa-base);
}

.site-footer-three__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  border-top: 1px dashed rgba(var(--servixa-white-rgb), .20);
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-three__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--servixa-white);
  background-color: rgba(var(--servixa-white-rgb), .15);
  font-size: 16px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer-three__social a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}

.site-footer-three__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--servixa-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer-three__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer-three__social a+a {
  margin-left: 10px;
}

.site-footer-three__bottom {
  position: relative;
  display: block;
  background-color: rgba(var(--servixa-white-rgb), 0.05);
}

.site-footer-three__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 26px 0 25px;
}

.site-footer-three__bottom-text {
  color: rgba(var(--servixa-white-rgb), .80);
}

.site-footer-three__bottom-text a {
  color: var(--servixa-base);
  font-weight: 500;
}

.site-footer-three__bottom-text a:hover {
  color: var(--servixa-white);
}

.site-footer-three__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-three__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-three__bottom-menu li+li {
  margin-left: 30px;
}

.site-footer-three__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--servixa-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-three__bottom-menu li a:hover {
  color: var(--servixa-base);
}


/*==============================================
    Gallery One
===============================================*/
.gallery-one {
  position: relative;
  display: block;
}


.gallery-one .container {
  max-width: 1000px;
}

.gallery-one__top-title-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-one__top-title-box::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--servixa-black-rgb), .15);
}

.gallery-one__top-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  color: var(--servixa-black);
  background-color: var(--servixa-white);
  width: 220px;
  margin: 0 auto;
}

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

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

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.gallery-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--servixa-black-rgb), .85);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.gallery-one__single:hover .gallery-one__img:before {
  opacity: 1;
  transform: translateY(0px);
}

.gallery-one__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

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

.gallery-one__img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--servixa-white);
  opacity: 0;
  transform: translateY(100px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 2;
}

.gallery-one__single:hover .gallery-one__img a {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.gallery-one__img a:hover {
  color: var(--servixa-base);
}


/*==============================================
   Gallery Two
===============================================*/
.gallery-two {
  padding: 0 0 120px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--servixa-black);
  z-index: 1;
}

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

.page-header__inner {
  position: relative;
  display: block;
  padding: 191px 0 66px;
  z-index: 1;
  text-align: center;
}

.page-header__img-1 {
  position: absolute;
  bottom: 0;
  right: 100px;
}

.page-header__img-1 img {
  width: auto;
}

.page-header__inner h3 {
  font-size: 60px;
  color: var(--servixa-white);
  line-height: 1em;
  font-weight: 600;
  margin-bottom: 14px;
}

.thm-breadcrumb__inner {
  position: relative;
  display: block;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--servixa-white);
  font-family: var(--servixa-font-two);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--servixa-white);
  font-family: var(--servixa-font-two);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--servixa-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 16px;
  color: var(--servixa-base);
  font-weight: 700;
  position: relative;
  top: 1px;
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

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

.pricing-one__single-inner {
  position: relative;
  display: block;
  background-color: var(--servixa-bdr-color);
  border-radius: var(--servixa-bdr-radius);
  padding: 41px 40px 40px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.pricing-one__single-inner::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: var(--servixa-bdr-radius);
  background-color: var(--servixa-white);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.pricing-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.pricing-one__price {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: var(--servixa-black);
  margin-top: 10px;
}

.pricing-one__price>span {
  font-size: 16px;
  font-weight: 600;
  color: var(--servixa-base);
  position: relative;
  margin-left: 5px;
}

.pricing-one__points {
  position: relative;
  display: block;
  border-top: 1px solid #E3E3E3;
  margin-top: 24px;
  padding-top: 23px;
  margin-bottom: 34px;
}

.pricing-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-one__points li+li {
  margin-top: 11px;
}

.pricing-one__points li .icon {
  position: relative;
  display: inline-block;
}

.pricing-one__points li .icon>span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__points li p {
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one__btn-box {
  position: relative;
  display: block;
}

.pricing-one__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--servixa-bdr-radius);
  background-color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.pricing-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.pricing-one__single:hover .pricing-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.pricing-one__single-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/***  =============================================
       Pricing Two
=============================================  ***/
.pricing-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--servixa-primary);
  z-index: 1;
}

.pricing-two .section-title {
  margin-bottom: 103px;
}

.pricing-two__price-list-box {
  position: relative;
  display: block;
}

.pricing-two__price-list {
  position: relative;
  display: block;
}

.pricing-two__price-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-two__price-list li+li {
  margin-top: 25px;
}

.pricing-two__price-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--servixa-white);
  border: 5px solid rgba(var(--servixa-base-rgb), .20);
  border-radius: 50%;
  z-index: 1;
}

.pricing-two__price-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--servixa-base);
  transition: all 500ms ease;
}

.pricing-two__price-list li:hover .icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.pricing-two__price-list li .content-inner {
  position: relative;
  display: block;
  max-width: 230px;
  width: 100%;
  flex: 1;
}

.pricing-two__price-list li .content {
  position: relative;
  display: block;
  background-color: var(--servixa-base);
  margin-left: -35px;
  padding: 16px 20px 15px;
  padding-left: 45px;
 
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.pricing-two__price-list li .content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--servixa-white);
  line-height: 28px;
}

.pricing-two__price {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.pricing-two__price span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: var(--servixa-base);
  background-color: var(--servixa-white);
  border: 5px solid var(--servixa-base);
}

.pricing-two__img-box {
  position: relative;
  display: block;
  margin-top: 125px;
  z-index: 1;
}

.pricing-two__img-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 400px;
  background-color: var(--servixa-white);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.pricing-two__img {
  position: relative;
  display: block;
  z-index: 1;
}

.pricing-two__img img {
  width: 100%;
  animation: leftRight 4s ease-in-out infinite;
}

.pricing-two__price-list-2 li .content {
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-left: 0;
  margin-right: -35px;
  padding-left: 0;
  padding: 16px 20px 15px;
  padding-right: 45px;
  text-align: right;
}

.pricing-two__price-list-2 li {
  justify-content: flex-end;
}

.pricing-two__price-list-2 li .pricing-two__price {
  left: -35px;
  right: inherit;
}

.pricing-two__price-shape-1 {
  position: absolute;
  right: -84px;
  top: 50%;
  width: 47px;
  transform: translateY(-50%);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__price-shape-1::before {
  content: "";
  position: absolute;
  right: -96px;
  top: 39px;
  width: 110px;
  transform: rotate(47deg);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__price-shape-2 {
  position: absolute;
  right: -84px;
  top: 50%;
  width: 47px;
  transform: translateY(-50%);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__price-shape-2::before {
  content: "";
  position: absolute;
  right: -89px;
  top: -38px;
  width: 101px;
  transform: rotate(-47deg);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__price-shape-3 {
  position: absolute;
  left: -84px;
  top: 50%;
  width: 47px;
  transform: translateY(-50%);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__price-shape-3::before {
  content: "";
  position: absolute;
  left: -96px;
  top: 39px;
  width: 110px;
  transform: rotate(-47deg);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__price-shape-4 {
  position: absolute;
  left: -84px;
  top: 50%;
  width: 47px;
  transform: translateY(-50%);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__price-shape-4::before {
  content: "";
  position: absolute;
  left: -89px;
  top: -38px;
  width: 101px;
  transform: rotate(47deg);
  border: 1px dashed var(--servixa-base);
}

.pricing-two__top-img-1 {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.pricing-two__top-img-1 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}


/*--------------------------------------------------------------
# Pricing Three
--------------------------------------------------------------*/
.pricing-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.pricing-three__shape-1 {
  position: absolute;
  width: 481px;
  height: 448px;
  left: -221px;
  top: 160px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.pricing-three__shape-2 {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -125px;
  top: 448px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.pricing-three__single {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.10);
  padding: 36px 40px 37px;
  border-radius: 20px;
  margin-bottom: 30px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.pricing-three__single:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--servixa-base);
}

.pricing-three__title-box {
  position: relative;
  display: block;
}

.pricing-three__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 18px;
}

.pricing-three__text {
  font-size: 14px;
  line-height: 20px;
  color: var(--servixa-black);
}

.pricing-three__price-and-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 29px;
  border-bottom: 1px solid var(--servixa-bdr-color);
  padding-bottom: 16px;
}

.pricing-three__price-box {
  position: relative;
  display: block;
}

.pricing-three__price {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
}

.pricing-three__price span {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--servixa-gray);
  font-family: var(--servixa-font);
}

.pricing-three__icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.pricing-three__icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--servixa-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.pricing-three__single:hover .pricing-three__icon-box::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.pricing-three__icon-box span {
  font-size: 30px;
  color: var(--servixa-white);
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.pricing-three__single:hover .pricing-three__icon-box span {
  transform: scale(0.9);
  color: var(--servixa-white);
}

.pricing-three__points {
  position: relative;
  display: block;
}

.pricing-three__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.pricing-three__points li+li {
  margin-top: 16px;
}

.pricing-three__points li .price {
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-three__points li .price p {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--servixa-black);
  font-weight: 500;
}

.pricing-three__points li .text {
  position: relative;
  display: block;
}

.pricing-three__btn-box {
  position: relative;
  display: block;
  margin-top: 38px;
}

/***  =============================================
Pricing Page V3
=============================================  ***/
.pricing-page-v3 {
  padding: 100px 0 100px;
}

/***  =============================================
Process One
=============================================  ***/
.process-one {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 120px 0 0;
  z-index: 1;
}

.process-one__bg-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 594px;
  
  z-index: -1;
}

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

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

.process-one__single-inner {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  border-radius: var(--servixa-bdr-radius);
  padding: 30px 30px 30px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.process-one__single-inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.process-one__icon {
  position: relative;
  display: inline-block;
}

.process-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.process-one__single:hover .process-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.process-one__content {
  position: relative;
  display: block;
  border-top: 1px dashed rgba(var(--servixa-white-rgb), .30);
  padding-top: 15px;
  margin-top: 35px;
}

.process-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 0px 0 13px;
  color: var(--servixa-white);
}

.process-one__text {
  color: rgba(var(--servixa-white-rgb), .70);
}

.process-one__count {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.process-one__count::before {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 93px;
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: var(--servixa-white);
  counter-increment: count 1;
  content: "0"counter(count);
}


/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 80px 0 90px;
  z-index: 1;
}

.process-two__shape-1 {
  position: absolute;
  top: 150px;
  left: -190px;
  opacity: .10;
  z-index: -1;
}

.process-two__shape-1 img {
  width: auto;
}

.process-two__single {
  position: relative;
  display: block;
  text-align: center;
  padding: 0 30px 0;
  margin-bottom: 30px;
}

.process-two ul li:nth-child(2) .process-two__single {
  margin-top: 50px;
}

.process-two ul li:nth-child(4) .process-two__single {
  margin-top: 50px;
}

.process-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.process-two__text {
  margin: 25px 0 39px;
}

.process-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background-color: var(--servixa-base);

  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.process-two__icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--servixa-base-rgb), .30);
  border-radius: 50%;
  z-index: -1;
}

.process-two__single:hover .process-two__icon {}

.process-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 56px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.process-two__single:hover .process-two__icon span {
  transform: scale(0.9);
}

.process-two__count {
  position: absolute;
  right: -18px;
  bottom: 13px;
  background-color: var(--servixa-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 3px solid var(--servixa-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
}

.process-two__count::before {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--servixa-white);
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

/***   =============================================
Project One
=============================================  ***/
.project-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.project-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.project-one__top .section-title {
  margin-bottom: 0px;
}

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

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

.project-one__img-box {
  position: relative;
  display: block;
}

.project-one__img {
  position: relative;
  display: block;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  border-radius: var(--servixa-bdr-radius);
}

.project-one__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  border-radius: var(--servixa-bdr-radius);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.project-one__single:hover .project-one__img::before {
  opacity: 1;
  transform: translateY(0px);
}

.project-one__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.project-one__single:hover .project-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.project-one__content-inner {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 60px;
}

.project-one__content {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  padding: 20px 20px 20px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.project-one__sub-title-and-shape {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.project-one__sub-title-bdr {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--servixa-base);
}

.project-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.project-one__title a {
  color: var(--servixa-black);
}

.project-one__title a:hover {
  color: var(--servixa-base);
}

.project-one__arrow {
  position: absolute;
  top: 0;
  right: 0;
}

.project-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 16px;
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
}

.project-one__arrow a:hover {
  background-color: var(--servixa-black);
}

.project-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
}

.project-one__nav .swiper-button-prev1,
.project-one__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: 0;
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  font-size: 16px;
  margin: 0px 0px;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.project-one__nav .swiper-button-prev1:hover,
.project-one__nav .swiper-button-next1:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}

.project-one__nav .swiper-button-next1 {
  margin-right: 10px;
}

.project-one__video-link {
  position: absolute;
  top: 8px;
  right: 8px;
}

.project-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  line-height: 30px;
  text-align: center;
  font-size: 10px;
  color: var(--servixa-base);
  background-color: var(--servixa-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

.project-one__video-icon:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.project-one__video-icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--servixa-white-rgb), .50);
  border-radius: 50%;
  z-index: -1;
}

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

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

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

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 44px 0 0px;
  z-index: 1;
}

.project-two__bg-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-color: var(--servixa-primary);
  z-index: -1;
}

.project-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 62px;
}

.project-two__top .section-title {
  margin-bottom: 0px;
}

.project-two__btn-box {
  position: relative;
  display: block;
}

.project-two__bottom {
  position: relative;
  display: block;
}

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

.project-two__img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 402px;
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  background-color: var(--servixa-black);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.project-two__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  border-radius: var(--servixa-bdr-radius);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.project-two__single:hover .project-two__img::before {
  opacity: 1;
  transform: translateY(0px);
}

.project-two__img img {
  width: 100%;
  opacity: .70;
  border-radius: var(--servixa-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.project-two__single:hover .project-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.project-two__content {
  position: absolute;
  bottom: 33px;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.project-two__title-box {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateX(-60px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-two__single:hover .project-two__title-box {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 200ms;
}

.project-two__sub-title {
  color: var(--servixa-primary);
}

.project-two__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  opacity: 0;
  transform: translateX(-60px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-two__single:hover .project-two__title {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 400ms;
}

.project-two__title a {
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__title a:hover {
  color: var(--servixa-base);
}

.project-two__arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.project-two__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--servixa-base);
  font-size: 16px;
  color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__arrow a:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.project-two .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.project-two .project-one__single {
  margin-bottom: 0;
}

.project-two__carousel.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  margin: 30px 0 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid rgba(var(--servixa-black-rgb), .70);
  background-color: transparent;
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active {
  border: 2px solid var(--servixa-base);
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  content: "";
  background-color: rgba(var(--servixa-black-rgb), .70);
  border-radius: 2px;
  transform: scale(1);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.project-two__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
  background-color: var(--servixa-base);
}

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

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

/*--------------------------------------------------------------
#  Project Three
--------------------------------------------------------------*/
.project-three {
  position: relative;
  display: block;
  padding: 25px 0 10px;
  z-index: 1;
  background: #ebebeb;
}

.project-filter.style1 {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.project-filter.style1 li {
  position: relative;
  display: block;
}

.project-filter.style1 li .filter-text {
  position: relative;
  color: var(--servixa-white);
  font-size: 12px;
  font-weight: 500;
  display: block;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--servixa-base);
  padding: 3px 13px 3px;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.project-filter.style1 li .filter-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--servixa-bdr-radius);
  background-color: var(--servixa-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.project-filter.style1 li:hover .filter-text::before,
.project-filter.style1 li.active .filter-text::before {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.project-filter.style1 li:hover .filter-text,
.project-filter.style1 li.active .filter-text {
  color: var(--servixa-white);
}

.project-filter.style1 li .count {
  color: var(--servixa-white);
  font-size: 12px;
  line-height: 26px;
  font-weight: 600;
  display: inline-block;
  padding: 0 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  top: -8px;
}

.project-filter.style1 li:hover .count,
.project-filter.style1 li.active .count {
  opacity: 1;
}

.project-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-three__img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-three__img {
  position: relative;
  display: block;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.project-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  border-radius: var(--servixa-bdr-radius);
  opacity: 0;
  transform: translatex(50px);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.project-three__single:hover .project-three__img:before {
  opacity: 1;
  transform: translatex(0px);
}

.project-three__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  transition: .5s ease;
  transform: scale(1.05);
}

.project-three__single:hover .project-three__img img {
  transform: scale(1);
}

.project-three__icon {
  position: absolute;
  top: 0px;
  right: 0px;
}

.project-three__icon a {
  position: relative;
  height: 40px;
  width: 40px;
  color: var(--servixa-white);
  font-size: 18px;
  font-weight: 700;
  background: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-three__icon:hover a {
  color: var(--servixa-black);
  background: var(--servixa-white);
}

.project-three__content-inner {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.9s ease;
  transition: all 0.9s ease;
  z-index: 1;
}

.project-three__single:hover .project-three__content-inner {
  opacity: 1;
  transform: translateY(0px);
}

.project-three__content {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  padding: 20px 20px 20px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.project-three__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.project-three__title a {
  color: var(--servixa-black);
}

.project-three__title a:hover {
  color: var(--servixa-base);
}

.project-three__video-link {
  position: absolute;
  top: 8px;
  right: 8px;
}

.project-three__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  line-height: 30px;
  text-align: center;
  font-size: 10px;
  color: var(--servixa-base);
  background-color: var(--servixa-white);
  border-radius: 8px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

.project-three__video-icon:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.project-three__video-icon:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid rgba(var(--servixa-white-rgb), .50);
  border-radius: 10px;
  z-index: -1;
}

.project-three__video-link .ripple,
.project-three__video-icon .ripple:before,
.project-three__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--servixa-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

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

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

/***  =============================================
Project Page
=============================================  ***/
.project-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/***  =============================================
Project V Three
=============================================  ***/
.project-v-three {
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-details__left {
  position: relative;
  display: block;
}

.project-details__img {
  position: relative;
  display: block;
}

.project-details__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.project-details__title-1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 31px;
  margin-bottom: 19px;
}

.project-details__title-2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 52px;
  margin-bottom: 19px;
}

.project-details__text-and-img {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 31px;
  margin-bottom: 61px;
}

.project-details__text-img {
  position: relative;
  display: block;
}

.project-details__text-img img {
  width: auto;
  border-radius: var(--servixa-bdr-radius);
}

.project-details__title-3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
}

.project-details__text-4 {
  margin-top: 29px;
  margin-bottom: 31px;
}

.project-details__img-and-points {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.project-details__points-img {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
}

.project-details__points-img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.project-details__points {
  position: relative;
  display: block;
}

.project-details__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-details__points li+li {
  margin-top: 16px;
}

.project-details__points li .icon {
  position: relative;
  display: inline-block;
}

.project-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--servixa-base);
}

.project-details__points li p {
  color: var(--servixa-black);
}

.project-details__sidebar {
  position: relative;
  display: block;
}

.project-details__information {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  border-radius: var(--servixa-bdr-radius);
  padding: 40px 40px 40px;
  margin-bottom: 30px;
}

.project-details__information-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 30px;
}

.project-details__information-list {
  position: relative;
  display: block;
}

.project-details__information-list li {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 20px;
  padding: 18px 30px 19px;
}

.project-details__information-list li+li {
  margin-top: 12px;
}

.project-details__information-list li h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--servixa-black);
  margin-bottom: 4px;
}


.project-details__get-started {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  border-radius: var(--servixa-bdr-radius);
  padding: 40px 40px 40px;
}

.project-details__get-started-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.project-details__get-started-text {
  margin-top: 18px;
  margin-bottom: 29px;
}

.project-details__get-started-points {
  position: relative;
  display: block;
}

.project-details__get-started-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-details__get-started-points li+li {
  margin-top: 11px;
}

.project-details__get-started-points li .icon {
  position: relative;
  display: inline-block;
  top: 5px;
}

.project-details__get-started-points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--servixa-black);
}

.project-details__get-started-points li p {
  color: var(--servixa-black);
}

.project-details__get-started-points li p a {
  color: var(--servixa-black);
}

.project-details__get-started-points li p a:hover {
  color: var(--servixa-base);
}

.project-details__get-started-btn-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.project-details__previous-next {
  position: relative;
  display: block;
  margin-top: 60px;
}

.project-details__previous-next ul {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--servixa-bdr-color);
  padding: 15px 20px 15px;
  border-radius: var(--servixa-bdr-radius);
}

.project-details__previous-next ul li {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
}

.project-details__previous-next ul li::before {
  position: absolute;
  top: -16px;
  right: 0;
  bottom: -16px;
  width: 1px;
  background: var(--servixa-bdr-color);
  content: "";
}

.project-details__previous-next ul li:last-child:before {
  display: none;
}

.project-details__previous-next ul li:nth-child(2) {
  float: right;
  text-align: right;
}

.project-details__previous-next ul li:nth-child(2) .text-box {
  margin-left: 0px;
  margin-right: 20px;
}

.project-details__previous-next ul li:nth-child(2) .icon a {
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon {
  position: relative;
  display: block;
}

.project-details__previous-next ul li .icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  background: var(--servixa-base);
  color: var(--servixa-white);
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon a:hover {
  background: var(--servixa-black);
}

.project-details__previous-next ul li .icon a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
}

.project-details__previous-next ul li:nth-child(1) .icon a span {
  transform: rotate(-180deg);
}

.project-details__previous-next ul li .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.project-details__previous-next ul li .text-box a {
  color: var(--servixa-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-details__previous-next ul li .text-box a:hover {
  color: var(--servixa-base);
}

/*==============================================
    Services One
===============================================*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 60px;
  z-index: 1;
}

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

.services-one .swiper-container {
  overflow: visible;
}

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

.services-one__img-box {
  position: relative;
  display: block;
}

.services-one__img {
  position: relative;
  display: block;
  
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.services-one__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.services-one__single:hover .services-one__img::before {
  opacity: 1;
  transform: translateY(0px);
}

.services-one__img img {
  width: 100%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border-radius: var(--servixa-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-one__count {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 85px;
  background-color: var(--servixa-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: 700;
  color: var(--servixa-white);
  padding-bottom: 10px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.services-one__count::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  opacity: 0;
  transform: translateY(-100px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  transition-delay: 200ms;
  z-index: -1;
}

.services-one__single:hover .services-one__count::before {
  background-color: rgba(var(--servixa-black-rgb), 1);
  opacity: 1;
  transform: translateY(0px);
}

.services-one__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--servixa-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  padding: 30px 30px 30px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 2;
}

.services-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  margin: -70px auto 19px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  border: 8px solid var(--servixa-white);
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__single:hover .services-one__icon {
  background-color: var(--servixa-black);
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.services-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
}

.services-one__title a {
  color: var(--servixa-black);
}

.services-one__title a:hover {
  color: var(--servixa-base);
}

.services-one__text {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 16px;
}

.services-one__btn-box {
  position: relative;
  display: block;
}

.services-one__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  color: var(--servixa-black);
  font-weight: 600;
  text-transform: capitalize;
}

.services-one__btn-box a:hover {
  color: var(--servixa-base);
}

/*==============================================
   Services Two
===============================================*/
.service-two {
  position: relative;
  display: block;
  counter-reset: count;
  z-index: 1;
}

.service-two__wrap {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 120px 0 90px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

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

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

.service-two__single-inner {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  padding: 30px 30px 30px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  overflow: hidden;
  z-index: 1;
}

.service-two__single-inner1 {
    position: relative;
    display: block;
    background-color: var(--servixa-white);
    border-radius: var(--servixa-bdr-radius);
    /* padding: 30px 30px 30px; */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    overflow: hidden;
    z-index: 1;
}

.service-two__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.service-two__single:hover .service-two__single-bg {
  opacity: 1;
  transform: translateY(0px);
}

.service-two__single-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(14 14 14 / 38%);
}

.service-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.service-two__title a {
  color: var(--servixa-black);
}

.service-two__single:hover .service-two__title a {
  color: var(--servixa-white);
}

.service-two__count {
  position: relative;
  display: block;
}

.service-two__count::before {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: rgba(var(--servixa-base-rgb), 0.05);
  counter-increment: count 1;
  content: "0"counter(count);
  margin-top: 24px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-two__single:hover .service-two__count::before {
  color: rgba(var(--servixa-white-rgb), 1);
}

.service-two__text {
  margin: 28px 0 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-two__single:hover .service-two__text {
  color: var(--servixa-white);
}

.service-two__sub-title {
  font-weight: 500;
  color: var(--servixa-base);
  background-color: rgba(var(--servixa-black-rgb), 0.06);
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-two__single:hover .service-two__sub-title {
  color: var(--servixa-white);
  background-color: rgba(var(--servixa-white-rgb), .25);
}

.service-two__read-more {
  position: relative;
  display: block;
  margin-top: 30px;
}

.service-two__read-more>a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: var(--servixa-black);
}

.service-two__single:hover .service-two__read-more>a {
  color: var(--servixa-white);
}

.service-two__read-more>a>span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--servixa-base);
  border-radius: 5px;
  font-size: 16px;
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-two__single:hover .service-two__read-more>a>span {
  color: var(--servixa-base);
  background-color: var(--servixa-white);
}

.service-two__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 90px;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  overflow: hidden;
  z-index: 1;
}

.service-two__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--servixa-base);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: -1;
}

.service-two__single:hover .service-two__icon::before {
  opacity: 1;
  transform: translateY(0px);
}

.service-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--servixa-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  top: 7px;
}

.service-two__single:hover .service-two__icon span {
  color: var(--servixa-white);
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.service-two__see-more {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.service-two__see-more a {
  font-weight: 600;
  color: var(--servixa-base);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: capitalize;
}

.service-two__see-more a span {
  color: var(--servixa-black);
  font-size: 14px;
  font-weight: 700;
  webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-two__see-more a:hover span {
  color: var(--servixa-base);
}

/*==============================================
   Service Three
===============================================*/
.service-three {
  position: relative;
  display: block;
  padding: 120px 0 83px;
  z-index: 1;
}

.service-three__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-three__btn-box {
  position: relative;
  display: block;
}

.service-three__tab-box {
  position: relative;
  display: block;
}

.service-three__tab-buttons-box {
  position: relative;
  display: block;
  z-index: 100;
}

.service-three__tab-box .service-three-tab-buttons {
  position: relative;
  display: block;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid var(--servixa-bdr-color);
  padding: 18px 20px 18px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn:hover {
  border: 1px solid var(--servixa-base);
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn.active-btn {
  border: 1px solid var(--servixa-base);
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn+.p-tab-btn {
  margin-top: 15px;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--servixa-base);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn::after {
  position: absolute;
  background-color: var(--servixa-base);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn.active-btn::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn.active-btn::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn:hover span {
  color: var(--servixa-white);
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn.active-btn span {
  color: var(--servixa-white);
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn i {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn:hover i {
  color: var(--servixa-white);
}

.service-three__tab-box .service-three-tab-buttons .p-tab-btn.active-btn i {
  color: var(--servixa-white);
}

.service-three__tab-box .p-tabs-content {
  position: relative;
  display: block;
}

.service-three__tab-box .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -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;
}

.service-three__tab-box .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 5;
}

.service-three__tab-content-box {
  position: relative;
  display: block;
}

.service-three__inner {
  position: relative;
  display: block;
}

.service-three__carousel {
  position: relative;
  display: block;
}

.service-three__single {
  position: relative;
  display: block;
}

.service-three__img-box {
  position: relative;
  display: block;
}

.service-three__img {
  position: relative;
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='310' height='250' viewBox='0 0 310 250'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATYAAAD6CAYAAAAr4WvSAAAAAXNSR0IArs4c6QAADCRJREFUeF7t3dvLpWUZB+Cfk1lIRNhOqGyDVGCS1JSijqRNpRZpbiez/aHggaGBeBYdiEfSQXQUEmVRkgdFhRBMSf9W+sy8nzMOfn7P+63nXZt7XevEA591r3Vf9z0/1vrW7rK4bErgRJI7k5xKcm2Sq5Lcsak743YJVBK4rFIzO9LL1Ul+luS2JF/ekfvsbhLYKQHBtt5xPZ3kHoG2XnS3tn8Cgm09M78yyQtJrhFq6wF3K/stINiWn38LtZemv6ctf2tugQCBCLbll6CF2n3L34xbIEDgQECwLbsLzyW5Kcmty96M6gQIXCwg2Jbbh5uTtGBr/3UhQGCNAoJtOey/Jrl3ufIqEyBwmIBgW2Y3Tib51fQ0dJlbUJUAgUMFBNsyy/FskqeWKa0qAQJHCQi2o4SO9//PTp8sON61XYsAgZUEBNtKfG955Q8nednT0PGwKhLoFRBsvVL9525J8mr/cScJEBgtINhGi57/LGh7xOZCgMCGBATbePhHkvx+fFkVCRDoFRBsvVL95x5N8rv+404SIDBaQLCNFk3OJHlxfFkVCRDoFRBsvVL95+5O8vf+404SIDBaQLCNFk1OJ3llfFkVCRDoFRBsvVL95zxi67dyksAiAoJtPGv77rX2HWwuBAhsSECwjYd/IMmfx5dVkQCBXgHB1ivVf06w9Vs5SWARAcE2nvWhJH8aX1ZFAgR6BQRbr1T/Oe9j67dyksAiAoJtPKuPVI03VZHALAHBNour67Bg62JyiMByAoJtvK1gG2+qIoFZAoJtFlfXYcHWxeQQgeUEBNt4W8E23lRFArMEBNssrq7Dgq2LySECywkItvG2gm28qYoEZgkItllcXYcFWxeTQwSWExBs420F23hTFQnMEhBss7i6Dgu2LiaHCCwnINjG2wq28aYqEpglINhmcXUdFmxdTA4RWE5AsI23FWzjTVUkMEtAsM3i6jos2LqYHCKwnIBgG28r2MabqkhgloBgm8XVdViwdTE5RGA5AcE23lawjTdVkcAsAcE2i6vrsGDrYnKIwHICgm287XeT/GF8WRUJEOgVEGy9Uv3nHk7yx/7jThIgMFpAsI0WTe5P8pfxZVUkQKBXQLD1SvWf+3aSl5Ow7TdzksBQAf/4hnKeK3ZXkr8lOTG+tIoECPQICLYepXlnTif5R5LL513NaQIERgkItlGSF+rcnuSfSa4YX1pFAgR6BARbj9K8M7cmeSXJu+ddzWkCBEYJCLZRkhfqnEzyapJ3jS+tIgECPQKCrUdp3pkvJvmfp6Lz0JwmMFJAsI3UPF/rxiT/TfLO8aVVJECgR0Cw9SjNO3Nzkv8kece8qzlNgMAoAcE2SvJCnVNJznqD7nhYFQn0Cgi2Xqn+c+3tHv/uP+4kAQKjBQTbaNHk60n+Nb6sigQI9AoItl6p/nO+tqjfykkCiwgItvGsjyd5fnxZFQkQ6BUQbL1S/edaqLVwcyFAYEMCgm08/ItJzowvqyIBAr0Cgq1Xqu/cTUkeS/Jo33GnCBBYQkCwjVX9RZJnxpZUjQCBuQKCba7Y4ec/leTXr39OtL3dw4UAgQ0KCLZx+C8k+cG4cioRIHBcAcF2XLk3X6/9zsHPk7TPiboQILBhAcG2+gA+keS3Sb6yeikVCBAYISDYVlO8Jslvkty5WhnXJkBgpIBgO77mDUme9WLB8QFdk8BSAoLteLJPJPlOkvb7Bi4ECGyZgGCbN5D2xtvvJ3mPFwrmwTlNYJ0Cgu1o7fZ3tB8l+dr0I8he+TzazAkCGxUQbIfzfzXJT5K0N962j0q5ECCwIwKC7c2Dar8F2p5uPpjkvQJtR7bY3SRwiYBgOw/y2elvZ+1ppvej+WdCYMcF9j3YvpWkfePt1a//stQdOz5Ld58AgUlgH4Ptg0l+mOQbSS73CM2/BQL1BPYp2L6U5KdJrvdWjXqLrCMCFwtUD7bWX3shoH3rxvu9GGD5CeyHQNVg++T03rPTHp3txyLrkkDlR2ztSx7be88+7tGZRSewvwIVHrFdmeR7SR7wUaf9XWSdE6jyiO0z05tpTyW5LUmFkLadBAgMENjFMPhmkkeSfGz6do1d7GHA6JQgQOAwgV0JhY9MTzfvSnKFFwQsNAECbyew7cF2e5IfJ/l0khuNkgABAj0C2xhs7YPo7X1n9/sges8InSFA4FKBbQq266aPOt3iqaZFJUBgFYFtCLZ7p2/WaB9E9yWOq0zTdQkQOCewqWD70PTJAC8GWEQCBIYLrDvY2iOy9mLA53wyYPgsFSRAYBJYR7CdmF4MeDjJ+wSa3SNAYGmBJYPt2unRWftGWn87W3qS6hMg8IbAEsF29/RiQPt1J4Fm2QgQWLvAqGBrP3zSfqLuniTtfWgCbe2jdIMECBwIrBpsX5iebp70tzNLRYDAtggcN9jOTD+C0t624Tc3t2Wa7gcBAucE5gTbR6enmwc/giLQLBEBAlsp0BNs7Wlm+yLH9rSzfe+ZCwECBLZa4O2C7Ybp72cfmL7/bKsbcecIECBw1IsHTyT5/PTGWloECBDYKYG3esT2XJL2okD76iAXAgQI7JzApcH2fJKrpt8S2Llm3GECBAg0gYuD7ZfTN9W2X3tyIUCAwM4KHATbQ0ke86rnzs7RHSdA4CKBg2A7K9TsBQECVQRasN2X5EmfIKgyUn0QINCCrb1g8DgKAgQIVBFowfbS9KitSk/6IEBgzwVasP1/zw20T4BAMQHBVmyg2iFA4Pz72DxiswkECJQSEGylxqkZAgSagGCzBwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgn8BrS4/oByQ8xoQAAAABJRU5ErkJggg==' x='0' y='0' width='310' height='250'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='310' height='250' viewBox='0 0 310 250'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATYAAAD6CAYAAAAr4WvSAAAAAXNSR0IArs4c6QAADCRJREFUeF7t3dvLpWUZB+Cfk1lIRNhOqGyDVGCS1JSijqRNpRZpbiez/aHggaGBeBYdiEfSQXQUEmVRkgdFhRBMSf9W+sy8nzMOfn7P+63nXZt7XevEA591r3Vf9z0/1vrW7rK4bErgRJI7k5xKcm2Sq5Lcsak743YJVBK4rFIzO9LL1Ul+luS2JF/ekfvsbhLYKQHBtt5xPZ3kHoG2XnS3tn8Cgm09M78yyQtJrhFq6wF3K/stINiWn38LtZemv6ctf2tugQCBCLbll6CF2n3L34xbIEDgQECwLbsLzyW5Kcmty96M6gQIXCwg2Jbbh5uTtGBr/3UhQGCNAoJtOey/Jrl3ufIqEyBwmIBgW2Y3Tib51fQ0dJlbUJUAgUMFBNsyy/FskqeWKa0qAQJHCQi2o4SO9//PTp8sON61XYsAgZUEBNtKfG955Q8nednT0PGwKhLoFRBsvVL9525J8mr/cScJEBgtINhGi57/LGh7xOZCgMCGBATbePhHkvx+fFkVCRDoFRBsvVL95x5N8rv+404SIDBaQLCNFk3OJHlxfFkVCRDoFRBsvVL95+5O8vf+404SIDBaQLCNFk1OJ3llfFkVCRDoFRBsvVL95zxi67dyksAiAoJtPGv77rX2HWwuBAhsSECwjYd/IMmfx5dVkQCBXgHB1ivVf06w9Vs5SWARAcE2nvWhJH8aX1ZFAgR6BQRbr1T/Oe9j67dyksAiAoJtPKuPVI03VZHALAHBNour67Bg62JyiMByAoJtvK1gG2+qIoFZAoJtFlfXYcHWxeQQgeUEBNt4W8E23lRFArMEBNssrq7Dgq2LySECywkItvG2gm28qYoEZgkItllcXYcFWxeTQwSWExBs420F23hTFQnMEhBss7i6Dgu2LiaHCCwnINjG2wq28aYqEpglINhmcXUdFmxdTA4RWE5AsI23FWzjTVUkMEtAsM3i6jos2LqYHCKwnIBgG28r2MabqkhgloBgm8XVdViwdTE5RGA5AcE23lawjTdVkcAsAcE2i6vrsGDrYnKIwHICgm287XeT/GF8WRUJEOgVEGy9Uv3nHk7yx/7jThIgMFpAsI0WTe5P8pfxZVUkQKBXQLD1SvWf+3aSl5Ow7TdzksBQAf/4hnKeK3ZXkr8lOTG+tIoECPQICLYepXlnTif5R5LL513NaQIERgkItlGSF+rcnuSfSa4YX1pFAgR6BARbj9K8M7cmeSXJu+ddzWkCBEYJCLZRkhfqnEzyapJ3jS+tIgECPQKCrUdp3pkvJvmfp6Lz0JwmMFJAsI3UPF/rxiT/TfLO8aVVJECgR0Cw9SjNO3Nzkv8kece8qzlNgMAoAcE2SvJCnVNJznqD7nhYFQn0Cgi2Xqn+c+3tHv/uP+4kAQKjBQTbaNHk60n+Nb6sigQI9AoItl6p/nO+tqjfykkCiwgItvGsjyd5fnxZFQkQ6BUQbL1S/edaqLVwcyFAYEMCgm08/ItJzowvqyIBAr0Cgq1Xqu/cTUkeS/Jo33GnCBBYQkCwjVX9RZJnxpZUjQCBuQKCba7Y4ec/leTXr39OtL3dw4UAgQ0KCLZx+C8k+cG4cioRIHBcAcF2XLk3X6/9zsHPk7TPiboQILBhAcG2+gA+keS3Sb6yeikVCBAYISDYVlO8Jslvkty5WhnXJkBgpIBgO77mDUme9WLB8QFdk8BSAoLteLJPJPlOkvb7Bi4ECGyZgGCbN5D2xtvvJ3mPFwrmwTlNYJ0Cgu1o7fZ3tB8l+dr0I8he+TzazAkCGxUQbIfzfzXJT5K0N962j0q5ECCwIwKC7c2Dar8F2p5uPpjkvQJtR7bY3SRwiYBgOw/y2elvZ+1ppvej+WdCYMcF9j3YvpWkfePt1a//stQdOz5Ld58AgUlgH4Ptg0l+mOQbSS73CM2/BQL1BPYp2L6U5KdJrvdWjXqLrCMCFwtUD7bWX3shoH3rxvu9GGD5CeyHQNVg++T03rPTHp3txyLrkkDlR2ztSx7be88+7tGZRSewvwIVHrFdmeR7SR7wUaf9XWSdE6jyiO0z05tpTyW5LUmFkLadBAgMENjFMPhmkkeSfGz6do1d7GHA6JQgQOAwgV0JhY9MTzfvSnKFFwQsNAECbyew7cF2e5IfJ/l0khuNkgABAj0C2xhs7YPo7X1n9/sges8InSFA4FKBbQq266aPOt3iqaZFJUBgFYFtCLZ7p2/WaB9E9yWOq0zTdQkQOCewqWD70PTJAC8GWEQCBIYLrDvY2iOy9mLA53wyYPgsFSRAYBJYR7CdmF4MeDjJ+wSa3SNAYGmBJYPt2unRWftGWn87W3qS6hMg8IbAEsF29/RiQPt1J4Fm2QgQWLvAqGBrP3zSfqLuniTtfWgCbe2jdIMECBwIrBpsX5iebp70tzNLRYDAtggcN9jOTD+C0t624Tc3t2Wa7gcBAucE5gTbR6enmwc/giLQLBEBAlsp0BNs7Wlm+yLH9rSzfe+ZCwECBLZa4O2C7Ybp72cfmL7/bKsbcecIECBw1IsHTyT5/PTGWloECBDYKYG3esT2XJL2okD76iAXAgQI7JzApcH2fJKrpt8S2Llm3GECBAg0gYuD7ZfTN9W2X3tyIUCAwM4KHATbQ0ke86rnzs7RHSdA4CKBg2A7K9TsBQECVQRasN2X5EmfIKgyUn0QINCCrb1g8DgKAgQIVBFowfbS9KitSk/6IEBgzwVasP1/zw20T4BAMQHBVmyg2iFA4Pz72DxiswkECJQSEGylxqkZAgSagGCzBwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgnINjKjVRDBAgINjtAgEA5AcFWbqQaIkBAsNkBAgTKCQi2ciPVEAECgs0OECBQTkCwlRuphggQEGx2gACBcgKCrdxINUSAgGCzAwQIlBMQbOVGqiECBASbHSBAoJyAYCs3Ug0RICDY7AABAuUEBFu5kWqIAAHBZgcIECgn8BrS4/oByQ8xoQAAAABJRU5ErkJggg==' x='0' y='0' width='310' height='250'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.service-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.service-three__single:hover .service-three__img::before {
  opacity: 1;
  transform: translateY(0px);
}

.service-three__img img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.service-three__single:hover .service-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.service-three__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 75px;
  background-color: var(--servixa-base);
  border-radius: 10px;
  transition: all 500ms ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='75' height='90' viewBox='0 0 75 90'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABaCAYAAADwxKvUAAAAAXNSR0IArs4c6QAABDFJREFUeF7tncmPTFEUxn9NkAgWIuIfEAlrIkFsECwk1hY2VvwDEkuxkVggJKZVB4lEY0MQiXnWQkQMbdbmeaY13tdOtepS3fVOdVXXdO6m0pVTr9799XfPPecm9b0m8o/xwDJgEjAZGAEM7iW2Xt7uBN4A14GTwGbgYfbkmvLMdC6wGJgHDAeG1AuNFPP4DQjae+AAsAU4nvlcLqwFBmo2MDLFxes55B1wyBR2RBPNhjUDWArMB0bVMwXH3N4C+4D1QKtgDQLGAcuBRcBox8UaIfQFsDVJR6sES3D2ABOBMY0w+yLmeCfZ4FYK1izgcBEXaKSPdADNgnUGmGLLsZEAeOb6C2gTLG2XMQoT6BAs1RVK8jH6JtAZsBwSCVhOWEpe+doex2UaI1SQAlbK/3XASgkq0xuGslICC2WlBBXKcoAKWAHLScARHjkrYDkIOEJDWQHLQcARGsoKWA4CjtBQVsByEHCEhrICloOAIzSUFbAcBByhoayA5SDgCA1lBSwHAUdoKCtgOQg4QkNZActBwBEaygpYDgKO0FBWwHIQcISGsgKWg4AjNJQVsBwEHKGhrIDlIOAIDWUFLAcBR2goK2A5CDhCQ1kBy0HAERrKClgOAo7QUFZ6WF0/zozf7qQD1vWz34BVGJYYtQeswqAU8UPeFwErHayniVnIuoBVGJYMfHYnjk+rA1bvsOR38RE4ZV40LQErP6wMqEvAdmCbwgJWflgyG2sFdpiquqICVk9YUtQns7HbZN5Z3REB6x8s5acbiYnRfrOva88VXcD6q6S7ZoslU7E28+f5z9CokWF9BmRTtzfxN1wDPAe+W0eTN5M1GiwBemVukXKj0073zEqEghVXI8D6aqqRB+lBKzAzgD4UJJQVUK+wtJxeZi0zLbXXpihV5EWNeoIlQHJ+/AbIV1QtyiODJlX1e9Q6LJ0GKAcpF6nabknsQ2/bslPzW9JRy7Bkh3nTFCQ/ZC27B8DPkhKq0Zyluuce8NhsfE+YcbSUpCVY9lHtyhIgwXkCCM5Rc9KWqr6UnU7OF1QjLB3hakkpF523ylpVtaps7WgVG9UESypSb3bFdjPBEaQenuwVI1Ulpw5aZvftkO0YoCV2q5JQevtuKasSDrjqw5SHLpg5/TVTVDUy6r4nwVLpP3YA7DeVb1T7XARO25K7bOdHVQ0pc3OCpec1TCvT3armUe6Rgs4BV4GzA7XVl3pOgiUn/Zn2dAH93Z8hn2bZgeuMSIdnOuxXd69cpPdregjOnGQiK4DpRRpSC4K2e3X32uq1o6lQVG9W8pajkrQzSlqbFH9L7Gkoae9HgARKB/uCo21+l7Ugaa9RU3HZy6452ZEWAkP7eHyMlpkgqb1QHtK2r6cU7CxnT1YtRHNz1MZk4hOAqcAwezCRAGnoVctMlbV2tA1A0WdD1QLAcx9/AM1cFS00t277AAAAAElFTkSuQmCC' x='0' y='0' width='75' height='90'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='75' height='90' viewBox='0 0 75 90'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABaCAYAAADwxKvUAAAAAXNSR0IArs4c6QAABDFJREFUeF7tncmPTFEUxn9NkAgWIuIfEAlrIkFsECwk1hY2VvwDEkuxkVggJKZVB4lEY0MQiXnWQkQMbdbmeaY13tdOtepS3fVOdVXXdO6m0pVTr9799XfPPecm9b0m8o/xwDJgEjAZGAEM7iW2Xt7uBN4A14GTwGbgYfbkmvLMdC6wGJgHDAeG1AuNFPP4DQjae+AAsAU4nvlcLqwFBmo2MDLFxes55B1wyBR2RBPNhjUDWArMB0bVMwXH3N4C+4D1QKtgDQLGAcuBRcBox8UaIfQFsDVJR6sES3D2ABOBMY0w+yLmeCfZ4FYK1izgcBEXaKSPdADNgnUGmGLLsZEAeOb6C2gTLG2XMQoT6BAs1RVK8jH6JtAZsBwSCVhOWEpe+doex2UaI1SQAlbK/3XASgkq0xuGslICC2WlBBXKcoAKWAHLScARHjkrYDkIOEJDWQHLQcARGsoKWA4CjtBQVsByEHCEhrICloOAIzSUFbAcBByhoayA5SDgCA1lBSwHAUdoKCtgOQg4QkNZActBwBEaygpYDgKO0FBWwHIQcISGsgKWg4AjNJQVsBwEHKGhrIDlIOAIDWUFLAcBR2goK2A5CDhCQ1kBy0HAERrKClgOAo7QUFZ6WF0/zozf7qQD1vWz34BVGJYYtQeswqAU8UPeFwErHayniVnIuoBVGJYMfHYnjk+rA1bvsOR38RE4ZV40LQErP6wMqEvAdmCbwgJWflgyG2sFdpiquqICVk9YUtQns7HbZN5Z3REB6x8s5acbiYnRfrOva88VXcD6q6S7ZoslU7E28+f5z9CokWF9BmRTtzfxN1wDPAe+W0eTN5M1GiwBemVukXKj0073zEqEghVXI8D6aqqRB+lBKzAzgD4UJJQVUK+wtJxeZi0zLbXXpihV5EWNeoIlQHJ+/AbIV1QtyiODJlX1e9Q6LJ0GKAcpF6nabknsQ2/bslPzW9JRy7Bkh3nTFCQ/ZC27B8DPkhKq0Zyluuce8NhsfE+YcbSUpCVY9lHtyhIgwXkCCM5Rc9KWqr6UnU7OF1QjLB3hakkpF523ylpVtaps7WgVG9UESypSb3bFdjPBEaQenuwVI1Ulpw5aZvftkO0YoCV2q5JQevtuKasSDrjqw5SHLpg5/TVTVDUy6r4nwVLpP3YA7DeVb1T7XARO25K7bOdHVQ0pc3OCpec1TCvT3armUe6Rgs4BV4GzA7XVl3pOgiUn/Zn2dAH93Z8hn2bZgeuMSIdnOuxXd69cpPdregjOnGQiK4DpRRpSC4K2e3X32uq1o6lQVG9W8pajkrQzSlqbFH9L7Gkoae9HgARKB/uCo21+l7Ugaa9RU3HZy6452ZEWAkP7eHyMlpkgqb1QHtK2r6cU7CxnT1YtRHNz1MZk4hOAqcAwezCRAGnoVctMlbV2tA1A0WdD1QLAcx9/AM1cFS00t277AAAAAElFTkSuQmCC' x='0' y='0' width='75' height='90'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.service-three__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  opacity: 0;
  transform: translateY(-100px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  transition-delay: 200ms;
  z-index: -1;
}

.service-three__single:hover .service-three__icon::before {
  background-color: rgba(var(--servixa-black-rgb), 1);
  opacity: 1;
  transform: translateY(0px);
}

.service-three__icon span {
  position: relative;
  display: inline-block;
  top: -5px;
  font-size: 45px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.service-three__single:hover .service-three__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.service-three__content {
  position: relative;
  display: block;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 2;
}

.service-three__content-inner {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgba(var(--servixa-primary-rgb), .40);
  padding: 29px 15px 52px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
 
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 2;
}

.service-three__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
}

.service-three__title a {
  color: var(--servixa-black);
}

.service-three__title a:hover {
  color: var(--servixa-base);
}

.service-three__text {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 16px;
}

.service-three__btn-box-two {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.service-three__btn-box-two a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  color: var(--servixa-white);
  font-weight: 600;
  text-transform: capitalize;
  background-color: var(--servixa-base);
  padding: 7px 15px 7px;
  border-radius: 20px;
}

.service-three__btn-box-two a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}

.service-three__carousel.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  margin: 40px 0 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-three__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(var(--servixa-black-rgb), .70);
  background-color: transparent;
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.service-three__carousel.owl-carousel .owl-dot.active {
  border: 2px solid var(--servixa-base);
}

.service-three__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  content: "";
  background-color: rgba(var(--servixa-black-rgb), .70);
  border-radius: 2px;
  transform: scale(1);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.service-three__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
  background-color: var(--servixa-base);
}

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

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

/*==============================================
   Service Page
===============================================*/
.services-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-page .services-one__single {
  margin-bottom: 30px;
  margin-top: 17px;
}

/*==============================================
   Services V2
===============================================*/
.Services-v2 .service-two__wrap {
  -webkit-mask: none;
  mask: none;
}

/*==============================================
   Services V2
===============================================*/
.services-page-v3 {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-page-v3 .row {
  --bs-gutter-x: 15px;
}

.services-page-v3 .service-three__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.service-details__left {
  position: relative;
  display: block;
}

.service-details__img {
  position: relative;
  display: block;
}

.service-details__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.service-details__title-1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-top: 41px;
  margin-bottom: 30px;
}

.service-details__text-1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--servixa-black);
}

.service-details__text-2 {
  margin-top: 20px;
  margin-bottom: 41px;
}

.service-details__points-list {
  position: relative;
  display: block;
}

.service-details__points-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details__points-list li+li {
  margin-top: 16px;
}

.service-details__points-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-base);
}

.service-details__points-list li p {
  color: var(--servixa-black);
}

.service-details__img-box {
  position: relative;
  display: block;
  margin-top: 60px;
  margin-bottom: 31px;
}

.service-details__img-box-single {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.service-details__img-box-img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.service-details__img-box-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  border-radius: var(--servixa-bdr-radius);
  ;
  transition: all 0.5s ease;
  z-index: 1;
}

.service-details__img-box-img:hover:before {
  opacity: 0.2;
}

.service-details__img-box-img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.service-details__img-box-img:hover img {
  transform: scale(1.06) rotate(0deg);
}

.service-details__img-box-content-single {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.service-details__img-box-content-icon-and-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details__img-box-content-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__img-box-content-icon span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: var(--servixa-base);
}

.service-details__img-box-content-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.service-details__img-box-content-text {
  margin-top: 17px;
}

.service-details__faq-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.service-details__sidebar {
  position: relative;
  display: block;
}

.service-details__services-box {
  position: relative;
  display: block;
  padding: 31px 35px 40px;
  background-color: var(--servixa-primary);
  border-radius: var(--servixa-bdr-radius);
}

.service-details__services-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 28px;
}

.service-details__services-list {
  position: relative;
  display: block;
}

.service-details__services-list li {
  position: relative;
  display: block;
}

.service-details__services-list li+li {
  margin-top: 12px;
}

.service-details__services-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  padding: 13px 20px 14px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--servixa-black);
  overflow: hidden;
  z-index: 1;
}

.service-details__services-list li:hover a {
  color: var(--servixa-white);
}

.service-details__services-list li.active a {
  color: var(--servixa-white);
}

.service-details__services-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--servixa-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-details__services-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__services-list li.active a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__services-list li a span {
  color: var(--servixa-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 14px;
}

.service-details__services-list li:hover a span {
  color: var(--servixa-white);
}

.service-details__services-list li.active a span {
  color: var(--servixa-white);
}

.service-details__sidebar-contact {
  position: relative;
  display: block;
  padding-top: 18px;
  padding-bottom: 47px;
  background: var(--servixa-primary);
  text-align: center;
  border-radius: var(--servixa-bdr-radius);
  margin: 30px 0 30px;
  overflow: hidden;
  z-index: 1;
}

.service-details__sidebar-contact::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--servixa-base);
  height: 305px;
  clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
  content: "";
  z-index: -2;
}

.service-details__sidebar-contact::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--servixa-black);
  height: 295px;
  clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
  content: "";
  z-index: -1;
}

.service-details__sidebar-contact-img {
  position: relative;
  display: block;
  clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
  z-index: 1;
}

.service-details__sidebar-contact-img .inner {
  position: relative;
  display: block;
}

.service-details__sidebar-contact-img .inner img {
  width: auto;
}

.service-details__sidebar-contact-content {
  position: relative;
  display: block;
  margin-top: -65px;
  z-index: 2;
}

.service-details__sidebar-contact-content .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: var(--servixa-black);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-details__sidebar-contact-content .icon span {
  position: relative;
  display: inline-block;
  color: var(--servixa-white);
  font-size: 20px;
  line-height: 20px;
}

.service-details__sidebar-contact-content h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 13px;
}

.service-details__sidebar-contact-content h2 a {
  color: var(--servixa-black);
}

.service-details__sidebar-contact-content h2 a:hover {
  color: var(--servixa-base);
}

.service-details__sidebar-contact-content p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-details__sidebar-download-box {
  position: relative;
  display: block;
  padding: 31px 35px 40px;
  background-color: var(--servixa-primary);
  border-radius: var(--servixa-bdr-radius);
}

.service-details__sidebar-single-download {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--servixa-base-rgb), .30);
  padding: 14px 0px 14px;
  line-height: 0;
}

.service-details__sidebar-single-download ul li:first-child {
  padding-top: 0px;
}

.service-details__sidebar-single-download ul li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.service-details__sidebar-single-download ul li .content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__sidebar-single-download ul li .content-box .icon {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li .content-box .icon span {
  position: relative;
  display: inline-block;
  color: var(--servixa-black);
  font-size: 45px;
  line-height: 45px;
}

.service-details__sidebar-single-download ul li .content-box .text-box {
  position: relative;
  display: block;
  margin-left: 17px;
  flex: 1;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a {
  color: var(--servixa-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a:hover {
  color: var(--servixa-base);
}

.service-details__sidebar-single-download ul li .content-box .text-box p {
  color: var(--servixa-black);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box p a {
  color: var(--servixa-black);
}

.service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
  color: var(--servixa-base);
}

.service-details__sidebar-single-download ul li .btn-box {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--servixa-base);
  border-radius: 2px;
  overflow: hidden;
}

.service-details__sidebar-single-download ul li .btn-box a:hover {
  background: var(--servixa-black);
}

.service-details__sidebar-single-download ul li .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--servixa-white);
  font-size: 20px;
  line-height: 20px;
}


/***
=============================================
Product
=============================================
***/
.product {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single+.product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
}

.product__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--servixa-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 30px 30px 30px;
  border-radius: var(--servixa-bdr-radius);
}

.shop-search form {
  position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--servixa-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--servixa-gray);
  font-family: var(--servixa-font);
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type="submit"] {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.product__price-ranger {
  position: relative;
  padding: 27px 30px 30px;
  margin: 0;
  background-color: var(--servixa-primary);
  border-radius: var(--servixa-bdr-radius);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--servixa-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--servixa-base);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--servixa-base);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  background: var(--servixa-black);
  float: right;
  text-align: center;
  border: none;
  color: var(--servixa-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--servixa-gray);
  font-size: 14px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--servixa-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}


.shop-category {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 29px 30px 30px;
  border-radius: var(--servixa-bdr-radius);
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--servixa-gray);
  margin-bottom: 15px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--servixa-gray);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--servixa-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--servixa-base);
}

.shop-category ul li a:after {
  position: absolute;
  right: 5px;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background-color: var(--servixa-base);
  font-family: 'icomoon' !important;
  content: "\e924";
  opacity: 1;
  font-size: 12px;
  color: var(--servixa-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-product-tags {
  position: relative;
  display: block;
  background: var(--servixa-primary);
  padding: 25px 30px 30px;
  border-radius: var(--servixa-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.shop-product__tags-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--servixa-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--servixa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 5px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-product__tags-list a:hover {
  color: var(--servixa-white);
  background: var(--servixa-base);
}


.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li+li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio]+label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--servixa-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--servixa-base);
  border-radius: 0%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked+label i {
  border-color: var(--servixa-base);
}

.sidebar-rating-box ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 29px 30px 27px;
  border-radius: var(--servixa-bdr-radius);
}

.shop-product-recent-products ul {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddbdb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--servixa-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.shop-product-recent-products ul li:hover .img::before {
  opacity: 1;
}

.shop-product-recent-products ul li .img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
  transform: scale(1);
}

.shop-product-recent-products ul li .img a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--servixa-white);
  font-size: 16px;
  line-height: 0;
  transform: translateY(10px) scale(0);
  z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
  color: var(--servixa-base);
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li .content .title h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--servixa-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--servixa-base);
}

.shop-product-recent-products ul li .content .price {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
  color: var(--servixa-base);
}

.shop-product-recent-products ul li .content .review {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-product-recent-products ul li .content .review i {
  color: #ffc009;
  font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
  color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i+i {
  margin-left: 5px;
}

.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 130px;
}

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

.product__showing-text {
  font-size: 16px;
  font-weight: 400;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .select-box .nice-select {
  background-color: var(--servixa-primary);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.product__all {
  position: relative;
  display: block;
}

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

.product__all-tab-button {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 5;
}

.product__all-tab-button ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--servixa-primary);
  padding: 15px 15px 15px;
  border-radius: var(--servixa-bdr-radius);
}

.product__all-tab-button ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
  background-color: var(--servixa-base);
}

.product__all-tab-button ul li+li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--servixa-base);
  font-size: 18px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
  transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
  color: var(--servixa-white);
}

.product__all-tab .tabs-content-box {
  position: relative;
  display: block;
}

.product__all-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(5px);
  transform-origin: top bottom;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
  opacity: 1.0;
  transform: translateY(0px);
  transform-origin: bottom top;
}

.product__all-tab-single {
  position: relative;
  display: block;
}

.single-product-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-white);
  padding: 0 0 30px;
  border-radius: var(--servixa-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style1:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.single-product-style1__overlay li {
  position: relative;
  display: block;
}

.single-product-style1__overlay li+li {
  margin-top: 8px;
}

.single-product-style1__overlay li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--servixa-base);
  line-height: 35px;
  font-weight: 600;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li+li {
  margin-left: 8px;
}

.single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--servixa-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 23px 15px 0px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 12px;
}

.single-product-style1__content-left h4 a {
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--servixa-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-gray);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--servixa-base);
  margin-right: 5px;
}

.single-product-style1__content-right {
  position: relative;
  display: block;
}

.single-product-style1__review {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--servixa-primary);
  padding: 3.5px 5px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  color: var(--servixa-base);
  font-size: 14px;
  margin-right: 5px;
}

.single-product-style1__review p {
  color: var(--servixa-black);
  font-weight: 500;
}


.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
  border-right: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 15px 0px;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i {
  color: var(--servixa-base);
  font-size: 16px;
}

.single-product-style2__review i+i {
  margin-left: 5px;
}

.single-product-style2__text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.single-product-style2__text h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--servixa-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--servixa-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-gray);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--servixa-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-left: 0;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li+li {
  margin-left: 8px;
}

.single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--servixa-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}



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

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

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

.styled-pagination li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: rgba(var(--servixa-gray-rgb), .50);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--servixa-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--servixa-font);
  z-index: 1;
}

.styled-pagination li a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: rgba(var(--servixa-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--servixa-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--servixa-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--servixa-white);
}




/***
=============================================
Product Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}


.product-details__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.product-details__left-inner {
  position: relative;
  display: block;
}

.product-details__thumb-box {
  position: relative;
  display: block;
  max-width: 400px;
  margin-top: 20px;
}

#shop-details-one__thumb {
  z-index: 10;
}

.product-details__thumb-img {
  position: relative;
  display: block;
  width: 125px !important;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--servixa-base);
  opacity: 0;
  transition: all 500ms ease;
}


#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
  opacity: 1;
}

.product-details__content-box {
  position: relative;
  display: block;
}

.product-details__img {
  position: relative;
  display: block;
}

.product-details__img img {
  width: 100%;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-radius: 15px;
}


.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--servixa-black);
  background-color: var(--servixa-primary);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}


.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}


.product-details__right {
  position: relative;
  display: block;
  margin-top: -9px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--servixa-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--servixa-base);
}

.product-details__reveiw i+i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--servixa-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
  font-weight: 600;
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--servixa-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label {
  color: var(--servixa-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type=radio]+label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid var(--servixa-gray);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--servixa-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label i {
  border-color: var(--servixa-base);
}

.product-details__select-size ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
  opacity: 1;
}


.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--servixa-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--servixa-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--servixa-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--servixa-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-2 {
  position: relative;
  display: block;
}

.product-details__social {
  position: relative;
  display: block;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--servixa-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--servixa-white);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--servixa-black);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a+a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 110px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--servixa-black);
  background-color: var(--servixa-primary);
  padding: 16px 25px 16px;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--servixa-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--servixa-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.product-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.product-details__tab-content-inner {
  position: relative;
  display: block;
  padding: 40px 40px 50px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.product-details__description-content {
  position: relative;
  display: block;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--servixa-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--servixa-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
  font-weight: 700;
}

.product-details__additional-information-content {
  position: relative;
  display: block;
}

.product-details__additional-information-text-1 {
  padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}


.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.review-one__content-top .info h2 span {
  color: var(--servixa-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--servixa-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--servixa-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0px 0px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 37px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 400;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--servixa-base);
}

.review-form-one__rate i+i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 14px;
  color: var(--servixa-gray);
  height: 160px;
  width: 100%;
  background-color: var(--servixa-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--servixa-bdr-radius);
}

.review-form-one__input-box.text-message-box {
  height: 160px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--servixa-gray);
  display: block;
  font-weight: 500;
  border-radius: var(--servixa-bdr-radius);
}

.review-form-one__form .thm-btn {
  border: none;
}


/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/
.related-products {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.related-products__title {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.related-products__title h3 {
  font-size: 40px;
  line-height: 1.0em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: capitalize;
}

.related-products__title p {
  margin: 0;
}

.single-product-style1.instyle--2 {
  margin-bottom: 0px;
}


/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--servixa-white);
  padding: 112px 0px 112px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}

.cart-table {
  margin-bottom: 0px;
}

.cart-table thead th {
  color: var(--servixa-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  padding-bottom: 22px;
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--servixa-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 35px;
}

.cart-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-radius: 10px;
}

.cart-table h3 {
  color: var(--servixa-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cart-table h3 a {
  color: var(--servixa-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--servixa-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--servixa-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--servixa-gray);
  font-weight: 700;
}

.cart-table .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--servixa-black);
  font-size: 16px;
}

.cart-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.cart-page__sidebar {
  position: relative;
  display: block;
  padding: 28px 20px 30px;
  background-color: var(--servixa-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: var(--servixa-bdr-radius);
}

.cart-page__shipping {
  position: relative;
  display: block;
}

.cart-page__shipping-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__shipping-form {
  position: relative;
  display: block;
}

.cart-page__shipping-form .row {
  --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
  background-color: var(--servixa-primary);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0px;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
  width: 100%;
  height: 50px;
  background-color: var(--servixa-primary);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--servixa-gray);
  font-family: var(--servixa-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__btn-box {
  position: relative;
  display: block;
}

.cart-page__btn-box .thm-btn {
  width: 100%;
  padding: 5px 20px 5px;
  padding-right: 8px;
  border: none;
  justify-content: space-between;
}

.cart-page__coupon-code {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 23px;
  padding-bottom: 30px;
}

.cart-page__coupon-code-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__coupon-code-text {
  margin-bottom: 16px;
}

.cart-page__coupon-code-form {
  position: relative;
  display: block;
}

.cart-page__coupon-code-form input[type=email],
.cart-page__coupon-code-form input[type=text] {
  width: 100%;
  height: 50px;
  background-color: var(--servixa-primary);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--servixa-gray);
  font-family: var(--servixa-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
  width: 100%;
  padding: 5px 20px 5px;
  padding-right: 8px;
  border: none;
  justify-content: space-between;
  margin-top: 20px;
}

.cart-total {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--servixa-gray);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li+li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--servixa-black);
  font-size: 18px;
  margin-right: 60px;
  font-weight: 700;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--servixa-base);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
}

.cart-page__buttons-1 .thm-btn {
  padding: 5px 20px 5px;
  padding-right: 8px;
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
}

.cart-page__buttons-2 .thm-btn {
  padding: 5px 20px 5px;
  padding-right: 8px;
}


/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  padding: 53px 50px 60px;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title a {
  color: var(--servixa-base);
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 700;
  margin-top: 16px;
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-gray);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-white);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  border-radius: 10px;
  outline: none;
  resize: none;
}

.billing_input_box textarea:focus {
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--servixa-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--servixa-font);
}

.billing_details .checked-box input[type="checkbox"] {
  display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--servixa-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--servixa-white);
  border-right: 2px solid var(--servixa-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
  border-color: var(--servixa-white);
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.billing_details_form .select-box .nice-select {
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-white);
  border-radius: 10px;
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.billing_details_form-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.billing_details_form-btn-1 {
  position: relative;
  display: block;
}

.billing_details_form-btn-1 .thm-btn {
  border: none;
}

.billing_details_form-btn-2 {
  position: relative;
  display: block;
}

.billing_details_form-btn-2 .thm-btn {
  border: none;
}


.sidebar-order-summary {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  padding: 37px 30px 45px;
  z-index: 1;
}

.sidebar-order-summary .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--servixa-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--servixa-white);
  content: "";
}

.sidebar-order-summary .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}


.sidebar-order-summary__list {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--servixa-black-rgb), .10);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.sidebar-order-summary__list>li>.left-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.left-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list>li>.right-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text p {
  font-size: 18px;
  margin: 0px;
}


.sidebar-order-summary__list>li>.right-text>ul {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li+li {
  margin-top: 5px;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.sidebar-order-summary__list>li>.right-text>ul>li label {
  position: relative;
  display: block;
  padding-right: 24px;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]+label i {
  position: absolute;
  top: 6px;
  right: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--servixa-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--servixa-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i {
  border-color: var(--servixa-base);
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}


.sidebar-order-summary__Payment {
  position: relative;
  display: block;
  margin-top: 37px;
}

.checkout__payment {
  position: relative;
  margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
  margin-top: 23px;
}

.checkout__payment__title {
  display: flex;
  color: var(--servixa-black);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  align-items: center;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--servixa-white);
  border: 2px solid rgba(var(--servixa-black-rgb), .10);
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 10px;
  color: var(--servixa-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--servixa-base);
  border-color: var(--servixa-base);
  content: '\f00c';
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--servixa-gray);
  font-weight: 400;
  margin-top: 15px;
}

.sidebar-order-summary__bottom {
  position: relative;
  display: block;
}

.sidebar-order-summary__bottom .text1 {
  margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
  color: var(--servixa-base);
  text-decoration: underline;
}







.sidebar-order-summary__checked {
  position: relative;
  display: block;
  margin-top: 20px;
  ;
}

.sidebar-order-summary__checked label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--servixa-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--servixa-font);
}

.sidebar-order-summary__checked label a {
  color: var(--servixa-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
  display: none;
}

.sidebar-order-summary__checked input[type="checkbox"]+label span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--servixa-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.sidebar-order-summary__checked label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--servixa-white);
  border-right: 2px solid var(--servixa-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
  border-color: var(--servixa-white);
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.sidebar-order-summary__btn {
  position: relative;
  display: block;
  margin-top: 27px;
  line-height: 0px;
}



/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.wishlist-page {
  position: relative;
  display: block;
  background: var(--servixa-white);
  padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .wishlist-table {
    min-width: 1170px;
  }
}

.wishlist-table {
  margin-bottom: 0px;
}

.wishlist-table thead th {
  color: var(--servixa-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(var(--servixa-black-rgb), .10);
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
}

.wishlist-table tbody tr {
  vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
}

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--servixa-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.wishlist-table .product-box {
  display: flex;
  align-items: center;
}

.wishlist-table .cross-icon {
  position: relative;
  display: block;
}

.wishlist-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--servixa-black);
  font-size: 16px;
}

.wishlist-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-left: 35px;
  margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-radius: 10px;
}

.wishlist-table h3 {
  color: var(--servixa-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--servixa-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--servixa-base);
}


.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-primary);
  width: 100%;
  height: 60px;
  color: var(--servixa-black);
  font-size: 16px;
  font-family: var(--servixa-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
  border-color: var(--servixa-base);
  background-color: var(--servixa-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  justify-content: space-between;
  border: none;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--servixa-gray);
  background-color: var(--servixa-white);
  color: var(--servixa-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--servixa-font);
  font-weight: 500;
  padding: 10px 10px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-white);
}

.sign-up-one__form form .google-facebook a+a {
  margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 10px;
}

.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 22px;
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--servixa-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-primary);
  width: 100%;
  height: 60px;
  color: var(--servixa-black);
  font-size: 16px;
  font-family: var(--servixa-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus {
  border-color: var(--servixa-base);
  background-color: var(--servixa-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: space-between;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}


.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--servixa-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--servixa-font);
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--servixa-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
  border-color: var(--servixa-base);
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}


.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--servixa-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--servixa-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--servixa-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--servixa-black);
}

.login-one__form form .create-account p a {
  color: var(--servixa-base);
  font-weight: 500;
}

/*==============================================
    Sliding Text
===============================================*/
.sliding-text {
  position: relative;
  display: block;
  z-index: 1;
}

.sliding-text__inner {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  padding: 35px 0 35px;
  z-index: 1;
}

.sliding-text__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.sliding-text__list {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  flex-wrap: nowrap;
}

.sliding-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  gap: 20px;
}

.sliding-text__list li+li {
  margin-left: 20px;
}

.sliding-text__list li .icon {
  position: relative;
  display: block;
  top: 4px;
}

.sliding-text__list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--servixa-white);
}

.sliding-text__list li>p {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: var(--servixa-white);
  text-transform: uppercase;
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/*==============================================
    Sliding Text
===============================================*/
.sliding-text-two {
  position: relative;
  display: block;
  padding: 52px 0 0;
  z-index: 1;
}

.sliding-text-two__inner {
  position: relative;
  display: block;
}

.sliding-text-two__list {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  flex-wrap: nowrap;
}

.sliding-text-two__list li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  gap: 30px;
}

.sliding-text-two__list li+li {
  margin-left: 20px;
}

.sliding-text-two__list li .icon {
  position: relative;
  display: block;
}

.sliding-text-two__list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 81px;
  color: var(--servixa-base);
  text-transform: uppercase;
}

.sliding-text-two__list li>h2 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 100px;
  line-height: 1.5em;
  font-weight: 700;
  font-style: normal;
  color: var(--servixa-base);
  text-transform: uppercase;
}

/*==============================================
  Sliding Text Three
===============================================*/
.sliding-text-three {
  padding: 0 0 0;
}


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

.team-one__shape-1 {
  position: absolute;
  top: 40px;
  left: -50px;
  z-index: -1;
}

.team-one__shape-1 img {
  width: auto;
}

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

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

.team-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.team-one__img {
  position: relative;
  display: block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='300' height='280' viewBox='0 0 300 280'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEYCAYAAADmlsvOAAAAAXNSR0IArs4c6QAACetJREFUeF7t3DGL5mcZxeGz30xsA6LERgsbQcTKxkq0EcTC3kIrRRQL7QwmGlu1E7VNYadYSIwhQcmaNxkZVyJCEnb29/yvgZS7c57r3BxmJzv7aNvj+SBAgEBA4JHBCrQkIgEC7wgYLIdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKIHLC3zfYF3+BgAQSAj8dttHDVaiKyEJXFrgN9s+u+33BuvSd+DxBJ55gZ9s++K2P96SGqxnvi8BCVxO4I1tv9r27W0/2vbPfwsYrMvdggcTeELgr3dfvby+7fED2dx26PbfX7b9btuvt72w7c3/zmOwHqghn5bAAwv8YtuPb98X2vbKtr9ve+tuOJ52tNsO3T73q/9vNA3W067G5yPwsAIvb/vmtl9uu/3RK/VhsFJ1CUvgAwl8Zds3/vN7Qh/od3uAX2ywHgDdpyTwlAVu3wv63LbvPuXP+6F/OoP1oZP6DQk8cwJf3fa1Zy7V+whksN4Hml9CICTw0rbntv0jlPl/RjVYJ7ToDQTeW+D2TfWP3P01gSOMDNYRNXoEgfcU+OG2T51kY7BOatNbCDwp8OltPzgJxWCd1Ka3ELgX+PPtXzfY9oeTUAzWSW16C4F7gdu/cPCxbX86CcVgndSmtxC4F3jx7Z/Le37bayehGKyT2vQWAvcCtx8e/uS22w81H/NhsI6p0kMIPCHws7uvsG4/1HzMh8E6pkoPIWCw3AABAk0BX2E1e5OawCUFDNYla/doAk0Bg9XsTWoClxQwWJes3aMJNAUMVrM3qQlcUsBgXbJ2jybQFDBYzd6kJnBJAYN1ydo9mkBTwGA1e5OawCUFDNYla/doAk0Bg9XsTWoClxQwWJes3aMJNAUMVrM3qQlcUsBgXbJ2jybQFDBYzd6kJnBJAYN1ydo9mkBTwGA1e5OawCUFDNYla/doAk0Bg9XsTWoClxQwWJes3aMJNAUMVrM3qQlcUsBgXbJ2jybQFDBYzd6kJnBJAYN1ydo9mkBTwGA1e5OawCUFDNYla/doAk0Bg9XsTWoClxR4cdvz21476fWPtj0+6UHeQoDAOwIvbPvEtjdP8jBYJ7XpLQTuBb637TOngRis0xr1HgLvCnx529dPwzBYpzXqPQTe/b7V7Y+DPz8Nw2Cd1qj3ENhu/4fw49veOA3DYJ3WqPcQ2J7b9tMTIQzWia1605UFvrXtC6cCGKxTm/WuKwq8fPdHwb+d+niDdWqz3nU1gZe2ff7tv8rwyskPN1gnt+ttVxB4a9t3tn1p26unP/hfZ6GVAcSnop0AAAAASUVORK5CYII=' x='0' y='0' width='300' height='280'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='300' height='280' viewBox='0 0 300 280'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEYCAYAAADmlsvOAAAAAXNSR0IArs4c6QAACetJREFUeF7t3DGL5mcZxeGz30xsA6LERgsbQcTKxkq0EcTC3kIrRRQL7QwmGlu1E7VNYadYSIwhQcmaNxkZVyJCEnb29/yvgZS7c57r3BxmJzv7aNvj+SBAgEBA4JHBCrQkIgEC7wgYLIdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKAECBssNECCQETBYmaoEJUDAYLkBAgQyAgYrU5WgBAgYLDdAgEBGwGBlqhKUAAGD5QYIEMgIGKxMVYISIGCw3AABAhkBg5WpSlACBAyWGyBAICNgsDJVCUqAgMFyAwQIZAQMVqYqQQkQMFhugACBjIDBylQlKIHLC3zfYF3+BgAQSAj8dttHDVaiKyEJXFrgN9s+u+33BuvSd+DxBJ55gZ9s++K2P96SGqxnvi8BCVxO4I1tv9r27W0/2vbPfwsYrMvdggcTeELgr3dfvby+7fED2dx26PbfX7b9btuvt72w7c3/zmOwHqghn5bAAwv8YtuPb98X2vbKtr9ve+tuOJ52tNsO3T73q/9vNA3W067G5yPwsAIvb/vmtl9uu/3RK/VhsFJ1CUvgAwl8Zds3/vN7Qh/od3uAX2ywHgDdpyTwlAVu3wv63LbvPuXP+6F/OoP1oZP6DQk8cwJf3fa1Zy7V+whksN4Hml9CICTw0rbntv0jlPl/RjVYJ7ToDQTeW+D2TfWP3P01gSOMDNYRNXoEgfcU+OG2T51kY7BOatNbCDwp8OltPzgJxWCd1Ka3ELgX+PPtXzfY9oeTUAzWSW16C4F7gdu/cPCxbX86CcVgndSmtxC4F3jx7Z/Le37bayehGKyT2vQWAvcCtx8e/uS22w81H/NhsI6p0kMIPCHws7uvsG4/1HzMh8E6pkoPIWCw3AABAk0BX2E1e5OawCUFDNYla/doAk0Bg9XsTWoClxQwWJes3aMJNAUMVrM3qQlcUsBgXbJ2jybQFDBYzd6kJnBJAYN1ydo9mkBTwGA1e5OawCUFDNYla/doAk0Bg9XsTWoClxQwWJes3aMJNAUMVrM3qQlcUsBgXbJ2jybQFDBYzd6kJnBJAYN1ydo9mkBTwGA1e5OawCUFDNYla/doAk0Bg9XsTWoClxQwWJes3aMJNAUMVrM3qQlcUsBgXbJ2jybQFDBYzd6kJnBJAYN1ydo9mkBTwGA1e5OawCUFDNYla/doAk0Bg9XsTWoClxR4cdvz21476fWPtj0+6UHeQoDAOwIvbPvEtjdP8jBYJ7XpLQTuBb637TOngRis0xr1HgLvCnx529dPwzBYpzXqPQTe/b7V7Y+DPz8Nw2Cd1qj3ENhu/4fw49veOA3DYJ3WqPcQ2J7b9tMTIQzWia1605UFvrXtC6cCGKxTm/WuKwq8fPdHwb+d+niDdWqz3nU1gZe2ff7tv8rwyskPN1gnt+ttVxB4a9t3tn1p26unP/hfZ6GVAcSnop0AAAAASUVORK5CYII=' x='0' y='0' width='300' height='280'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  border-radius: var(--servixa-bdr-radius);
  border-bottom-left-radius: 0;
}

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

.team-one__single:hover .team-one__img::before {
  opacity: 1;
}

.team-one__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  border-bottom-left-radius: 0;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.team-one__social-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.team-one__plus {
  position: relative;
  display: block;
}

.team-one__plus>span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--servixa-base);
  font-size: 16px;
  color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__plus>span:hover {
  background-color: var(--servixa-black);
}

.team-one__social-list {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  top: -180px;
  left: 2.5px;
  gap: 5px;
  z-index: 2;
}

.team-one__social-list>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.team-one__plus:hover .team-one__social-list a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.team-one__plus:hover .team-one__social-list a:nth-child(1) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.team-one__plus:hover .team-one__social-list a:nth-child(2) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.team-one__plus:hover .team-one__social-list a:nth-child(3) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.team-one__plus:hover .team-one__social-list a:nth-child(4) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-one__social-list>a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}

.team-one__content {
  position: relative;
  display: block;
  background: var(--servixa-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 9%);
  padding: 100px 30px 30px;
  margin-top: -80px;
  text-align: center;
  border-bottom-left-radius: var(--servixa-bdr-radius);
  border-bottom-right-radius: var(--servixa-bdr-radius);
}

.team-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.team-one__title>a {
  color: var(--servixa-black);
}

.team-one__title>a:hover {
  color: var(--servixa-base);
}

.team-one__profile {
  position: absolute;
  bottom: 0;
  left: 15px;
}

.team-one__profile>a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--servixa-black);
}

.team-one__profile a>span {
  font-size: 12px;
  font-weight: 700;
  color: var(--servixa-base);
}

/*** =============================================
 Team Two
============================================= ***/
.team-two {
  position: relative;
  display: block;
  padding: 0 0 90px;
  z-index: 1;
}

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

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

.team-two__img-box {
  position: relative;
  display: block;
}

.team-two__img {
  position: relative;
  display: block;
 
  border-radius: 10px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  overflow: hidden;
  z-index: 1;
}

.team-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--servixa-black-rgb), 1);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.team-two__single:hover .team-two__img:before {
  opacity: .60;
}

.team-two__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.team-two__content {
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 110px;
  text-align: left;
  z-index: 2;
}

.team-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.team-two__title a {
  color: var(--servixa-black);
}

.team-two__title a:hover {
  color: var(--servixa-base);
}

.team-two__social-box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.team-two__plus {
  position: relative;
  display: block;
}

.team-two__plus span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--servixa-base);
  font-size: 16px;
  color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__plus>span:hover {
  background-color: var(--servixa-black);
}

.team-two__social-list {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  bottom: -180px;
  padding-top: 10px;
  left: 0;
  gap: 5px;
  z-index: 2;
}

.team-two__social-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  z-index: 1;
}

.team-two__social-box:hover .team-two__social-list a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.team-two__social-box:hover .team-two__social-list a:nth-child(1) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-two__social-box:hover .team-two__social-list a:nth-child(2) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.team-two__social-box:hover .team-two__social-list a:nth-child(3) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.team-two__social-box:hover .team-two__social-list a:nth-child(4) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.team-two__social-list a:hover {
  background-color: var(--servixa-white);
  color: var(--servixa-base);
}


/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  position: relative;
  display: block;
  background-color: var(--servixa-primary);
  padding: 120px 0 90px;
  z-index: 1;
}

.team-three__inner {
  position: relative;
  display: block;
}

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

.team-three__img-box {
  position: relative;
  display: block;
}

.team-three__img {
  position: relative;
  display: block;
  border-radius: var(--servixa-bdr-radius);
  overflow: hidden;
}

.team-three__img:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease-out;
  background-color: rgba(17, 17, 17, .70);
  border-radius: var(--servixa-bdr-radius);
}

.team-three__single:hover:hover .team-three__img:after {
  opacity: 1
}

.team-three__img img {
  width: 100%;
  transform: scale(1.01);
  transition: transform .5s cubic-bezier(.27, .48, .45, .94);
  transform-origin: 70% 80%;
  border-radius: var(--servixa-bdr-radius);
}

.team-three__single:hover .team-three__img img {
  transform: scale(1.036);
  transition-duration: .9s
}

.team-three__content-inner {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -70px;
  z-index: 2;
}

.team-three__content {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  padding: 16px 20px 19px;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.team-three__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.team-three__title a {
  color: var(--servixa-black);
}

.team-three__title a:hover {
  color: var(--servixa-base);
}

.team-three__sub-title {
  font-size: 15px;
  line-height: 25px;
}

.team-three__social-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 0;
  right: 0;
  z-index: 2;
}

.team-three__plus {
  position: relative;
  display: block;
}

.team-three__plus>span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--servixa-base);
  font-size: 16px;
  color: var(--servixa-white);
  border-radius: var(--servixa-bdr-radius);
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-three__social-list {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  top: -180px;
  left: 2.5px;
  gap: 5px;
  z-index: 2;
}

.team-three__social-list>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.team-three__plus:hover .team-three__social-list a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.team-three__plus:hover .team-three__social-list a:nth-child(1) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.team-three__plus:hover .team-three__social-list a:nth-child(2) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.team-three__plus:hover .team-three__social-list a:nth-child(3) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.team-three__plus:hover .team-three__social-list a:nth-child(4) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-three__social-list a:hover {
  background-color: var(--servixa-white);
  color: var(--servixa-base);
}

/*** =============================================
Team Page V2
============================================= ***/
.team-page-v2 {
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 108px;
  z-index: 1;
}

.team-details__top {
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--servixa-black-rgb), .10);
  margin-bottom: 37px;
}

.team-details__top-left {
  position: relative;
  display: block;
}

.team-details__img-1 {
  position: relative;
  display: block;
}

.team-details__img-1 img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -12px;
}

.team-details__client-box {
  position: relative;
  display: block;
}

.team-details__client-name {
  font-size: 34px;
  font-weight: 600;
  line-height: 44px;
  text-transform: capitalize;
}

.team-details__client-sub-title {
  position: relative;
  display: block;
  margin-top: 3px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 30px;
}

.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--servixa-base);
  font-size: 16px;
  border-radius: var(--servixa-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--servixa-base);
  z-index: 1;
}

.team-details__social a:hover {
  color: var(--servixa-white);
  border: 1px solid var(--servixa-base);
}

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

.team-details__social a:hover:before {
  transform: scaleX(1);
}

.team-details__social a+a {
  margin-left: 10px;
}

.team-details__client-address {
  position: relative;
  display: block;
  border-top: 1px solid var(--servixa-bdr-color);
  margin-top: 20px;
  padding-top: 20px;
}

.team-details__client-address li {
  position: relative;
  display: block;
}

.team-details__client-address li+li {
  margin-top: 16px;
}

.team-details__client-address li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--servixa-black);
}

.team-details__client-address li p span {
  color: var(--servixa-black);
}

.team-details__client-address li h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-top: 5px;
  font-family: var(--servixa-font);
}

.team-details__client-address li h5 a {
  color: var(--servixa-black);
}

.team-details__client-address li h5 a:hover {
  color: var(--servixa-base);
}

.team-details__bottom {
  position: relative;
  display: block;
}

.team-details__bottom-left {
  position: relative;
  display: block;
}

.team-details__bottom-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 13px;
}

.team-details__practice-area {
  position: relative;
  display: block;
  margin-top: 15px;
}

.team-details__practice-area-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.team-details__practice-area-list-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.team-details__practice-area-list {
  position: relative;
  display: block;
}

.team-details__practice-area-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.team-details__practice-area-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6px;
  width: 6px;
  background-color: var(--servixa-base);
}

.team-details__practice-area-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.team-details__practice-area-list li .text p {
  font-weight: 500;
  color: var(--servixa-base);
}


.team-details__bottom-right {
  position: relative;
  display: block;
}

.team-details__progress-title-1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 23px;
}

.team-details__progress-list {
  position: relative;
  display: block;
}

.team-details__progress-list li {
  position: relative;
  display: block;
}

.team-details__progress-list li+li {
  margin-top: 20px;
}

.team-details__progress {
  position: relative;
  display: block;
}

.team-details__progress-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--servixa-black);
  margin-bottom: 11px;
}

.team-details__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--servixa-primary);
  border-radius: 6px;
}

.team-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--servixa-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress .count-text {
  position: absolute;
  right: -18px;
  bottom: 22px;
  color: var(--servixa-black);
  line-height: 26px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: var(--servixa-font);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.team-details__progress .bar.marb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Details Contact
--------------------------------------------------------------*/
.team-details-contact {
  position: relative;
  display: block;
  padding: 0px 0 120px;
  z-index: 1;
}

.team-details-contact .container {
  max-width: 830px;
}

.team-details-contact__inner {
  position: relative;
  display: block;
  text-align: center;
}

.team-details-contact__form {
  position: relative;
  display: block;
}

.team-details-contact__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-details-contact__input-box input[type="text"],
.team-details-contact__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--servixa-bdr-color);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-gray);
  display: block;
  border-radius: var(--servixa-bdr-radius);
}

.team-details-contact__input-box .select-box {
  width: 100%;
}

.team-details-contact__input-box .nice-select {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--servixa-bdr-color);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-gray);
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
  line-height: 60px;
  display: block;
  float: none;
}

.team-details-contact__input-box .nice-select:after {
  position: absolute;
  top: 22px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--servixa-gray);
  border-right: 2px solid var(--servixa-gray);
  margin-top: 0px;
  z-index: 10;
}

.team-details-contact__input-box textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--servixa-bdr-color);
  padding: 15px 30px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--servixa-gray);
  position: relative;
  display: block;
  border-radius: var(--servixa-bdr-radius);
}

.team-details-contact__input-box.text-message-box {
  height: 200px;
}

.team-details-contact__btn-box {
  position: relative;
  display: block;
}

.team-details-contact__btn-box .thm-btn {
  border: none;
}

.team-details-contact__btn-box .thm-btn:hover {
  border: none;
}

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

.testimonial-one__wrap {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--servixa-primary);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
  padding-top: 40px;
}

.testimonial-one__single-inner {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  padding: 45px 30px 31px;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.testimonial-one__img {
  position: absolute;
  top: -38px;
  right: 50px;
  width: 77px;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.testimonial-one__img img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 22px;
}

.testimonial-one__client-content {
  position: relative;
  display: block;
}

.testimonial-one__client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.testimonial-one__client-name a {
  color: var(--servixa-black);
}

.testimonial-one__client-name a:hover {
  color: var(--servixa-base);
}

.testimonial-one__rating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}

.testimonial-one__rating span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--servixa-base);
}

.testimonial-one__quote {
  position: absolute;
  bottom: 50px;
  left: 170px;
  z-index: 1;
}

.testimonial-one__quote span {
  position: relative;
  display: inline-block;
  font-size: 120px;
  line-height: 120px;
  color: var(--servixa-gray);
  opacity: .05;
  font-weight: 900;
}

.testimonial-one__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  z-index: 2;
}

.testimonial-one__nav .swiper-button-prev1,
.testimonial-one__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border: 0;
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  font-size: 16px;
  margin: 0px 0px;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-one__nav .swiper-button-prev1:hover,
.testimonial-one__nav .swiper-button-next1:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}

.testimonial-one__nav .swiper-button-next1 {
  margin-right: 10px;
}

/***  =============================================
      Testimonial Two
=============================================  ***/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 1;
}

.testimonial-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.testimonial-two__top .section-title {
  margin-bottom: 0px;
}

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

.testimonial-two__single-inner {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  padding: 30px 30px 35px;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.testimonial-two__single-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .12;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-two__author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.testimonial-two__author-img {
  position: relative;
  display: block;
  max-width: 80px;
  width: 100%;
  border: 3px solid rgba(var(--servixa-base-rgb), 10);
  border-radius: 50%;
}

.testimonial-two__author-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-two__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.testimonial-two__author-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.testimonial-two__author-name a {
  color: var(--servixa-white);
}

.testimonial-two__author-name a:hover {
  color: var(--servixa-base);
}

.testimonial-two__author-sub-title {
  font-weight: 500;
  color: rgba(var(--servixa-white-rgb), .80);
}

.testimonial-two__author-text {
  color: rgba(var(--servixa-white-rgb), .80);
  margin-top: 25px;
}

.testimonial-two__days {
  position: absolute;
  bottom: -4px;
  left: 6px;
  z-index: 2;
}

.testimonial-two__days span {
  font-weight: 500;
  color: var(--servixa-base);
  font-size: 14px;
}

.testimonial-two__ratting {
  position: absolute;
  top: 2px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.testimonial-two__ratting span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--servixa-base);
}

.testimonial-two__quote {
  position: absolute;
  top: 59px;
  right: 30px;
}

.testimonial-two__quote span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--servixa-base);
}

.testimonial-two__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
}

.testimonial-two__nav .swiper-button-prev1,
.testimonial-two__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border: 0;
  color: var(--servixa-white);
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  font-size: 16px;
  margin: 0px 0px;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-two__nav .swiper-button-prev1:hover,
.testimonial-two__nav .swiper-button-next1:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}

.testimonial-two__nav .swiper-button-next1 {
  margin-right: 10px;
}


/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  padding: 90px 0px 120px;
  z-index: 1;
}

.testimonial-three__inner {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two-shape__color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--servixa-black);
  border-radius: 20px;
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.testimonial-two-shape__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  mix-blend-mode: soft-light;
}

.testimonial-three__main-content {
  position: relative;
  display: block;
}

.testimonial-three__main-content .swiper-container {
  padding: 80px 0px 160px;
  margin-left: 90px;
  margin-right: 115px;
}

.testimonial-three__main-content-inner {
  position: relative;
  display: block;
}

.testimonial-three__main-content-box {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
}

.testimonial-three__quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  background-color: rgba(var(--servixa-base-rgb), .60);
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 500ms ease;
  z-index: 1;
}

.testimonial-three__quote:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  z-index: -1;
}

.testimonial-three__quote i {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.testimonial-three__text {
  color: var(--servixa-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
}

.testimonial-three__client-info-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.testimonial-three__client-info {
  position: relative;
  display: block;
  margin-top: 20px;
}

.testimonial-three__client-info h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--servixa-white);
}

.testimonial-three__client-info h3 a {
  color: var(--servixa-white);
}

.testimonial-three__client-info h3 a:hover {
  color: var(--servixa-base);
}

.testimonial-three__client-info p {
  color: var(--servixa-white);
  margin-top: 2px;
  opacity: .70;
}

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

.testimonial-three__ratting span+span {
  margin-left: 5px;
}

.testimonial-three__ratting span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--servixa-base);
}

.testimonial-three__img {
  position: absolute;
  bottom: -160px;
  right: 70px;
}

.testimonial-three__img img {
  width: auto;
}

.testimonial-three__thumb-box {
  position: absolute;
  top: 51%;
  right: 0px;
  width: 100px;
  height: 340px;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 99;
}

#testimonial-three__thumb {
  position: absolute;
  top: 0;
  left: auto;
  bottom: 0;
  right: 0px;
  z-index: 5;
}

@media (max-width: 767px) {
  #testimonial-three__thumb {
    display: none;
  }
}

.testimonial-three__img-holder-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 100px;
  width: 100px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-three__img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid rgba(var(--servixa-base-rgb), 1);
  cursor: pointer;
  z-index: 1;
}

.testimonial-three__img-holder:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  background-color: rgba(var(--servixa-base-rgb), 0);
  border-radius: 10px;
  z-index: 1;
  transition: all 500ms ease;
}

.swiper-slide-thumb-active .testimonial-three__img-holder:before {
  background-color: rgba(var(--servixa-base-rgb), .5);
}

.testimonial-three__img-holder>img {
  width: 100%;
  transition: all 0.5s ease-in-out 0.6s;
  border-radius: 10px;
}

.testimonial-three__nav {
  position: absolute;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 100;
  bottom: 80px;
  left: 90px;
}

.testimonial-three__nav .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: rgba(var(--servixa-white-rgb), .50);
  background-color: transparent;
  border: 2px solid rgba(var(--servixa-white-rgb), .10);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: rgba(var(--servixa-white-rgb), .50);
  background-color: transparent;
  border: 2px solid rgba(var(--servixa-white-rgb), .10);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-three__nav .swiper-button-next:hover,
.testimonial-three__nav .swiper-button-prev:hover {
  color: var(--servixa-black);
  background-color: var(--servixa-white);
  border: 2px solid rgba(var(--servixa-white-rgb), 1);
}

.testimonial-three__nav .swiper-button-next i,
.testimonial-three__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-three__nav .swiper-button-next i {
  transform: rotate(180deg);
}

.testimonial-three__nav .swiper-button-next::after,
.testimonial-three__nav .swiper-button-prev::after {
  display: none;
}

/***  =============================================
Testimonials Page
=============================================  ***/
.testimonials-page {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonials-page .testimonial-one__wrap {
  -webkit-mask: none;
  mask: none;
  padding: 158px 0 52px;
}

.testimonials-page .testimonial-one__single-inner {
  margin-bottom: 68px;
}

/***  =============================================
testimonials Page V2
=============================================  ***/
.testimonials-page-v2 {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.testimonials-page-v2__inner {
  position: relative;
  display: block;
}

.testimonials-page-v2 .testimonial-two__single-inner {
  margin-bottom: 30px;
}

/***  =============================================
testimonials Page V3
=============================================  ***/
.testimonials-page-v3 {
  padding: 120px 0px 120px;
}


/*==============================================
    Video One  
===============================================*/
.video-one {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--servixa-black);
  z-index: 1;
}

.video-one__inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 120px 0 120px;
}

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

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

.video-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 20px;
  color: var(--servixa-base);
  background-color: var(--servixa-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

.video-one__video-icon:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.video-one__video-icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--servixa-white-rgb), .30);
  border-radius: 50%;
  z-index: -1;
}

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

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

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

.video-one__title {
  font-size: 40px;
  color: var(--servixa-white);
  line-height: 1.25em;
  font-weight: 700;
  text-transform: capitalize;
  margin: 40px 0 25px;
}

.video-one__btn-box {
  position: relative;
  display: inline-block;
}

.video-one__btn-box .thm-btn:hover>span {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.video-one__btn-box .thm-btn:hover {
  color: var(--servixa-base);
}

.video-one__btn-box .thm-btn::before,
.video-one__btn-box .thm-btn::after {
  background-color: var(--servixa-white);
}

.video-one__shape-1 {
  position: absolute;
  right: -90px;
  bottom: -50px;
  animation: swing-x 1s ease-in-out 1s forwards infinite alternate;
}

.video-one__shape-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# Video Two
--------------------------------------------------------------*/
.video-two {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  z-index: 1;
}

.video-two__inner {
  position: relative;
  display: block;
  background-color: var(--servixa-black);
  text-align: center;
  padding: 129px 0 140px;
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  overflow: hidden;
  z-index: 1;
}

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

.video-two__shape-1 {
  position: absolute;
  top: 215px;
  right: 416px;
  animation: swing-x 1s ease-in-out 1s forwards infinite alternate;
}

.video-two__shape-1 img {
  width: auto;
}

.video-two__title {
  font-size: 55px;
  font-weight: 600;
  line-height: 1em;
  color: var(--servixa-white);
}

.video-two__video-link {
  position: relative;
  display: inline-block;
  margin-top: 37px;
}

.video-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 30px;
  color: var(--servixa-white);
  background-color: rgba(var(--servixa-base-rgb), 0.90);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
}

.video-two__video-icon:hover {
  background-color: var(--servixa-white);
  color: var(--servixa-black);
}

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

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

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

.video-two__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 325px;
  height: 50%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 0%);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 345px;
  height: 53%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 0%);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 325px;
  height: 50%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__shape-5 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 345px;
  height: 53%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__shape-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 325px;
  height: 50%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__shape-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 345px;
  height: 53%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__shape-8 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 325px;
  height: 50%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__shape-9 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 345px;
  height: 53%;
  background-color: rgba(var(--servixa-base-rgb), 1.0);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.video-two__bottom-text {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.video-two__bottom-text p {
  font-weight: 600;
  color: var(--servixa-base);
  text-transform: capitalize;
}


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

.why-choose-one__right-bg-color {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -19px;
  width: calc((100% - -243px) / 2);
  background-color: var(--servixa-base);
  z-index: -1;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 73% 100%, 73% 93%, 6% 93%, 0 70%);
}

.why-choose-one__right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% - -197px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -1;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 74.5% 100%, 74.5% 93%, 5.5% 93%, 0 72%);
}

.why-choose-one__sliding-text-list {
  position: absolute;
  top: -58px;
  left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
  z-index: -1;
}

.why-choose-one__sliding-text-list li {
  position: relative;
  display: flex;
  float: left;
  margin-left: 60px;
}

.why-choose-one__sliding-text-title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 150px;
  line-height: 1.5em;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(217, 2, 2, .10) 0%, rgba(217, 2, 2, 0) 67.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-one__left {
  position: relative;
  display: block;
  z-index: 2;
}

.why-choose-one__left .section-title {
  margin-bottom: 28px;
}

.why-choose-one__points-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin: 27px 0 25px;
}

.why-choose-one__points-list {
  position: relative;
  display: block;
}

.why-choose-one__points-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-choose-one__points-list li .icon {
  position: relative;
  display: inline-block;
}

.why-choose-one__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--servixa-base);
}

.why-choose-one__points-list li+li {
  margin-top: 12px;
}

.why-choose-one__points-list li p {
  font-weight: 600;
  color: var(--servixa-black);
}

.why-choose-one__points-list-shape-1 {
  position: absolute;
  top: 50%;
  left: 259px;
  height: 150px;
  width: 1px;
  background-color: var(--servixa-bdr-color);
  transform: translateY(-50%);
}

.why-choose-one__author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-choose-one__author-img {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.why-choose-one__author-img img {
  width: 100%;
  border-radius: 50%;
}

.why-choose-one__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-one__author-content p {
  display: block;
  position: relative;
  margin-bottom: 5px;
}

.why-choose-one__author-content p>span {
  font-weight: 500;
  color: var(--servixa-black);
}

.why-choose-one__author-content p {
  font-weight: 600;
}

.why-choose-one__author-content p a {
  color: var(--servixa-black);
}

.why-choose-one__author-content p a:hover {
  color: var(--servixa-base);
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-left: 120px;
  margin-right: -100px;
  margin-top: 50px;
}

.why-choose-one__count-single {
  position: relative;
  display: block;
  text-align: center;
  background-color: rgba(var(--servixa-black-rgb), .90);
  padding: 40px 40px 32px;
  border-radius: var(--servixa-bdr-radius);
  margin-bottom: 30px;
}

.why-choose-one__count-icon {
  position: relative;
  display: inline-block;
}

.why-choose-one__count-icon span {
  position: relative;
  display: inline-block;
  font-size: 52px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-one__count-single:hover .why-choose-one__count-icon span {
  transform: scale(0.9);
}

.why-choose-one__count-content {
  position: relative;
  display: block;
}

.why-choose-one__count-count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 2px;
}

.why-choose-one__count-count-box h3 {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px !important;
  color: var(--servixa-white);
  font-family: var(--servixa-font) !important;
}

.why-choose-one__count-count-box span {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
  color: var(--servixa-white);
  font-family: var(--servixa-font) !important;
}

.why-choose-one__count-text {
  font-size: 18px;
  line-height: 28px;
  color: var(--servixa-white);
  text-transform: capitalize;
}

/*==============================================
    Why Choose Two
===============================================*/
.why-choose-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.why-choose-two__left {
  position: relative;
  display: block;
  margin-right: 60px;
}

.why-choose-two__left .section-title {
  margin-bottom: 20px;
}

.why-choose-two__points {
  position: relative;
  display: block;
  margin: 25px 0 30px;
}

.why-choose-two__points li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.why-choose-two__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--servixa-base);
}

.why-choose-two__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.why-choose-two__points li:hover .icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.why-choose-two__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-two__points li .content h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-choose-two__points li+li {
  margin-top: 20px;
}

.why-choose-two__btn-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.why-choose-two__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-choose-two__call-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-two__call-box .icon:hover {
  background-color: var(--servixa-black);
}

.why-choose-two__call-box .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-white);
}

.why-choose-two__call-box .content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-two__call-box .content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.why-choose-two__call-box .content h4 a {
  color: var(--servixa-black);
}

.why-choose-two__call-box .content h4 a:hover {
  color: var(--servixa-base);
}

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

.why-choose-two__img-box {
  position: relative;
  display: block;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.why-choose-two__img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: var(--servixa-bdr-radius);
  background-color: var(--servixa-primary);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.why-choose-two__img-box .before-after {
  position: relative;
}

.why-choose-two__img-box .before-after .twentytwenty-container img {
  width: 100%;
}

.why-choose-two__img-box .before-after .twentytwenty-horizontal .twentytwenty-before-label:before {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100px;
  height: 100px;
  line-height: 90px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--servixa-white);
  margin: 0px;
  padding: 0px;
  background: transparent;
  z-index: 2;
  transform: rotate(-45deg);
  text-transform: uppercase;
  display: none;
}

.why-choose-two__img-box .before-after .twentytwenty-horizontal .twentytwenty-before-label:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.why-choose-two__img-box .before-after .twentytwenty-horizontal .twentytwenty-after-label:before {
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 140px;
  text-align: center;
  font-size: 16px;
  background: transparent;
  font-weight: 700;
  color: var(--servixa-white);
  margin: 0px;
  padding: 0px;
  bottom: 0px;
  transform: rotate(-45deg);
  z-index: 2;
  text-transform: uppercase;
  display: none;
}

.why-choose-two__img-box.before-after .twentytwenty-horizontal .twentytwenty-after-label:after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.twentytwenty-after-label,
.twentytwenty-before-label {
  opacity: 1 !important;
}

.why-choose-two__img-box .twentytwenty-overlay {
  border-radius: 10px
}

.why-choose-two__img-box .twentytwenty-horizontal .twentytwenty-before-label:before,
.why-choose-two__img-box .twentytwenty-horizontal .twentytwenty-after-label:before {
  bottom: 0px;
  background-color: var(--servixa-base);
  border-radius: 5px;
  z-index: 999;
}

.why-choose-two__img-box .twentytwenty-before-label:before,
.why-choose-two__img-box .twentytwenty-after-label:before {
  padding: 0 19px;
}

.before-after__img {
  position: relative;
  display: block;
}



/*--------------------------------------------------------------
# Why Choose Three
--------------------------------------------------------------*/
.why-choose-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

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

.why-choose-three__right {
  position: relative;
  display: block;
  margin-left: 15px;
}

.why-choose-three__right .section-title {
  margin-bottom: 20px;
}

.why-choose-three__list-box {
  position: relative;
  display: block;
  margin-top: 35px;
}

.why-choose-three__list {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -5px;
  margin-right: -5px;
  flex-wrap: wrap;
}

.why-choose-three__list li {
  position: relative;
  display: block;
  padding-right: 5px;
  padding-left: 5px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  margin-bottom: 30px;
}

.why-choose-three__list-single {
  position: relative;
  display: block;
  padding: 27px 25px 24px;
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 1;
}

.why-choose-three__list-single-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .30;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.why-choose-three__list li .icon {
  position: relative;
  display: inline-block;
}

.why-choose-three__list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 49px;
  color: var(--servixa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.why-choose-three__list li:hover .icon span {
  transform: scale(0.9);
}

.why-choose-three__list-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 9px;
}

.why-choose-three__list-title a {
  color: var(--servixa-white);
}

.why-choose-three__list-title a:hover {
  color: var(--servixa-black);
}

.why-choose-three__list-arrow {
  position: absolute;
  top: 0;
  right: 5px;
  z-index: 2;
}

.why-choose-three__list-arrow a {
  font-size: 16px;
  color: var(--servixa-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--servixa-base);
  border-radius: var(--servixa-bdr-radius);
}

.why-choose-three__list-arrow a:hover {
  color: var(--servixa-white);
  background-color: var(--servixa-black);
}

.why-choose-three__bottom-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--servixa-black);
  margin-top: 11px;
}

.why-choose-three__bottom-text a {
  color: var(--servixa-base);
}

.why-choose-three__bottom-text a:hover {
  color: var(--servixa-black);
}

/*--------------------------------------------------------------
# About Page Why Choose Css
--------------------------------------------------------------*/
.about-page-why-choose {
  padding: 81px 0 120px;
}







/*--------------------------------------------------------------
# Dashboard Css
--------------------------------------------------------------*/
.dashboard {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.dashboard__sidebar {
  position: relative;
  display: block;
  background: var(--servixa-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  padding: 20px 20px 20px;
  border-radius: var(--servixa-bdr-radius);
}

.dashboard__user {
  position: relative;
  background: var(--servixa-white);
  border: 1px solid var(--servixa-bdr-color);
  border-radius: var(--servixa-bdr-radius);
  padding: 20px 15px 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}

.dashboard__user-avatar {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 1;
}

.dashboard__user-avatar img {
  width: 100%;
  border-radius: 50%;
}

.dashboard__user-avatar button {
  position: absolute;
  border-radius: 50px;
  background: var(--servixa-base);
  color: var(--servixa-white);
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 28px;
  text-align: center;
  border: none;
  right: 0;
  bottom: 0;
}

.dashboard__user-avatar-file {
  display: none;
}

.dashboard__user-info {
  position: relative;
  display: block;
}

.dashboard__user-name {
  font-size: 24px;
  line-height: 1em;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard__user-email {
  position: relative;
  display: block;
}

.dashboard__user-email a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--servixa-black);
}

.dashboard__user-email a:hover {
  color: var(--servixa-base);
}

.dashboard__menu {
  position: relative;
  display: block;
}

.dashboard__menu-item {
  position: relative;
  display: block;
}

.dashboard__menu-item+.dashboard__menu-item {
  margin-top: 10px;
}

.dashboard__menu-link {
  position: relative;
  display: block;
  padding: 10px 12px 10px;
  border-radius: 10px;
  color: var(--servixa-black);
  border: 1px solid rgba(var(--servixa-bdr-color-rgb), 1);
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
}

.dashboard__menu-link i {
  position: relative;
  display: inline-block;
  color: var(--servixa-base);
  padding-right: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__menu-link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--servixa-base);
  border-radius: 10px;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.dashboard__menu-link:hover,
.dashboard__menu-link.active {
  border-color: rgba(var(--servixa-base-rgb), .2);
  color: var(--servixa-white);
}

.dashboard__menu-link:hover i,
.dashboard__menu-link.active i {
  color: var(--servixa-white);
}

.dashboard__menu-link:hover:before,
.dashboard__menu-link.active:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.dashboard__badge {
  position: relative;
  display: block;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  line-height: 25px;
  color: var(--servixa-white);
  background: var(--servixa-base);
  font-weight: 600;
  float: right;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__menu-link:hover .dashboard__badge,
.dashboard__menu-link.active .dashboard__badge {
  background-color: var(--servixa-white);
  color: var(--servixa-base);
}

.dashboard__main-content {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 10px;
  padding: 20px 20px 20px;
}

.dashboard__topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--servixa-bdr-color);
  padding: 20px;
  border-radius: 10px;
}

.dashboard__search {
  position: relative;
  display: block;
  min-width: 260px;
}

.dashboard__search-form {
  position: relative;
}

.dashboard__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 8px;
  border: 1px solid var(--servixa-bdr-color);
}

.dashboard__search-form ::-webkit-input-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.dashboard__search-form ::-moz-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.dashboard__search-form :-ms-input-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.dashboard__search-form ::-ms-input-placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.dashboard__search-form ::placeholder {
  color: var(--servixa-gray);
  opacity: 1;
}

.dashboard__search-form :-ms-input-placeholder {
  color: var(--servixa-gray);
}

.dashboard__search-form ::-ms-input-placeholder {
  color: var(--servixa-gray);
}

.dashboard__search-form button[type="submit"] {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__search-form:hover button[type="submit"] {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.dashboard__actions-and-user-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.dashboard__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dashboard__icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--servixa-bdr-color);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--servixa-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__icon-btn:hover {
  color: var(--servixa-base);
  border: 1px solid var(--servixa-base);
}

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

.dashboard__user-image {
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--servixa-base);
  transition: transform 0.3s ease;
}

.dashboard__user-menu {
  position: absolute;
  top: 65px;
  right: 0;
  width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 1000;
}

.dashboard__user-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dashboard__user-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: var(--servixa-base);
}

.dashboard__user-thumb {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--servixa-white);
  margin-right: 10px;
}

.dashboard__user-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--servixa-white);
}

.dashboard__user-info p {
  font-size: 12px;
  color: var(--servixa-white);
}

.dashboard__user-actions {
  position: relative;
  display: block;
  padding: 10px 0px 0px;
}

.dashboard__user-actions li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--servixa-bdr-color);
}

.dashboard__user-actions li:last-child {
  border-bottom: none;
}

.dashboard__user-actions li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: var(--servixa-black);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.dashboard__user-actions li a i {
  position: relative;
  display: inline-block;
  color: var(--servixa-base);
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

.dashboard__user-actions li a:hover {
  background-color: rgba(var(--servixa-base-rgb), .10);
  color: var(--servixa-base);
}

.dashboard__content {
  position: relative;
  display: block;
}

.dashboard__widgets-box {
  position: relative;
  display: block;
  padding: 40px 0 40px;
}

.dashboard__widgets-box .row {
  --bs-gutter-x: 20px;
}

.dashboard__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: var(--servixa-bdr-radius);
  padding: 30px 20px 30px;
  transition: all 500ms ease;
}

.dashboard__card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.dashboard__stat-value {
  font-size: 30px;
  font-weight: 700;
  line-height: 1em;
}

.dashboard__stat-label {
  color: var(--servixa-black);
  font-size: 20px;
  line-height: 1em;
  font-weight: 500;
  margin-top: 12px;
}

.dashboard__card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: rgba(var(--servixa-base-rgb), .40);
  border-radius: 50%;
  z-index: 1;
}

.dashboard__card-icon:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: rgba(var(--servixa-base-rgb), .70);
  border-radius: 50%;
  z-index: -1;
}

.dashboard__card-icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.dashboard__card:hover .dashboard__card-icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.dashboard__sales-chart-and-notification {
  position: relative;
  display: block;
  padding-bottom: 40px;
}

.dashboard__sales-chart {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  padding: 20px 20px 20px;
  border-radius: 10px;
}

.dashboard__sales-chart-title-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dashboard__sales-chart-title-box h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
}

.dashboard__sales-chart-title-box p {
  font-size: 15px;
  color: var(--servixa-base);
  line-height: 1em;
  background-color: rgba(var(--servixa-base-rgb), .10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 5px;
}

.dashboard__sales-chart-title-box p a {
  color: var(--servixa-base);
}

.dashboard__sales-chart-title-box p a:hover {
  color: var(--servixa-base);
}

.dashboard__notification {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 15px 15px;
}

.dashboard__notification-list {
  position: relative;
  display: block;
}

.dashboard__notification-list li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--servixa-bdr-color);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.dashboard__notification-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dashboard__notification-list li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dashboard__notification-list li a .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  color: var(--servixa-white);
  font-size: 15px;
  top: 7px;
}

.dashboard__notification-list li a .text {
  position: relative;
  display: block;
  flex: 1;
}

.dashboard__notification-list li a .text p {
  font-size: 15px;
  color: var(--servixa-black);
  font-weight: 400;
}

.dashboard__notification-list li a .text p span {
  font-weight: 700;
}

.dashboard__notification-list li a .text span {
  font-size: 15px;
  font-weight: 400;
  color: var(--servixa-black);
}

.dashboard__recent-booking {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 20px 15px;
}

.table-responsive-box {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .common-table-box {
    min-width: 1170px;
  }
}

.dashboard__recent-booking .table-responsive-box {
  padding-top: 20px;
}

.dashboard__recent-booking .table-responsive-box .table {
  margin-bottom: 0;
  border-color: var(--servixa-bdr-color);
}

.dashboard__recent-booking .table-responsive-box .table thead {
  border-top: 1px solid var(--servixa-bdr-color);
}

.dashboard__recent-booking .table-responsive-box .table thead tr th {
  border-bottom-color: var(--servixa-bdr-color);
  color: var(--servixa-black);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 10px 15px;
}

.dashboard__recent-booking .table-responsive-box .table tbody tr td {
  padding: 15px 10px 15px;
}

.dashboard__recent-booking .table-responsive-box .table tbody tr:last-child td {
  border-bottom: 0;
  padding: 15px 10px 2px;
}

.dashboard__pending-style {
  position: relative;
  display: inline-block;
  color: #ffc107;
  background-color: #fff3cd;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding: 5px 10px 5px;
  border-radius: 5px;
}

.dashboard__completed-style {
  position: relative;
  display: inline-block;
  color: #198754;
  background-color: #d1e7dd;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding: 5px 10px 5px;
  border-radius: 5px;
}

.dashboard__cancelled-style {
  position: relative;
  display: inline-block;
  color: #dc3545;
  background-color: #f8d7da;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding: 5px 10px 5px;
  border-radius: 5px;
}

.dashboard__confirmed-style {
  position: relative;
  display: inline-block;
  color: #0dcaf0;
  background-color: rgba(13, 210, 240, .20);
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding: 5px 10px 5px;
  border-radius: 5px;
}

.dashboard__my-profile-info-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  padding: 22px 0px 18px;
  border-radius: 10px;
  margin-top: 40px;
}

.dashboard__my-profile-info-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1em;
  border-bottom: 1px solid var(--servixa-bdr-color);
  padding-bottom: 21px;
  margin-bottom: 13px;
  padding-left: 30px;
}

.dashboard__my-profile-info-box ul {
  position: relative;
  display: block;
}

.dashboard__my-profile-info-box ul li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid var(--servixa-bdr-color);
  padding-bottom: 13px;
  margin-bottom: 13px;
  padding-left: 30px;
  padding-right: 30px;
}

.dashboard__my-profile-info-box ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dashboard__my-profile-info-box ul li h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
}

.dashboard__my-profile-info-box ul li p {
  color: var(--servixa-black);
  font-weight: 500;
}

.dashboard__my-profile-info-box ul li p a {
  color: var(--servixa-black);
}

.dashboard__my-profile-info-box ul li p a:hover {
  color: var(--servixa-base);
}

.dashboard__my-booking-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 28px 20px 30px;
  margin-top: 40px;
}

.dashboard__my-booking-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3em;
  border-bottom: 1px solid var(--servixa-bdr-color);
  padding-bottom: 21px;
  margin-bottom: 40px;
}

.dashboard__my-booking-form {
  position: relative;
  display: block;
}

.dashboard__my-booking-form .row {
  --bs-gutter-x: 20px;
}

.dashboard__my-booking-form-input-box {
  position: relative;
  display: block;
}

.dashboard__my-booking-form-input-box input[type="search"] {
  display: block;
  outline: none;
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  padding-left: 10px;
  height: 50px;
  width: 100%;
  padding-right: 10px;
  border-radius: var(--servixa-bdr-radius);
  border: 1px solid var(--servixa-bdr-color);
}

.dashboard__my-booking-form-input-box .select-box .nice-select {
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  border: 1px solid var(--servixa-bdr-color);
  margin-bottom: 0px;
}

.dashboard__my-booking-form-input-box .select-box .nice-select:after {
  position: absolute;
  right: 10px;
}

.dashboard__my-booking-form-input-box input[type="text"],
.dashboard__my-booking-form-input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid var(--servixa-bdr-color);
  background-color: var(--servixa-white);
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-gray);
  display: block;
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
}

.dashboard__my-booking-btn-box {
  position: relative;
  display: block;
}

.dashboard__my-booking-btn-box .thm-btn {
  border: none;
  padding: 16px 20px 17px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.dashboard__my-booking-table .table-responsive-box {
  padding-top: 40px;
}

.dashboard__my-booking-table .table-responsive-box .table {
  margin-bottom: 0;
  border-color: var(--servixa-bdr-color);
}

.dashboard__my-booking-table .table-responsive-box .table thead {
  border-top: 1px solid var(--servixa-bdr-color);
}

.dashboard__my-booking-table .table-responsive-box .table thead tr th {
  border-bottom-color: var(--servixa-bdr-color);
  color: var(--servixa-black);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 10px 15px;
}

.dashboard__my-booking-table .table-responsive-box .table tbody tr td {
  padding: 15px 10px 15px;
}

.dashboard__my-booking-btns {
  border: 1px solid var(--servixa-base);
  background: transparent;
  font-size: 15px;
  border-radius: 5px;
  color: var(--servixa-base);
  font-weight: 400;
}

.dashboard__my-booking-history-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 28px 20px 30px;
  margin-top: 40px;
}

.dashboard__my-booking-history-content-box .dashboard__my-booking-title {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dashboard__my-booking-history-content-box .dashboard__my-booking-table .table-responsive-box {
  padding-top: 20px;
}

.dashboard__listing-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 19px 0px;
  margin-top: 40px;
}

.dashboard__listing-content-box .row {
  --bs-gutter-x: 20px;
}

.dashboard__listing-single {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 15px 15px 15px;
  margin-bottom: 20px;
}

.dashboard__listing-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.dashboard__listing-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--servixa-black-rgb), .85);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.dashboard__listing-single:hover .dashboard__listing-img::before {
  opacity: 1;
  transform: translateY(0px);
}

.dashboard__listing-img img {
  width: 100%;
  border-radius: 10px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.dashboard__listing-single:hover .dashboard__listing-img img {
  transform: scale(1.05) rotate(0deg);
}

.dashboard__listing-inner-content {
  position: relative;
  display: block;
  margin-top: 25px;
}

.dashboard__listing-inner-content-title-box {
  position: relative;
  display: block;
}

.dashboard__listing-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.dashboard__listing-title a {
  color: var(--servixa-black);
}

.dashboard__listing-title a:hover {
  color: var(--servixa-base);
}

.dashboard__listing-location {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.dashboard__listing-location .icon {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--servixa-base);
}

.dashboard__listing-location .text {
  position: relative;
  display: block;
  flex: 1;
}

.dashboard__listing-price {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
}

.dashboard__listing-date-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}

.dashboard__listing-date {
  color: var(--servixa-black);
  font-weight: 500;
}

.dashboard__listing-date span {
  font-weight: 600;
}

.dashboard__listing-view-edit-delet {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.dashboard__listing-view-edit-delet a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid var(--servixa-bdr-color);
  color: var(--servixa-black);
  border-radius: var(--servixa-bdr-radius);
}

.dashboard__listing-status {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #d1fae5;
  color: #065f46;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  padding: 6px 15px 6px;
  border-radius: 15px;
}

.dashboard__listing-status.two {
  background-color: rgba(217, 2, 2, .10);
  color: #d90202;
}

.dashboard__listing-status.three {
  background-color: #fef3c7;
  color: #92400e;
}

.dashboard__add-listing-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 20px 0px;
  margin-top: 40px;
}

.dashboard__add-listing-content-box .dashboard__my-booking-title {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.dashboard__add-listing-choose-category-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: var(--servixa-bdr-radius);
  padding: 30px 20px 30px;
  transition: all 500ms ease;
}

.dashboard__add-listing-choose-category-left {
  position: relative;
  display: block;
}

.dashboard__add-listing-choose-category-left h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.dashboard__add-listing-choose-category-left p {
  margin-top: 5px;
}

.dashboard__add-listing-choose-dropdown-box {
  position: relative;
  display: block;
}

.dashboard__add-listing-choose-dropdown-box .dropdown-btn-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  padding: 12px 50px 12px;
  border-radius: 10px;
  font-size: 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__add-listing-choose-dropdown-box .dropdown-btn-box:hover {
  background-color: var(--servixa-black);
}

.dashboard__add-listing-choose-dropdown-box .dropdown-menu {
  background-color: var(--servixa-base);
  border-radius: 10px;
  border: 0;
  left: 0 !important;
  right: 0 !important;
  padding: 0;
  color: var(--servixa-white);
  font-size: 16px;
  overflow: hidden;
}

.dashboard__add-listing-choose-dropdown-box .dropdown-menu li {
  position: relative;
  display: block;
}

.dashboard__add-listing-choose-dropdown-box .dropdown-menu li .dropdown-item {
  color: var(--servixa-white);
  border-bottom: 1px solid rgba(var(--servixa-white-rgb), .30);
  padding: 10px 20px 10px;
}

.dashboard__add-listing-choose-dropdown-box .dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dashboard__add-listing-choose-dropdown-box .dropdown-menu li .dropdown-item:hover {
  background-color: var(--servixa-black);
}

.dashboard__add-listing-single-outer-box {
  position: relative;
  display: block;
}

.dashboard__add-listing-single-outer-box .row {
  --bs-gutter-x: 20px;
}

.dashboard__add-listing-single {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.dashboard__add-listing-single-inner {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: var(--servixa-bdr-radius);
  padding: 30px 20px 30px;
  transition: all 500ms ease;
}

.dashboard__add-listing-single-inner:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.dashboard__add-listing-single-inner h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
}

.dashboard__add-listing-single-inner p {
  color: var(--servixa-gray);
  margin-top: 12px;
}

.dashboard__add-listing-details-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  padding: 22px 20px 20px;
  border-radius: 10px;
  margin-top: 40px;
}

.dashboard__add-listing-details-box .dashboard__my-booking-title {
  margin-bottom: 25px;
}

.dashboard__add-listing-details-form {
  position: relative;
  display: block;
}

.dashboard__add-listing-details-form .row {
  --bs-gutter-x: 20px;
}

.dashboard__add-listing-details-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.dashboard__add-listing-details-input-box label {
  font-size: 16px;
  color: var(--servixa-black);
  margin-bottom: 10px;
}

.dashboard__add-listing-details-input-box .select-box .nice-select {
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
  border: 1px solid var(--servixa-bdr-color);
  margin-bottom: 0px;
}

.dashboard__add-listing-details-input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
}

.dashboard__add-listing-details-input-box input[type="text"],
.dashboard__add-listing-details-input-box input[type="email"],
.dashboard__add-listing-details-input-box input[type="number"],
.dashboard__add-listing-details-input-box input[type="file"],
.dashboard__add-listing-details-upload-btn,
.dashboard__add-listing-details-input-box textarea {
  height: 50px;
  width: 100%;
  border: 1px solid var(--servixa-bdr-color);
  background-color: var(--servixa-white);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--servixa-gray);
  display: block;
  font-weight: 400;
  border-radius: var(--servixa-bdr-radius);
  text-align: left;
}

.dashboard__add-listing-details-input-box textarea {
  height: 120px;
}

.dashboard__add-listing-details-input-box.button-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 0;
}

.dashboard__add-listing-details-input-box.button-box button {
  background-color: var(--servixa-base);
  border: 0;
  padding: 10px 20px 10px;
  border-radius: var(--servixa-bdr-radius);
  color: var(--servixa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__add-listing-details-input-box.button-box button:hover {
  background-color: var(--servixa-black);
}

.dashboard__add-listing-details-upload-file {
  display: none !important;
}

.dashboard__my-wishlist-content-box {
  position: relative;
  display: block;
  padding: 35px 0 0;
}

.dashboard__my-wishlist-content-box .dashboard__my-booking-title {
  border-bottom: 0;
  padding-bottom: 30px;
  margin-bottom: 0;
}

.dashboard__my-wishlist-content-box .row {
  --bs-gutter-x: 20px;
}

.dashboard__my-wishlist-left {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  padding: 20px 20px 20px;
  border-radius: 10px;
}

.dashboard__my-wishlist-left ul {
  position: relative;
  display: block;
}

.dashboard__my-wishlist-left ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--servixa-bdr-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.dashboard__my-wishlist-left ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dashboard__my-wishlist-single {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.dashboard__my-wishlist-single-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.dashboard__my-wishlist-single-thumb {
  position: relative;
  display: block;
  width: 70px;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
}

.dashboard__my-wishlist-single-thumb img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.dashboard__my-wishlist-single-content {
  position: relative;
  display: block;
  flex: 1;
}

.dashboard__my-wishlist-single-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.dashboard__my-wishlist-single-text {
  font-size: 14px;
}

.dashboard__my-wishlist-bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.dashboard__my-wishlist-price-and-rating {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard__my-wishlist-price-and-rating .price-box {
  font-size: 16px;
  color: var(--servixa-base);
  font-weight: 600;
}

.dashboard__my-wishlist-price-and-rating .rating-box {
  font-size: 16px;
  color: #f59e0b;
  line-height: 1em;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.dashboard__my-wishlist-price-and-rating .rating-box span {
  font-size: 12px;
}

.dashboard__my-wishlist-time-and-status {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard__my-wishlist-time {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  font-size: 14px;
}

.dashboard__my-wishlist-time span {
  color: var(--servixa-base);
}

.dashboard__my-wishlist-status {
  position: relative;
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  padding: 5px 10px 5px;
  border-radius: 15px;
  text-transform: capitalize;
}

.dashboard__my-wishlist-status.two {
  color: #dc3545;
  background-color: #f8d7da;
}

.dashboard__my-wishlist-btns-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard__my-wishlist-btns-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 14px;
  padding: 8px 10px 8px;
  border-radius: 5px;
}

.dashboard__my-wishlist-btn-1 {
  border: 1px solid var(--servixa-black);
  color: var(--servixa-black);
}

.dashboard__my-wishlist-btn-1:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.dashboard__my-wishlist-btn-2 {
  border: 1px solid var(--servixa-base);
}

.dashboard__my-wishlist-btn-2:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.dashboard__my-wishlist-sidebar {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  padding: 20px 20px 20px;
  border-radius: 10px;
}

.dashboard__my-wishlist-sidebar-title {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 18px;
}

.dashboard__my-wishlist-sidebar ul {
  position: relative;
  display: block;
}

.dashboard__my-wishlist-sidebar ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--servixa-bdr-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.dashboard__my-wishlist-sidebar ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dashboard__my-wishlist-sidebar-single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dashboard__my-wishlist-sidebar-single-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard__my-wishlist-sidebar-thumb {
  position: relative;
  display: block;
  width: 50px;
  overflow: hidden;
  border-radius: var(--servixa-bdr-radius);
}

.dashboard__my-wishlist-sidebar-thumb img {
  width: 100%;
  border-radius: var(--servixa-bdr-radius);
}

.dashboard__my-wishlist-sidebar-content {
  position: relative;
  display: block;
  flex: 1;
}

.dashboard__my-wishlist-sidebar-content h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1em;
}

.dashboard__my-wishlist-sidebar-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 5px;
  color: var(--servixa-base);
}

.dashboard__my-wishlist-sidebar-btn-box {
  position: relative;
  display: block;
}

.dashboard__my-wishlist-sidebar-btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border: 1px solid var(--servixa-base);
  border-radius: 5px;
}

.dashboard__my-wishlist-sidebar-btn-box a:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.dashboard__my-wishlist-subtotal-proced {
  position: relative;
  display: block;
}

.dashboard__my-wishlist-subtotal-proced p {
  font-size: 17px;
  color: var(--servixa-black);
  margin-bottom: 10px;
}

.dashboard__my-wishlist-subtotal-proced p span {
  font-weight: 600;
}

.dashboard__my-wishlist-subtotal-proced button {
  background: transparent;
  border: 1px solid var(--servixa-base);
  border-radius: 5px;
  font-size: 16px;
  line-height: 16px;
  padding: 9px 20px 9px;
  color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-wishlist-subtotal-proced button:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.dashboard__my-message-content-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.dashboard__my-message-content-box .row {
  --bs-gutter-x: 20px;
}

/* Dashboard Chat */
.dashboard__chat-box {
  position: relative;
  display: block;
}

.chat__list,
.chat__window {
  background: var(--servixa-white);
  border: 1px solid var(--servixa-bdr-color);
  border-radius: var(--servixa-bdr-radius);
}

.chat__list {
  position: relative;
  display: block;
  padding: 12px;
  max-height: 730px;
  overflow-y: scroll;
}

.chat__list::-webkit-scrollbar {
  width: 5px;
}

.chat__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  border-radius: var(--servixa-bdr-radius);
  border: 1px solid var(--servixa-bdr-color);
}

.chat__item+.chat__item {
  margin-top: 10px;
}

.chat__item-avator {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.chat__item-avator-online {
  position: absolute;
  bottom: 4px;
  right: 0;
  height: 12px;
  width: 12px;
  background: #07b89d;
  border-radius: 50%;
  border: 2px solid var(--servixa-white);
}

.chat__item-avator-online.off-line {
  background: #e44632;
}

.chat__item-avator-online.busy {
  background: #f0b002;
}

.chat__item-avator img {
  width: 100%;
  border-radius: 50%;
}

.chat__item-content {
  position: relative;
  display: block;
  flex: 1;
}

.chat__item-content h5 {
  display: flex;
  position: relative;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
}

.chat__item-content p {
  font-size: 14px;
  color: var(--servixa-gray);
  line-height: 20px;
  margin-top: 4px;
}

.chat__item-content span {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 1em;
  color: var(--servixa-gray);
  font-weight: 500;
  top: 1px;
}

.chat__item.active,
.chat__item:hover {
  background: rgba(var(--servixa-base-rgb), .06);
}

.chat__window {
  position: relative;
  display: block;
}

.chat__window-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-bottom: 1px solid var(--servixa-bdr-color);
}

.chat__window-header-content {
  position: relative;
  display: block;
}

.chat__window-header-content h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 8px;
}

.chat__window-header-content p {
  position: relative;
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  padding: 5px 10px 5px;
  border-radius: 15px;
  text-transform: capitalize;
}

.chat__window-btn-box {
  position: relative;
  display: block;
}

.chat__window-btn {
  border: 1px solid var(--servixa-bdr-color);
  background: transparent;
  font-size: 14px;
  padding: 5px 15px 5px;
  border-radius: 5px;
  color: var(--servixa-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.chat__window-btn:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
  border: 1px solid var(--servixa-black);
}

.chat__window-body {
  height: 600px;
  overflow-y: scroll;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat__window-body::-webkit-scrollbar {
  width: 5px;
}

.chat__msg {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 70%;
  padding: 10px 12px;
  border-radius: 12px;
}

.chat__msg--me {
  align-self: flex-end;
  background: rgba(var(--servixa-base-rgb), .08);
}

.chat__msg--other {
  align-self: flex-start;
  background: #f1f3f5;
}

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

.chat-mst-img img {
  border-radius: 50%;
  width: 100%;
}

.chat__msg p {
  position: relative;
  display: block;
  flex: 1;
  font-size: 14px;
  line-height: 1.5em;
}

.chat__window-footer {
  border-top: 1px solid var(--servixa-bdr-color);
  padding: 10px;
  display: block;
  position: relative;
}

.chat__window-footer input[type="text"] {
  display: block;
  outline: none;
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 8px;
  border: 1px solid var(--servixa-bdr-color);
}

.chat__form-btn {
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-base);
  font-size: 14px;
  padding: 5px 15px 5px;
  border-radius: 5px;
  color: var(--servixa-white);
  margin-top: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.chat__form-btn:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
  border: 1px solid var(--servixa-black);
}

.dashboard__my-wallet-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 20px 15px;
  margin-top: 40px;
}

.dashboard__my-wallet-content-box .dashboard__my-booking-title {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.dashboard__my-wallet-content-box .row {
  --bs-gutter-x: 20px;
}

.dashboard__my-wallet-single {
  position: relative;
  display: block;
  background: var(--servixa-white);
  border: 1px solid var(--servixa-bdr-color);
  border-radius: var(--servixa-bdr-radius);
  padding: 30px 20px 35px;
  transition: all 500ms ease;
  margin-bottom: 40px;
}

.dashboard__my-wallet-single.two {
  padding: 49px 20px 49px;
}

.dashboard__my-wallet-box {
  position: relative;
  display: block;
}

.dashboard__my-wallet-box-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.dashboard__my-wallet-total {
  position: relative;
  display: block;
}

.dashboard__my-wallet-total p {
  font-size: 20px;
  color: var(--servixa-black);
  font-weight: 600;
  margin-bottom: 10px;
}

.dashboard__my-wallet-total h2 {
  font-size: 40px;
  line-height: 1em;
  font-weight: 700;
}

.dashboard__my-wallet-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: rgba(var(--servixa-base-rgb), .40);
  border-radius: 50%;
  z-index: 1;
}

.dashboard__my-wallet-icon:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: rgba(var(--servixa-base-rgb), .70);
  border-radius: 50%;
  z-index: -1;
}

.dashboard__my-wallet-icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}

.dashboard__my-wallet-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard__my-wallet-btn-box button {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  background-color: transparent;
  font-size: 16px;
  color: var(--servixa-black);
  font-weight: 500;
  padding: 6px 20px 6px;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-wallet-btn-box button.dashboard__my-wallet-btn-1 {
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.dashboard__my-wallet-btn-box button.dashboard__my-wallet-btn-1:hover {
  background-color: var(--servixa-black);
  border: 1px solid var(--servixa-black);
}

.dashboard__my-wallet-btn-box button.dashboard__my-wallet-btn-2 {
  border: 1px solid var(--servixa-black);
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.dashboard__my-wallet-btn-box button.dashboard__my-wallet-btn-2:hover {
  background-color: var(--servixa-base);
  border: 1px solid var(--servixa-base);
}

.dashboard__my-wallet-payout {
  position: relative;
  display: block;
}

.dashboard__my-wallet-payout p {
  font-size: 20px;
  color: var(--servixa-black);
  font-weight: 600;
}

.dashboard__my-wallet-payout h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 10px;
  margin-bottom: 15px;
}

.dashboard__my-wallet-payout h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}

.dashboard__transactions-table {
  position: relative;
  display: block;
}

.dashboard__transactions-table .table-responsive-box .table tbody tr:last-child td {
  border-bottom: 0;
  padding: 15px 10px 2px;
}

.dashboard__transactions-table h6 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1em;
}

.dashboard__my-notifications-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 20px 15px;
  margin-top: 40px;
}

.dashboard__my-notifications-content-box .table-responsive-box .table tbody tr:last-child td {
  border-bottom: 0;
  padding: 15px 10px 2px;
}

.dashboard__my-notifications-content-box .dashboard__my-booking-title {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dashboard__my-notifications-content-box .dashboard__my-booking-table .table-responsive-box {
  padding-top: 20px;
}

.dashboard__my-notifications-btn-1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 14px;
  padding: 8px 10px 8px;
  border-radius: 5px;
  border: 1px solid var(--servixa-black);
  color: var(--servixa-black);
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-notifications-btn-1:hover {
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.dashboard__my-notifications-btn-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 14px;
  padding: 8px 10px 8px;
  border-radius: 5px;
  border: 1px solid var(--servixa-base);
  color: var(--servixa-base);
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-notifications-btn-2:hover {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.dashboard__my-settings-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 20px 20px;
  margin-top: 40px;
}

.dashboard__my-settings-box {
  position: relative;
  display: block;
}

.dashboard__my-settings-box .row {
  --bs-gutter-x: 20px;
}

.dashboard__my-settings-input-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.dashboard__my-settings-input-box p {
  margin-bottom: 10px;
}

.dashboard__my-settings-input-box input[type="text"],
.dashboard__my-settings-input-box input[type="email"],
.dashboard__my-settings-input-box input[type="password"] {
  display: block;
  outline: none;
  background-color: var(--servixa-white);
  color: var(--servixa-gray);
  font-size: 16px;
  font-weight: 400;
  padding-left: 10px;
  height: 50px;
  width: 100%;
  padding-right: 10px;
  border-radius: var(--servixa-bdr-radius);
  border: 1px solid var(--servixa-bdr-color);
}

.dashboard__my-settings-btns-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dashboard__my-settings-btn-1 {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-black);
  background-color: var(--servixa-black);
  font-size: 16px;
  color: var(--servixa-white);
  font-weight: 500;
  padding: 6px 20px 6px;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-settings-btn-1:hover {
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-base);
}

.dashboard__my-settings-btn-2 {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-base);
  font-size: 16px;
  color: var(--servixa-white);
  font-weight: 500;
  padding: 6px 20px 6px;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-settings-btn-2:hover {
  border: 1px solid var(--servixa-black);
  background-color: var(--servixa-black);
}

.dashboard__my-logout-content-box {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 20px 20px 20px;
  margin-top: 40px;
  text-align: center;
}

.dashboard__my-logout-content-box .dashboard__my-booking-title {
  margin-bottom: 20px;
}

.dashboard__my-logout-text {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.dashboard__my-logout-btns-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dashboard__my-logout-btn-1 {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-black);
  background-color: var(--servixa-black);
  font-size: 16px;
  color: var(--servixa-white);
  font-weight: 500;
  padding: 6px 20px 6px;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-logout-btn-1:hover {
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.dashboard__my-logout-btn-2 {
  position: relative;
  display: block;
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-base);
  font-size: 16px;
  color: var(--servixa-white);
  font-weight: 500;
  padding: 6px 20px 6px;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dashboard__my-logout-btn-2:hover {
  border: 1px solid var(--servixa-black);
  background-color: var(--servixa-black);
  color: var(--servixa-white);
}

.dashboard-pagination {
  padding-top: 30px;
}

@media (max-width: 991px)
{ h4 { font-size: 2rem; line-height: 1.25; } } 
/* Mobile */ @media (max-width: 767px) 
{ h4 { font-size: 1.5rem; line-height: 1.3; } } 
/* Small Mobile */ @media (max-width: 480px) 
{ h4 { font-size: 1.5rem; line-height: 1.35; } }

#wa-widget-send-button {
    margin: 0 0 50px 0 !important;
    padding-left: 0px;
    padding-right: 0px;
    position: fixed !important;
    z-index: 16000160 !important;
    bottom: 0 !important;
    text-align: center !important;
    height: 50px;
    min-width: 50px;
    border-radius: 25px;
    visibility: visible;
    transition: none !important;
    background-color: #00a85a;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    right: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what {
    position: fixed;
    bottom: 8%;
    right: 5px;
    z-index: 100;
}

 @media (max-width: 576px) {
    .thm-btn {
        padding: 2px 8px 2px;
        font-size:13px;
    }
}

/* Small devices (phones) */
@media (max-width: 767px) {
    .thm-btn {
        padding: 2px 8px 2px;
        font-size:13px;
    }
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/