/*--------------------------------------------------------------
  TABLE OF CONTENTS:
----------------------------------------------------------------

** - Utility
** - Common
** - Custom Cursor
** - Animations
** - Cards
** - Navigation
** - Home Showcase
** - Mobile Nav
** - Search Popup
** - Page Header
** - Main Slider
** - About
** - Services
** - ServiceS Details
** - Project
** - Project Details
** - Video
** - Funfact
** - Team
** - Team Details
** - Contact
** - Testimonial
** - Why Choose
** - Working Process
** - Blog
** - Blog List
** - Blog Standard
** - Blog Details
** - Feature
** - Pricing Plan
** - Faq
** - Gallery
** - History
** - Coming Soon
** - Products
** - Product Details
** - Cart
** - Checkout
** - Wishlist
** - Sign Up
** - Login
** - Privacy Policy
** - Error
** - Footer
** - Google Map

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --builza-font: "Public Sans", sans-serif;
  --builza-font-two: "Exo", sans-serif;

  /* Main Brand Gold */
  --builza-base: #D4AF37;
  --builza-base-rgb: 212, 175, 55;

  /* Dark Premium Black */
  --builza-black: #0B0B0B;
  --builza-black-rgb: 11, 11, 11;

  /* Text Gray */
  --builza-gray: #555555;
  --builza-gray-rgb: 85, 85, 85;

  /* White */
  --builza-white: #ffffff;
  --builza-white-rgb: 255, 255, 255;

  /* Light Gold Background */
  --builza-primary: #F6E7B0;
  --builza-primary-rgb: 246, 231, 176;

  /* Border */
  --builza-bdr-color: #e6d7a5;
  --builza-bdr-color-rgb: 230, 215, 165;

  --builza-bdr-radius: 10px;
}

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

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

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

body.locked {
  overflow: hidden;
}

a {
  color: var(--builza-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,
h4,
h5,
h6 {
  font-family: var(--builza-font-two);
  color: var(--builza-black);
  margin: 0;
}

p {
  margin: 0;
}

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

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

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

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

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

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

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

.list-unstyled {
  padding-left: 0;
}

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

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}

#particles-js-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}



/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 380px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--builza-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.7s 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: -50px;
  width: 60px;
  height: 50px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: var(--builza-black);
  background: var(--builza-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: 20px;
  color: rgba(255, 255, 255, .70);
}

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

.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='tel'],
.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: 80px;
  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(--builza-white);
}

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

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


.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--builza-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(--builza-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(--builza-base);
  border-color: var(--builza-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 425px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--builza-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(--builza-black);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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(--builza-white);
}

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

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

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

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--builza-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(--builza-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--builza-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(--builza-white-rgb), .10);
  border-radius: 50%;
  color: var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-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(--builza-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(--builza-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(--builza-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(--builza-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-black);
  text-align: center;
  font-size: 20px;
  color: var(--builza-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(--builza-secondary);
  color: var(--builza-black);
}

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
















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

.section-title__tagline-box {
  position: relative;
  display: inline-block;
}

.section-title__tagline {
  position: relative;
  display: block;
  font-family: var(--builza-font);
  color: var(--builza-base);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}

.section-title__tagline-shape {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--builza-base);
}

.section-title__title {
  font-size: 48px;
  line-height: 1.2em;
  font-weight: 700;
  margin-top: 14px;
}

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



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

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

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

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--builza-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(--builza-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(--builza-white);
}

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

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

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 55px;
  background-color: #d4af37;
}

.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(--builza-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(--builza-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: 500;
  color: var(--builza-black);
  line-height: 16px;
}

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

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

.main-menu__top-welcome-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--builza-black);
  text-transform: capitalize;
  font-family: var(--builza-font-two);
  line-height: 1em;
}

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

.main-menu__social-title {
  font-size: 16px;
  color: var(--builza-white);
  font-weight: 500;
}

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

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--builza-white-rgb), .40);
  border-radius: 50%;
  font-size: 15px;
  color: var(--builza-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(--builza-base);
  border: 1px solid var(--builza-white);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--builza-white);
  transform: scale(0.5);
  border-radius: 50%;
  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;
  background-color: rgba(var(--builza-white-rgb), .05);
}

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

.main-menu__left {
  display: block;
}

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

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

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

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

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

.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(--builza-gray);
  line-height: 16px;
  text-transform: capitalize;
}

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

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

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

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

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

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

.main-menu__search:hover {
  color: var(--builza-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(--builza-black);
  -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(--builza-base);
  color: var(--builza-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(--builza-base);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 11px;
  height: 45px;
  width: 45px;
  background-color: var(--builza-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 22px;
}

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

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

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 22px;
}

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





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

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



@media (min-width: 1200px) {

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

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

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

.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(--builza-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 20px;
  font-family: var(--builza-font-two);
}

.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(--builza-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(--builza-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: 60%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--builza-black);
  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(--builza-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(--builza-white);
  min-width: 280px;
  padding: 5px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--builza-bdr-radius);
  border-bottom-right-radius: var(--builza-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(--builza-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(--builza-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--builza-font-two);
  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.current>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a {
  color: rgba(var(--builza-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(--builza-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.current>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a::before {
  transform: translateY(-50%) scale(1);
}

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

.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-four__main-menu-box .main-menu__list>.megamenu>ul>li,
.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(--builza-base);
  cursor: pointer;
}

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

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

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

.main-menu .mobile-nav__toggler:hover {
  color: var(--builza-black);
}

@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(--builza-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(--builza-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(--builza-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(--builza-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--builza-white-rgb), .10);
  border-radius: 50%;
  -webkit-transition: 500ms;
  transition: 500ms;
  z-index: 1;
}

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

.mobile-nav__social a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--builza-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.mobile-nav__social a:hover::after {
  transform: scale(1.0);
  opacity: 1;
}

.mobile-nav__social a:hover {
  color: var(--builza-white);
  border: 1px solid rgba(var(--builza-base-rgb), 1);
}

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

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

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--builza-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: 30px 30px 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: 30px;
  --bs-gutter-y: 20px;
  justify-content: center;
}

.home-showcase__item {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--builza-black-rgb), .15);
  padding: 10px 10px 18px;
  border-radius: var(--builza-bdr-radius);
}

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

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

.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: 6px 20px 6px;
  padding-right: 6px;
  width: 175px;
  justify-content: space-between;
}

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

.home-showcase__buttons__item:hover {
  color: var(--builza-base);
}

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

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: var(--builza-black);
  margin-top: 17px;
  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(--builza-white, #ffffff);
}

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

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  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 20px 7.5px;
  background-color: var(--builza-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(--builza-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(--builza-white-rgb), .20);
}

.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(--builza-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(--builza-white);
  line-height: 16px;
}

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

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

.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(--builza-white);
}

.main-menu-two__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--builza-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(--builza-white-rgb), .40);
  border-radius: 50%;
  font-size: 14px;
  color: var(--builza-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(--builza-base);
  border: 1px solid var(--builza-white);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--builza-black);
  transform: scale(0.5);
  border-radius: 50%;
  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;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px 0;
  background-color: rgba(var(--builza-white-rgb), 0.08);
}

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

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 25px 0;
}

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

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

.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(--builza-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

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

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

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

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

.main-menu-two__cart-count {
  position: absolute;
  top: -16px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  background-color: var(--builza-base);
  color: var(--builza-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 a:hover .main-menu-two__cart-count {
  color: var(--builza-white);
}

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

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

.main-menu-two__user a:hover {
  color: var(--builza-base);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

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

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

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

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

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

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


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

.stricky-header .main-menu-two__wrapper-inner {
  padding: 0 0px 0;
  background-color: transparent;
}

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

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--builza-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(--builza-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(--builza-white-rgb), .20);
}

.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(--builza-white);
}

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

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

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

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

.main-menu-three__top-text {
  color: var(--builza-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(--builza-white);
  content: "";
  opacity: .20;
}

.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(--builza-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(--builza-base);
  border-radius: 0px;
  color: var(--builza-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(--builza-font);
}

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

.main-menu-three__language-switcher .nice-select .list {
  width: 65px;
  background-color: var(--builza-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(--builza-white-rgb), .20);
  border-radius: 50%;
  font-size: 14px;
  color: var(--builza-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(--builza-base);
  border: 1px solid var(--builza-white);
}

.main-menu-three__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--builza-white);
  transform: scale(0.5);
  border-radius: 50%;
  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-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: 25px 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(--builza-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--builza-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(--builza-black);
  -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: 600;
  background-color: var(--builza-base);
  color: var(--builza-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(--builza-base);
}


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


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


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

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--builza-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;
  z-index: -1;
}

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

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


.main-slider__shape-1 {
  position: absolute;
  bottom: -250px;
  right: 150px;
  top: -250px;
  width: 200px;
  background-color: var(--builza-white);
  z-index: -1;
  opacity: 0;
  -webkit-transform: perspective(400px) rotate(30deg) translateX(-100px);
  -ms-transform: perspective(400px) rotate(30deg) translateX(-100px);
  transform: perspective(400px) rotate(30deg) translateX(-100px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__shape-1 {
  opacity: .03;
  -webkit-transform: perspective(400px) rotate(30deg) translateX(0px);
  -ms-transform: perspective(400px) rotate(30deg) translateX(0px);
  transform: perspective(400px) rotate(30deg) translateX(0px);
  -webkit-transition-delay: 3600ms;
  -moz-transition-delay: 3600ms;
  -ms-transition-delay: 3600ms;
  -o-transition-delay: 3600ms;
  transition-delay: 3600ms;
}

.main-slider__shape-2 {
  position: absolute;
  bottom: -250px;
  right: 280px;
  top: -250px;
  width: 200px;
  background-color: var(--builza-white);
  z-index: -1;
  opacity: 0;
  -webkit-transform: perspective(400px) rotate(30deg) translateX(-100px);
  -ms-transform: perspective(400px) rotate(30deg) translateX(-100px);
  transform: perspective(400px) rotate(30deg) translateX(-100px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: all 1800ms ease;
  -moz-transition: all 1800ms ease;
  -ms-transition: all 1800ms ease;
  -o-transition: all 1800ms ease;
  transition: all 1800ms ease;
}

.main-slider .swiper-slide-active .main-slider__shape-2 {
  opacity: .02;
  -webkit-transform: perspective(400px) rotate(30deg) translateX(0px);
  -ms-transform: perspective(400px) rotate(30deg) translateX(0px);
  transform: perspective(400px) rotate(30deg) translateX(0px);
  -webkit-transition-delay: 4000ms;
  -moz-transition-delay: 4000ms;
  -ms-transition-delay: 4000ms;
  -o-transition-delay: 4000ms;
  transition-delay: 4000ms;
}

.main-slider__img-box {
  position: absolute;
  bottom: 0;
  right: -70px;
  z-index: 1;
}

.main-slider__img {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(0.9);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(0.9);
  transform: perspective(400px) rotateY(0deg) translateX(100px) 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;
}

.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__img-shape {
  position: absolute;
  bottom: -100px;
  right: -200px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  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__img-shape img {
  width: auto;
}

.main-slider .swiper-slide-active .main-slider__img-shape {
  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__round-text-box {
  position: absolute;
  top: 75px;
  left: -95px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--builza-base);
  z-index: 40;

  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  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 .swiper-slide-active .main-slider__round-text-box {
  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__round-text-box .inner {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
}

.main-slider__curved-circle {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  color: var(--builza-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
  letter-spacing: 0px;
  word-spacing: 2px;
  transform: rotate(0deg);
  height: 180px !important;
}

.main-slider__round-text-box .overlay-icon-box a {
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  background-color: var(--builza-white);
  color: var(--builza-base);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 55;
  border-radius: 50%;
}

.main-slider__round-text-box:hover .overlay-icon-box a {
  color: var(--builza-base);
  background-color: var(--builza-black);
}


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

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

.main-slider__sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--builza-base);
  font-weight: 700;
  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: 70px;
  color: var(--builza-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(--builza-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(--builza-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;
  line-height: 0;
}

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

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

.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(--builza-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 h3 {
  color: var(--builza-white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider__review-box .text-box p {
  color: var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-white-rgb), 1.0);
}

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


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

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

.main-slider-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .05;
  z-index: -1;
}

.main-slider-two__shape-1 {
  position: absolute;
  top: 50px;
  right: 975px;
  z-index: -1;
}

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

.main-slider-two__shape-2 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: -1;
}

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

.main-slider-two__shape-3 {
  position: absolute;
  top: 50px;
  left: 30px;
  z-index: -1;
}

.main-slider-two__shape-3 img {
  width: auto !important;
}

.main-slider-two__shpae-bg-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 54%;
  -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;
  background-color: var(--builza-base);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(1);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(1);
  transform: perspective(400px) rotateY(0deg) translateX(100px) scale(1);
  -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;
  z-index: -1;
}

.main-slider-two .swiper-slide-active .main-slider-two__shpae-bg-2 {
  visibility: visible;
  opacity: .08;
  -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: 1700ms;
  -moz-transition-delay: 1700ms;
  -ms-transition-delay: 1700ms;
  -o-transition-delay: 1700ms;
  transition-delay: 1700ms;
}

.main-slider-two__shpae-bg-3 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55.5%;
  -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;
  background-color: var(--builza-base);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(1);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(1);
  transform: perspective(400px) rotateY(0deg) translateX(100px) scale(1);
  -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;
  z-index: -1;
}

.main-slider-two .swiper-slide-active .main-slider-two__shpae-bg-3 {
  visibility: visible;
  opacity: .08;
  -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: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider-two__bg-box {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 52.5%;
  -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;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  -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;
  z-index: -1;
}

.main-slider-two__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--builza-black-rgb), .3);
}

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

.main-slider-two__big-text {
  position: absolute;
  top: 360px;
  left: -61px;
  font-size: 95px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--builza-base-rgb));
  opacity: 0;
  -webkit-transform: perspective(400px) rotate(-65deg) translateX(-100px) scale(1);
  -ms-transform: perspective(400px) rotate(-65deg) translateX(-100px) scale(1);
  transform: perspective(400px) rotate(-65deg) translateX(-100px) scale(1);
  -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;
  z-index: -1;
}

.main-slider-two .swiper-slide-active .main-slider-two__big-text {
  visibility: visible;
  opacity: .20;
  -webkit-transform: perspective(400px) rotate(-65deg) translateX(0px) scale(1);
  -ms-transform: perspective(400px) rotate(-65deg) translateX(0px) scale(1);
  transform: perspective(400px) rotate(-65deg) translateX(0px) scale(1);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-two__content {
  position: relative;
  display: block;
  padding-top: 220px;
  padding-bottom: 220px;
  z-index: 10;
}

.main-slider-two__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  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-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: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--builza-base);
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}

.main-slider-two__sub-title-shape {
  position: relative;
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--builza-base);
}

.main-slider-two__title {
  position: relative;
  display: block;
  font-size: 60px;
  color: var(--builza-black);
  font-weight: 700;
  line-height: 1.3em;
  text-transform: capitalize;
  margin-top: 18px;
  margin-bottom: 15px;
  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(--builza-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 {
  color: rgba(var(--builza-black-rgb), 1);
  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__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: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 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-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: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-two__btn {
  position: relative;
  display: block;
  line-height: 0;
}

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

.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(--builza-white);
  background-color: rgba(var(--builza-base-rgb), 1);
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

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

.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(--builza-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--builza-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--builza-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--builza-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-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  max-width: 100px;
  width: 100%;
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0 auto !important;
  height: auto;
  line-height: 0;
  counter-reset: count;
}

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

#main-slider-two-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border-radius: 0;
  background-color: rgba(var(--builza-white-rgb), .50);
  margin: 0;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

#main-slider-two-pagination .swiper-pagination-bullet::before {
  position: absolute;
  height: 40px;
  width: 40px;
  border: 1px solid transparent;
  background: rgba(var(--builza-white-rgb), .20);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--builza-white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  counter-increment: count;
  content: ""counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  top: -20px;
  left: -40px;
}

#main-slider-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background-color: var(--builza-base);
  color: var(--builza-white);
  border: 1px solid var(--builza-base);
}

#main-slider-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(var(--builza-base-rgb), 1);
  width: 60px;
}




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

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

.banner-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 570px;
  height: 50%;
  background-color: rgba(var(--builza-white-rgb), .08);
  clip-path: polygon(0 0, 100% 0, 50% 50%, 0 100%);
  mix-blend-mode: soft-light;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.banner-one__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 590px;
  height: 53%;
  background-color: rgba(var(--builza-white-rgb), .05);
  clip-path: polygon(0 0, 100% 0, 50% 50%, 0 100%);
  mix-blend-mode: soft-light;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.banner-one__shape-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 570px;
  height: 50%;
  background-color: rgba(var(--builza-white-rgb), .08);
  clip-path: polygon(0 0, 50% 50%, 100% 100%, 0 100%);
  mix-blend-mode: soft-light;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.banner-one__shape-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 590px;
  height: 53%;
  background-color: rgba(var(--builza-white-rgb), .05);
  clip-path: polygon(0 0, 50% 50%, 100% 100%, 0 100%);
  mix-blend-mode: soft-light;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.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(--builza-base);
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}

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

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

.banner-one__text {
  position: relative;
  display: block;
  font-size: 17px;
  color: rgba(var(--builza-white-rgb), .8);
  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;
  line-height: 0;
}

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

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

.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(--builza-white);
  background-color: rgba(var(--builza-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(--builza-white);
  color: var(--builza-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(--builza-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--builza-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--builza-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--builza-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(--builza-base);
  font-weight: 700;
  line-height: 1em;
}

.banner-one__right {
  position: absolute;
  bottom: -170px;
  right: -250px;
}

.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__client-review {
  position: absolute;
  background-color: rgba(var(--builza-white-rgb), .10);
  border-radius: 16px;
  padding: 25px 15px 25px;
  bottom: 80px;
  left: -120px;
  border: 2px solid rgba(var(--builza-white-rgb), .05);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-one__client-review-img-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-one__client-review-img-list li+li {
  margin-left: -15px;
}

.banner-one__client-review-img {
  position: relative;
  max-width: 50px;
  width: 100%;
  border-radius: 50%;
}

.banner-one__client-review-img img {
  width: 100%;
  border-radius: 50%;
  border: 1px solid rgba(var(--builza-white-rgb), .30);
}

.banner-one__client-review-client-info {
  position: relative;
  display: block;
}

.banner-one__client-review-client-text {
  font-size: 16px;
  color: var(--builza-white);
  font-weight: 500;
  line-height: 24px;
}

.banner-one__happy-customer {
  position: absolute;
  background-color: rgba(var(--builza-white-rgb), .10);
  border-radius: 12px;
  padding: 15px 20px 15px;
  overflow: hidden;
  z-index: 1;
  top: 0;
  right: 0;
  border: 2px solid rgba(var(--builza-white-rgb), .05);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.banner-one__happy-customer-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(var(--builza-white-rgb), .20);
  overflow: hidden;
}

.banner-one__happy-customer-icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--builza-white);
}

.banner-one__happy-customer-count-box {
  position: relative;
  display: block;
}

.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(--builza-white);
  font-weight: 600;
  line-height: 30px;
  font-family: var(--builza-font-two);
}

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

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

.banner-one__point-single {
  background-color: rgba(var(--builza-white-rgb), .10);
  border-radius: 12px;
  padding: 15px 10px 15px;
  border: 2px solid rgba(var(--builza-white-rgb), .05);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 150px;
  width: 100%;
  z-index: 55;
}

.banner-one__point-single .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(var(--builza-white-rgb), .20);
  font-size: 30px;
  color: var(--builza-white);
  overflow: hidden;
}

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

.banner-one__point-single .content h5 {
  font-size: 15px;
  color: var(--builza-white);
  line-height: 1.2em;
}

.banner-one__point-single .content p {
  font-size: 12px;
  color: var(--builza-white);
  line-height: 18px;
  margin-top: 5px;
}

.banner-one__point-single.one {
  position: absolute;
  top: 0;
  left: -50px;
  transform: rotate(-25deg);
}

.banner-one__point-single.two {
  position: absolute;
  /*! top: 185px; */
  /*! right: -20px; */
  bottom: 80px;
  left: -120px;
}

.banner-one__point-single.three {
  position: absolute;
  bottom: 97px;
  right: -35px;
  background-color: rgba(var(--builza-black-rgb), .30);
}



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

.about-one__left {
  position: relative;
  display: block;
  margin-left: 140px;
  margin-right: 60px;
}

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

.about-one__img {
  position: relative;
  display: block;
  border-radius: var(--builza-bdr-radius);
}

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

.about-one__img-2 {
  position: absolute;
  bottom: -168px;
  left: -190px;
  border-radius: var(--builza-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;
  transition: all 500ms ease;
}

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

.about-one__experience-box {
  position: absolute;
  bottom: -168px;
  right: 0;
  max-width: 226px;
  width: 100%;
  background-color: var(--builza-base);
  padding: 33px 20px 34px;
  border-radius: var(--builza-bdr-radius);
  text-align: center;
  z-index: 1;
  background: linear-gradient( 180deg, #3a3a3a 0%, #1f1f1f 40%, #0a0a0a 70%, #000 100% );
}

.about-one__experience-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

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

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

.about-one__experience-count-text {
  color: var(--builza-white);
  font-weight: 500;
  font-size: 18px;
}

.about-one__shape-1 {
  position: absolute;
  top: 0;
  left: -190px;
  width: 175px;
  height: 155px;
  background-color: var(--builza-base);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  /*! background: linear-gradient( 0deg, #3a3a3a 0%, #1f1f1f 40%, #0a0a0a 70%, #000 100% ); */
}

.about-one__video-link {
  position: absolute;
  top: 36px;
  left: -136px;
  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: 25px;
  color: var(--builza-base);
  background-color: rgba(var(--builza-white-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  border-radius: 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-one__video-icon:hover {
  background-color: var(--builza-black);
  color: var(--builza-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: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--builza-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__right {
  position: relative;
  display: block;
}

.about-one__right .section-title__title {
  margin-right: -50px;
}

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

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

.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: 60px;
  width: 60px;
  background-color: var(--builza-base);
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.about-one__point-icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--builza-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;
  margin-top: -7px;
}

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

.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: 358px; */
  margin-bottom: 20px;
  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(--builza-base);
  border-radius: 50%;
}

.about-one__point-two li .icon span {
  position: relative;
  display: inline-block;
  font-size: 10px;
  color: var(--builza-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(--builza-white);
}

.about-one__review-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--builza-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(--builza-base);
  position: relative;
  display: inline-block;
}

.about-one__review-text {
  font-weight: 500;
  color: var(--builza-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(--builza-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(--builza-bdr-color);
}

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

/*==============================================
    Services One
===============================================*/
.services-one {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  overflow: hidden;
  padding: 120px 0 150px;
  z-index: 1;
}

.services-one__shape-1 {
  position: absolute;
  top: 50px;
  right: -375px;
  opacity: 0.06;
  z-index: -1;
}

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

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

.services-one__single {
  position: relative;
  display: block;
  background-color: var(--builza-white);
  border: 1px solid var(--builza-bdr-color);
  border-radius: var(--builza-bdr-radius);
  padding: 20px 15px 20px;
  margin-bottom: 30px;
}

.services-one__content {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.services-one__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.services-one__title a {
  color: var(--builza-black);
}

.services-one__title a:hover {
  color: var(--builza-base);
}

.services-one__text {
  margin: 10px 0 12px;
  font-size: 14px;
  line-height: 22px;
}

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

.services-one__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--builza-black);
}

.services-one__btn-box a:hover {
  color: var(--builza-base);
}

.services-one__btn-box a span {
  font-size: 14px;
  color: var(--builza-base);
}

.services-one__count {
  position: absolute;
  bottom: -10px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding-top: 9px;
  color: var(--builza-base);
  font-family: var(--builza-font-two);
  background-color: var(--builza-base);
  clip-path: polygon(50% 0%, 81% 31%, 100% 31%, 100% 70%, 100% 100%, 50% 100%, 0 100%, 0% 70%, 0% 35%, 21% 31%);
  z-index: 1;
}

.services-one__count:after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 1px;
  top: 1.5px;
  left: 1px;
  background-color: var(--builza-primary);
  clip-path: polygon(50% 0%, 81% 31%, 100% 31%, 100% 70%, 100% 100%, 50% 100%, 0 100%, 0% 70%, 0% 35%, 21% 31%);
  z-index: -1;
}

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

.services-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;
  transition: all 500ms ease;
  border-radius: 5px;
}

.services-one__img img {
  width: 100%;
  border-radius: 5px;
  background: #eee;
}

.services-one__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 73px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--builza-base);
  border-radius: 5px;
  -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;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  left: 10px;
  color: var(--builza-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__carousel .swiper-nav-style-one {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.services-one__carousel .services-one-dot-style1 {
  position: relative;
  display: inline-flex;
  line-height: 0;
}

.services-one__carousel .services-one-dot-style1 .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 40px;
  height: 6px;
  margin: 0px 6px;
  opacity: 1;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--builza-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__carousel .services-one-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--builza-black);
}

.services-one__carousel .services-one-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.services-one__carousel .services-one-dot-style1 .swiper-pagination-bullet:hover {
  transform: scale(1.0);
}

/*==============================================
    Sliding Text
===============================================*/
.sliding-text {
  position: relative;
  display: block;
  margin-top: -35px;
  z-index: 2;
  background: #f7f7f7;
}

.sliding-text__inner {
  position: relative;
  display: block;
}

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

.sliding-text__list li .icon img {
  width: auto;
}

.sliding-text__list li>p {
  font-size: 50px;
  font-weight: 600;
  line-height: 65px;
  color: transparent;
  text-transform: uppercase;
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--builza-font-two);
  -webkit-text-stroke: 1px var(--builza-base);
}

.sliding-text__list li>p:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--builza-base);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text__list li:hover p:before {
  width: 100%;
  color: var(--builza-base);
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  padding: 110px 0 120px;
  z-index: 1;
}

.project-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 49px;
}

.project-one__top .section-title {
  margin-bottom: 0px;
}

.project-one__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.project-one__bottom .container {
  max-width: 1730px;
}

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

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

.project-one__img {
  position: relative;
  display: block;
  border-radius: var(--builza-bdr-radius);
}

.project-one__img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.project-one__content {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  text-align: right;
  background: var(--builza-white);
  border-radius: var(--builza-bdr-radius);
  padding: 80px 30px 45px;
  overflow: hidden;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

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

.project-one__single:hover .project-one__content {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.project-one__content::before {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 2px;
  background: var(--builza-black);
  content: "";
  transition: -webkit-transform 2.0s ease;
  transition: transform 2.0s ease;
  transition: transform 2.0s ease, -webkit-transform 2.0s ease;
  transform-origin: top center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.project-one__single:hover .project-one__content::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.project-one__content::after {
  position: absolute;
  left: 0px;
  bottom: 20px;
  right: 60%;
  height: 2px;
  background: var(--builza-black);
  content: "";
  transition: transform 2000ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.project-one__single:hover .project-one__content::after {
  transform: scale(1, 1);
  transform-origin: left center;
}

.project-one__content .text-box {
  position: relative;
  display: block;
  text-align: right;
}

.project-one__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 700ms ease;
  margin-bottom: 5px;
}

.project-one__single:hover .project-one__content h3 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}

.project-one__content h3 a {
  color: var(--builza-black);
}

.project-one__content h3 a:hover {
  color: var(--builza-base);
}

.project-one__content p {
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
}

.project-one__single:hover .project-one__content p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.project-one__icon-box {
  position: absolute;
  top: 25px;
  right: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
  z-index: 2;
}

.project-one__single:hover .project-one__icon-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.project-one__icon-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--builza-white);
  width: 45px;
  height: 45px;
  background: var(--builza-base);
  border-radius: 50%;
}

.project-one__icon-box a:hover {
  background: var(--builza-black);
  color: var(--builza-white);
}

.project-one__icon-box a span {
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 700;
}

.project-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0px 0 !important;
}

.project-one__nav .swiper-button-prev1,
.project-one__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: var(--builza-white);
  background-color: var(--builza-base);
  font-size: 16px;
  border-radius: 50%;
  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(--builza-white);
  background-color: var(--builza-black);
}

.project-one__nav .swiper-button-next1 {
  margin-right: 10px;
}

/*==============================================
    Video One
===============================================*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  counter-reset: count;
  padding: 120px 0 50px;
  z-index: 1;
}

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

.why-choose-one__bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc((100% - 380px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: left center; */
  background-position: center;
}

.why-choose-one__bg-2:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 125px;
  background-color: var(--builza-base);
  right: 0;
}

.why-choose-one__big-text {
  position: absolute;
  bottom: 325px;
  right: -102px;
  transform: rotate(-90deg);
}

.why-choose-one__big-text h2 {
  font-size: 45px;
  font-weight: 700;
  color: var(--builza-white);
  line-height: 60px;
}

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

.why-choose-one__shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 480px;
  background-color: rgba(var(--builza-white-rgb), .30);
  transform: translateX(-50%) translateY(-56%);
}

.why-choose-one__shape-2 {
  position: absolute;
  top: 43.5%;
  left: 50%;
  width: 630px;
  height: 1px;
  background-color: rgba(var(--builza-white-rgb), .30);
  transform: translateX(-50%) translateY(-45%);
}

.why-choose-one__inner .row {
  --bs-gutter-x: 100px;
}

.why-choose-one__inner ul li:nth-child(3),
.why-choose-one__inner ul li:nth-child(1) {
  text-align: right;
}

.why-choose-one__single {
  position: relative;
  display: block;
  margin-bottom: 62px;
}

.why-choose-one__count {
  position: absolute;
  bottom: -23px;
  right: -46px;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--builza-white-rgb), .10);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 60px;
}

.why-choose-one__inner ul li:nth-child(2) .why-choose-one__count {
  border-top-right-radius: 60px;
  border-top-left-radius: 0px;
  left: -46px;
  right: inherit;
}

.why-choose-one__inner ul li:nth-child(3) .why-choose-one__count {
  top: -31px;
  bottom: inherit;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 60px;
}

.why-choose-one__inner ul li:nth-child(4) .why-choose-one__count {
  top: -31px;
  bottom: inherit;
  left: -46px;
  right: inherit;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 60px;
}

.why-choose-one__count::before {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  counter-increment: count 1;
  content: "0"counter(count);
  color: var(--builza-white);
  font-family: var(--builza-font-two);
  top: 5px;
  right: -5px;
}

.why-choose-one__inner ul li:nth-child(2) .why-choose-one__count::before {
  left: -5px;
  right: inherit;
}

.why-choose-one__inner ul li:nth-child(3) .why-choose-one__count::before {
  top: -2px;
}

.why-choose-one__inner ul li:nth-child(4) .why-choose-one__count::before {
  top: -2px;
  right: inherit;
  left: -4px;
}

.why-choose-one__icon {
  position: relative;
  display: inline-block;
}

.why-choose-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--builza-base);
  transition: all 500ms ease;
}

.why-choose-one__single:hover .why-choose-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;
}

.why-choose-one__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  color: var(--builza-white);
  margin: 8px 0 12px;
}

.why-choose-one__text {
  color: rgba(var(--builza-white-rgb), .50);
}

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

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

.team-one__single-inner {
  position: relative;
  display: block;
}

.team-one__single {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  margin-bottom: 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;
}

.team-one__single-inner-shape {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: var(--builza-base);
  border-radius: var(--builza-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-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  border-radius: var(--builza-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.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(--builza-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(--builza-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-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__content {
  position: relative;
  display: block;
  padding: 23px 20px 22px;
}

.team-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 3px;
}

.team-one__title a {
  color: var(--builza-black);
}

.team-one__title a:hover {
  color: var(--builza-base);
}

.team-one__social-list {
  position: absolute;
  bottom: 66px;
  right: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.team-one__social-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--builza-base);
  border-radius: 50%;
  font-size: 16px;
  color: var(--builza-white);
}

.team-one__social-list a:hover {
  background-color: var(--builza-black);
  color: var(--builza-white);
}

/*==============================================
   Process One
===============================================*/
.process-one {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  padding: 120px 0 90px;
  counter-reset: count;
  overflow: hidden;
  z-index: 1;
}

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

.process-one__bg-shape {
  position: absolute;
  top: 0;
  right: -20px;
  opacity: 0.05;
  z-index: -1;
}

.process-one__bg-shape img {
  width: auto;
}

.process-one__big-text {
  position: absolute;
  top: 280px;
  left: -80px;
  transform: rotate(-90deg);
}

.process-one__big-text h2 {
  font-size: 115px;
  font-weight: 800;
  line-height: 140px;
  color: rgba(var(--builza-black-rgb), 0.03);
  text-transform: uppercase;
}

.process-one__single-inner {
  position: relative;
  display: block;
  padding: 0 20px 0;
  margin-bottom: 30px;
}

.process-one__single {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--builza-white);
  border: 1px solid var(--builza-bdr-color);
  padding: 30px 30px 60px;
  border-top-left-radius: 130px;
}

.process-one__icon {
  position: relative;
  display: inline-block;
}

.process-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--builza-base);
  transition: all 500ms ease;
}

.process-one__single-inner: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__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 15px 0 8px;
}

.process-one__shape-1 {
  position: absolute;
  bottom: 47px;
  left: 0;
  right: 0;
  top: -21px;
  background-color: var(--builza-base);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  border-top-right-radius: 69px;
  border-bottom-left-radius: 5px;
}

.process-one__count-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--builza-base);
  height: 50px;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  border-top-left-radius: 5px;
}

.process-one__count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--builza-white);
  border-radius: 50%;
  border: 8px solid var(--builza-base);
  margin: 0 auto;
  margin-top: -40px;
}

.process-one__count::before {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 700;
  counter-increment: count 1;
  content: "0"counter(count);
  color: var(--builza-black);
  font-family: var(--builza-font-two);
}

.process-one__count-shape-1 {
  position: absolute;
  top: 2px;
  left: -20px;
}

.process-one__count-shape-1 img {
  width: auto;
}

.process-one__count-shape-2 {
  position: absolute;
  top: 2px;
  right: -20px;
}

.process-one__count-shape-2 img {
  width: auto;
}

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

.testimonial-one .section-title {
  margin-bottom: 71px;
}

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

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  border-radius: var(--builza-bdr-radius);
  padding: 20px 70px 20px;
  padding-right: 170px;
  border-top-right-radius: 60px;
}

.testimonial-one__single:before {
  content: "";
  position: absolute;
  top: 44px;
  left: 29px;
  bottom: 44px;
  width: 2px;
  background-color: rgba(var(--builza-white-rgb), .20);
}

.testimonial-one__quote-1 {
  position: relative;
  display: block;
  max-width: 160px;
  margin-left: -13px;
}

.testimonial-one__quote-1::before {
  content: "";
  position: absolute;
  height: 2px;
  left: -26px;
  right: 0;
  top: 50%;
  background-color: rgba(var(--builza-white-rgb), .20);
  transform: translateY(-50%);
}

.testimonial-one__quote-1 span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--builza-black);
  border-radius: 50%;
  font-size: 30px;
  color: var(--builza-base);
}

.testimonial-one__quote-2 {
  position: relative;
  display: block;
  margin-right: -55px;
  text-align: right;
}

.testimonial-one__quote-2::before {
  content: "";
  position: absolute;
  height: 2px;
  left: -39px;
  right: -50px;
  top: 50%;
  background-color: rgba(var(--builza-white-rgb), .20);
  transform: translateY(-50%);
}

.testimonial-one__quote-2 span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--builza-black);
  border-radius: 50%;
  font-size: 30px;
  color: var(--builza-base);
  margin-left: auto;
}

.testimonial-one__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.testimonial-one__name a {
  color: var(--builza-white);
}

.testimonial-one__name a:hover {
  color: var(--builza-base);
}

.testimonial-one__sub-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--builza-base);
}

.testimonial-one__text {
  color: rgba(var(--builza-white-rgb), .70);
  margin: 20px 0 30px;
}

.testimonial-one__ratting {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
}

.testimonial-one__ratting span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--builza-base);
}

.testimonial-one__img-box {
  position: absolute;
  top: -25px;
  right: -25px;
  border-radius: 50%;
  background-color: var(--builza-base);
  padding: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.testimonial-one__img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -70px;
  width: 70px;
  height: 25px;
  background-color: #833513;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.testimonial-one__img-box:after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 25px;
  height: 70px;
  background-color: #833513;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.testimonial-one__img {
  position: relative;
  display: block;
  max-width: 180px;
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__img-box-shape-1 {
  position: absolute;
  top: 0;
  left: -34px;
}

.testimonial-one__img-box-shape-1 img {
  width: auto;
}

.testimonial-one__img-box-shape-2 {
  position: absolute;
  bottom: -26px;
  right: 0;
}

.testimonial-one__img-box-shape-2 img {
  width: auto;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-one__carousel.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px !important;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--builza-black);
  margin: 0px 6px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-dot.active {
  background-color: var(--builza-base);
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -6px;
  left: -6px;
  bottom: -6px;
  right: -6px;
  content: "";
  border: 1px solid var(--builza-base);
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-dot.active:before {
  transform: scaleX(1.0);
  border: 1px solid var(--builza-base);
}

.testimonial-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*==============================================
   Who We Serve
===============================================*/
.who-we-serve {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.who-we-serve__bg-color {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 335px;
  background-color: var(--builza-primary);
  z-index: -1;
}

.who-we-serve .row {
  --bs-gutter-x: 15px;
}

.who-we-serve__left {
  position: relative;
  display: block;
}

.who-we-serve__left .row {
  --bs-gutter-x: 15px;
}

.who-we-serve__img-1 {
  position: relative;
  display: block;
  margin-left: -71px;
}

.who-we-serve__img-1 img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.who-we-serve__form-inner {
  position: relative;
  display: block;
}

.who-we-serve__from-text {
  position: absolute;
  left: -183px;
  bottom: 0;
  max-width: 168px;
  width: 100%;
  background-color: var(--builza-base);
  border-radius: var(--builza-bdr-radius);
  padding: 45px 20px 35px;
  border-top-left-radius: 200px;
}

.who-we-serve__from-text h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  text-align: right;
  color: var(--builza-white);
}

.who-we-serve__form-inner-wrap {
  position: relative;
  display: block;
  background-color: var(--builza-base);
  padding: 30px 30px 30px;
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.who-we-serve__form {
  position: relative;
  display: block;
}

.who-we-serve__form .row {
  --bs-gutter-x: 15px;
}

.who-we-serve__input-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.who-we-serve__input-box input[type="text"],
.who-we-serve__input-box input[type="email"] {
  height: 45px;
  width: 100%;
  border: 1px solid rgba(var(--builza-white-rgb), .50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 14px;
  color: rgba(var(--builza-white-rgb), 10);
  display: block;
  font-weight: 400;
  line-height: 45px;
  border-radius: var(--builza-bdr-radius);
}

.who-we-serve__input-box-icon {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.who-we-serve__input-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--builza-white);
}

.who-we-serve__input-box .select-box {
  width: 100%;
}

.who-we-serve__input-box .nice-select {
  height: 45px;
  width: 100%;
  border: 1px solid rgba(var(--builza-white-rgb), .50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 14px;
  color: rgba(var(--builza-white-rgb), 10);
  display: block;
  font-weight: 400;
  border-radius: var(--builza-bdr-radius);
  line-height: 45px;
  float: none;
}

.who-we-serve__input-box .nice-select:after {
  position: absolute;
  top: 16px;
  right: 20px;
  border-bottom: 4px solid var(--builza-white);
  border-right: 4px solid var(--builza-white);
  margin-top: 0px;
  z-index: 10;
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
}

.who-we-serve__input-box.nice-select .option {
  color: var(--builza-white);
}

.who-we-serve__input-box textarea {
  font-size: 14px;
  color: rgba(var(--builza-white-rgb), 10);
  height: 120px;
  width: 100%;
  padding: 15px 20px 30px;
  border: 1px solid rgba(var(--builza-white-rgb), .50);
  background-color: transparent;
  border-radius: var(--builza-bdr-radius);
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.who-we-serve__input-box.text-message-box {
  height: 120px;
}

.who-we-serve__btn-box {
  position: relative;
  display: block;
}

.who-we-serve__btn-box .thm-btn {
  border: none;
  background-color: var(--builza-black);
}

.who-we-serve__btn-box .thm-btn:hover {
  color: var(--builza-black);
}

.who-we-serve__btn-box .thm-btn::before,
.who-we-serve__btn-box .thm-btn::after {
  background-color: var(--builza-white);
}

.who-we-serve__btn-box .thm-btn>span {
  color: var(--builza-base);
  background-color: var(--builza-white);
}

.who-we-serve__btn-box .thm-btn:hover span {
  color: var(--builza-white);
  background-color: var(--builza-black);
}

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

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

.ui-datepicker td a {
  color: var(--builza-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(--builza-black) !important;
  background: var(--builza-black) !important;
  color: var(--builza-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(--builza-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(--builza-black);
  color: var(--builza-white);
  border-color: var(--builza-black);
}

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

.who-we-serve__right {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 29px 30px 30px;
  margin-right: -67px;
  overflow: hidden;
  border: 1px solid var(--builza-bdr-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  z-index: 1;
}

.who-we-serve__single {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.who-we-serve__single-img-box {
  position: relative;
  text-align: center;
  max-width: 120px;
  height: 120px;
  border: 1px solid rgba(var(--builza-base-rgb), .80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.who-we-serve__single-img {
  position: relative;
  display: block;
  max-width: 110px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
}

.who-we-serve__single-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: var(--builza-black);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.who-we-serve__single:hover .who-we-serve__single-img::before {
  opacity: .5;
}

.who-we-serve__single-img img {
  width: 100%;
  border-radius: 50%;
  transform: scale(1.0);
  transition: all 1500ms ease;
}

.who-we-serve__single:hover .who-we-serve__single-img img {
  transform: scale(1.05) rotate(0deg);
}

.who-we-serve__icon-and-title {
  position: relative;
  display: block;
  margin-top: -53px;
  text-align: center;
}

.who-we-serve__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--builza-white);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.who-we-serve__icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--builza-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.who-we-serve__single:hover .who-we-serve__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;
}

.who-we-serve__single-title {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: var(--builza-base);
  border-radius: 5px;
  padding: 10px 10px 12px;
  background-color: var(--builza-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
}

.who-we-serve__single-title:before {
  content: "";
  position: absolute;
  top: -19px;
  left: 30px;
  right: 30px;
  height: 20px;
  background-color: var(--builza-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.who-we-serve__single-title a {
  color: var(--builza-black);
}

.who-we-serve__single-title a:hover {
  color: var(--builza-base);
}

/*==============================================
    Counter One
===============================================*/
.counter-one {
  position: relative;
  display: block;
  background-color: #FFF;
  padding: 40px 0 10px;
  z-index: 1;
}

.counter-one__shape-1 {
  position: absolute;
  bottom: 0;
  right: -100px;
  opacity: 0.05;
  z-index: -1;
}

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

.counter-one__wrap {
  position: relative;
  display: block;
}

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

.counter-one__inner li {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
}

.counter-one__single {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.counter-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--builza-black);
  border: 6px solid var(--builza-base);
  border-radius: 50%;
  z-index: 1;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--builza-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-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;
}

.counter-one__content {
  position: relative;
  display: block;
  text-align: left;
}

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

.counter-one__count h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px !important;
  font-family: var(--builza-font-two) !important;
  color: var(--builza-black);
}

.counter-one__count span {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px !important;
  font-family: var(--builza-font-two) !important;
  color: var(--builza-black);
}

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

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

.pricing-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  background: var(--builza-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.pricing-one__single-shape-1 {
  position: absolute;
  bottom: 0;
  right: -25px;
  opacity: 0.05;
  z-index: -1;
}

.pricing-one__single-shape-1 img {
  width: auto;
}

.pricing-one__single-inner {
  position: relative;
  display: block;
  padding: 20px 20px 20px;
  border-radius: var(--builza-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.pricing-one__content {
  position: relative;
  display: block;
  background-color: var(--builza-base);
  border-radius: 5px;
  padding: 25px 25px 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;
}

.pricing-one__content:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: var(--builza-primary);
  border-radius: 5px;
  -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__pack-name {
  position: relative;
  display: inline-block;
  background-color: rgba(var(--builza-base-rgb), .10);
  padding: 8px 16px 8px;
  border-radius: 5px;
}

.pricing-one__pack-name p {
  font-size: 14px;
  color: var(--builza-base);
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
}

.pricing-one__price-box {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-top: 24px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing-one__price-box .dolar {
  position: relative;
  font-size: 24px;
  line-height: 24px;
  font-family: var(--builza-font-two);
  top: -3px;
}

.pricing-one__price-box .validity {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--builza-font);
  color: var(--builza-base);
  top: 6px;
}

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

.pricing-one__points-box {
  position: relative;
  display: block;
  margin: 30px 0 30px;
}

.pricing-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.pricing-one__points li+li {
  margin-top: 15px;
}

.pricing-one__points li .icon {
  position: relative;
  display: inline-block;
}

.pricing-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--builza-base);
}

.pricing-one__points li .text {
  position: relative;
  display: block;
  flex: 1;
}

.pricing-one__icon {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 69px;
  border-top: 0;
  border-radius: 5px;
  background-color: var(--builza-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;
}

.pricing-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 42px;
  color: var(--builza-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  top: -2px;
  right: -6px;
}

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

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 90px 0 110px;
  z-index: 1;
}

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

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

.blog-one__single-inner {
  position: relative;
  display: block;
  background-color: var(--builza-bdr-color);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  padding: 20px 20px 61px;
  border-radius: var(--builza-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(--builza-white);
  border-radius: var(--builza-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(--builza-base);
  width: 52px;
  height: 50px;
  border-radius: var(--builza-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(--builza-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(--builza-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::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(--builza-black-rgb), 0.6);
  border-radius: var(--builza-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-one__single:hover .blog-one__img::before {
  opacity: 1;
}

.blog-one__img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1);
}

.blog-one__tags {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 5;
}

.blog-one__single:hover .blog-one__tags {
  opacity: 1;
  transform: translateY(0px);
}

.blog-one__tags span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--builza-white);
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  background-color: var(--builza-base);
  border-radius: 5px;
  padding: 11px 17px 9px;
}

.blog-one__content {
  position: relative;
  display: block;
  margin-top: 24px;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-one__meta li {
  position: relative;
  display: block;
}

.blog-one__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--builza-gray);
}

.blog-one__meta li a span {
  position: relative;
  font-size: 16px;
  color: var(--builza-base);
}

.blog-one__meta li a:hover {
  color: var(--builza-base);
}

.blog-one__title {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 14px;
  font-weight: 700;
}

.blog-one__title a {
  color: var(--builza-black);
}

.blog-one__title a:hover {
  color: var(--builza-base);
}

.blog-one__read-more-box {
  position: absolute;
  bottom: 8px;
  left: 15px;
  z-index: 2;
}

.blog-one__read-more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--builza-black);
}

.blog-one__read-more span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--builza-base);
}

.blog-one__read-more:hover {
  color: var(--builza-base);
}

/*==============================================
Subscribe One
===============================================*/
.subscribe-one {
  position: relative;
  display: block;
  background: var(--builza-primary);
  padding: 50px 0px 60px;
  z-index: 1;
}

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

.subscribe-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

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

.subscribe-one__img-1 {
  position: absolute;
  bottom: 0;
  left: 13%;
  animation: leftRight 4s ease-in-out infinite;
  z-index: 1;
}

.subscribe-one__img-1 img {
  width: auto;
}

.subscribe-one__bg-color {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--builza-black);
  width: 660px;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
  content: "";
  z-index: -1;
}

.subscribe-one__bg-color::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #FFF;
  width: 650px;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
  content: "";
  z-index: -1;
}

.subscribe-one__inner {
  position: relative;
  display: block;
  z-index: 5;
}

.subscribe-one__content {
  position: relative;
  display: block;
  max-width: 750px;
  width: 100%;
  float: right;
}

.subscribe-one__content h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 21px;
}

.subscribe-one__form {
  position: relative;
  display: block;
  margin-top: 32px;
}

.subscribe-one__form .subscribe-form {
  position: relative;
  display: block;
}

.subscribe-one__form .subscribe-form input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  padding-right: 240px;
  background: transparent;
  border: 1px solid rgba(var(--builza-black-rgb), .20);
  color: var(--builza-gray);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  border-radius: 5px;
  transition: all 500ms ease;
  font-family: var(--builza-font);
  text-transform: none;
  outline: none;
  width: 100%;
}

.subscribe-one__form .subscribe-form .thm-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  padding-right: 3px;
  border: none;
}

/*==============================================
    Site Footer
===============================================*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

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

.site-footer__top-inner {
  position: relative;
  display: block;
  padding: 100px 0 60px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 50px;
  margin-top: 7px;
}

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

.footer-widget__about-text {
  margin: 0;
  color: rgba(var(--builza-white-rgb), .70);
  padding-top: 24px;
  padding-bottom: 17px;
}

.footer-widget__social {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--builza-white-rgb), .40);
  border-radius: 50%;
  font-size: 15px;
  color: var(--builza-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;
}

.footer-widget__social a:hover {
  color: var(--builza-white);
  border: 1px solid var(--builza-base);
}

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

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

.footer-widget__social a+a {
  margin-left: 5px;
}

.footer-widget__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--builza-white);
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 32px;
  text-transform: capitalize;
}

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

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

.footer-widget__links-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget__links-list li+li {
  margin-top: 16px;
}

.footer-widget__links-list li a {
  color: rgba(var(--builza-white-rgb), .70);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.footer-widget__links-list li span {
  position: relative;
  color: var(--builza-base);
  font-size: 20px;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: -24px;
}

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

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-widget__contact-list li+li {
  margin-top: 20px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--builza-white-rgb), .20);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .icon:hover {
  background-color: var(--builza-base);
  border: 1px solid var(--builza-base);
}

.footer-widget__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--builza-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li p {
  position: relative;
  display: block;
  flex: 1;
  color: rgba(var(--builza-white-rgb), .70);
}

.footer-widget__contact-list li p a {
  color: rgba(var(--builza-white-rgb), .70);
  position: relative;
  display: block;
  line-height: 0;
}

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

.footer-widget__services {
  position: relative;
  display: block;
  margin-left: 30px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--builza-white-rgb), .20);
}

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

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

.site-footer__copyright-text {
  color: rgba(var(--builza-white-rgb), .70);
}

.site-footer__copyright-text a {
  color: var(--builza-base);
}

.site-footer__copyright-text a:hover {
  color: var(--builza-white);
}

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

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
  color: #d4d4d4;
}

.site-footer__bottom-menu li+li {
  margin-left: 20px;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: rgb(211, 175, 55);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--builza-base);
}

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

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

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

.about-two__img-box-shape-1 {
  border-radius: var(--builza-bdr-radius);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--builza-base);
  clip-path: polygon(0 0, 100% 0, 100% 52%, 50% 100%, 0 100%, 0% 91%);
}

.about-two__img {
  position: relative;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 49%, 47% 100%, 0 100%, 0% 86%);
}

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

.about-two__img-2 {
  position: absolute;
  bottom: -231px;
  right: -120px;
  z-index: -1;
  clip-path: polygon(78% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 63%);
}

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

.about-two__experience-box {
  position: absolute;
  top: 30px;
  right: -60px;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 30px 30px 30px;
  max-width: 150px;
  width: 100%;
  border-top: 2px solid var(--builza-base);
  border-right: 2px solid var(--builza-base);
  
  background: linear-gradient( 180deg, #3a3a3a 0%, #1f1f1f 40%, #0a0a0a 70%, #000 100% );
}

.about-two__experience-box:before {
  content: "";
  position: absolute;
  bottom: -52px;
  right: 0px;
  border-left: 28px solid #000;
  border-bottom: 28px solid transparent;
  border-top: 30px solid #000;
  border-right: 30px solid transparent;
}

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

.about-two__experience-count h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px !important;
  font-family: var(--builza-font-two) !important;
  /*! color: #fff; */
}

.about-two__experience-count span {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px !important;
  font-family: var(--builza-font-two) !important;
  color: var(--builza-black);
  color: #fff;
}

.about-two__experience-count-text {
  margin-top: 6px;
  color: #fff;
}

.about-two__video-link {
  position: absolute;
  bottom: -40px;
  left: 151px;
  z-index: 2;
}

.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: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 18px;
  color: var(--builza-white);
  background-color: var(--builza-base);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

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

.about-two__video-icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--builza-white-rgb), .50);
  border-radius: 50%;
  z-index: -1;
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--builza-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__gurante {
  position: relative;
  display: block;
  max-width: 175px;
  padding: 30px 20px 25px;
  text-align: center;
  background-color: var(--builza-base);
  border-radius: var(--builza-bdr-radius);
  clip-path: polygon(0 0, 73% 0, 100% 21%, 100% 100%, 0 100%, 0% 50%);
  margin-top: 20px;
  z-index: 1;
}

.about-two__gurante-icon {
  position: relative;
  display: block;
}

.about-two__gurante-icon img {
  width: auto;
}

.about-two__gurante h4 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--builza-white);
  margin: 17px 0 2px;
}

.about-two__gurante p {
  color: var(--builza-white);
}

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

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

.about-two__points-list-box {
  position: relative;
  display: block;
  margin-right: -10px;
  margin-top: 24px;
}

.about-two__points-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-two__points-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.about-two__points-list li .icon {
  position: relative;
  display: inline-block;
}

.about-two__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  top: 10px;
  color: var(--builza-base);
  font-weight: 700;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

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

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

.about-two__points-list li .content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.about-two__points-list li .content p {
  margin-top: 6px;
}

.about-two__point-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 30px 30px 30px;
  margin-top: 12px;
}

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

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

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

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

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

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

.about-two__review-box {
  position: relative;
  display: block;
  border-left: 1px solid var(--builza-bdr-color);
  padding-left: 55px;
  flex: 1;
}

.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(--builza-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*==============================================
   Services Two
===============================================*/
.service-two {
  position: relative;
  display: block;
  counter-reset: count;
  background-color: var(--builza-primary);
  padding: 120px 0 90px;
  z-index: 1;
}

.service-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.service-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}

.service-two__top .section-title {
  margin-bottom: 0;
}

.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(--builza-white);
  border-radius: var(--builza-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: rgba(var(--builza-base-rgb), .90);
}

.service-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.service-two__title a {
  color: var(--builza-black);
}

.service-two__single:hover .service-two__title a {
  color: var(--builza-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: transparent;
  -webkit-text-stroke: 1px rgba(var(--builza-base-rgb));
  font-family: var(--builza-font-two);
  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(--builza-white-rgb), 1);
  -webkit-text-stroke: 1px rgba(var(--builza-white-rgb));
}

.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(--builza-white);
}

.service-two__sub-title {
  font-weight: 500;
  color: var(--builza-base);
  background-color: rgba(var(--builza-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(--builza-white);
  background-color: rgba(var(--builza-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(--builza-black);
}

.service-two__single:hover .service-two__read-more>a {
  color: var(--builza-white);
}

.service-two__read-more>a>span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--builza-base);
  border-radius: 5px;
  font-size: 16px;
  color: var(--builza-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-two__single:hover .service-two__read-more>a>span {
  color: var(--builza-base);
  background-color: var(--builza-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(--builza-white);
  border-radius: var(--builza-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(--builza-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(--builza-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  top: 7px;
}

.service-two__single:hover .service-two__icon span {
  color: var(--builza-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: relative;
  display: block;
}

/*==============================================
 Project Three
===============================================*/
.project-two {
  position: relative;
  display: block;
  background: var(--builza-white);
  padding: 110px 0px 107px;
  z-index: 1;
}

.project-two .auto-container {
  position: static;
  max-width: 1680px;
  padding: 0px 15px;
  margin: 0 auto;
}

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

.project-two__outer-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-two__single-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.project-two__single-box li {
  position: relative;
  flex: 0 0 50%;
  padding-left: 5px;
  padding-right: 5px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.project-two__single-box li.active {
  flex: 0 0 50%;
}

.project-two__single-inner {
  position: relative;
  display: block;
  min-height: 510px;
  border-radius: var(--builza-bdr-radius);
  overflow: hidden;
}

.project-two__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  transition: all 500ms ease;
  border-radius: 0px;
  z-index: -1;
}

.project-two__single-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: var(--builza-bdr-radius);
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7651435574229692) 9%, rgba(0, 0, 0, 0.7707457983193278) 14%, rgba(0, 0, 0, 0.5494572829131652) 35%, rgba(0, 0, 0, 0.48783263305322133) 57%, rgba(0, 0, 0, 0.35057773109243695) 95%);
  opacity: 0;
  border-radius: 0px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(540px) rotateX(-10deg);
  -ms-transform: perspective(540px) rotateX(-10deg);
  transform: perspective(540px) rotateX(-10deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  content: "";
  z-index: 1;
}

.project-two__single-inner:hover .project-two__single-bg::before {
  opacity: 1;
  -webkit-transform: perspective(540px) rotateX(0deg);
  -ms-transform: perspective(540px) rotateX(0deg);
  transform: perspective(540px) rotateX(0deg);
}

.project-two__single-content {
  position: absolute;
  left: 10px;
  bottom: 40px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-two__single-content .text-box {
  position: relative;
  display: block;
  background: var(--builza-white);
  border-radius: 5px;
  padding: 14px 35px 12px;
  padding-right: 45px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  opacity: 0;
  transform: translateX(-4%);
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
}

.project-two__single-inner:hover .project-two__single-content .text-box {
  opacity: 1;
  transform: translate(0);
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}

.project-two__single-content .text-box p {
  margin: 0;
}

.project-two__single-content .text-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-two__single-content .text-box h3 a {
  color: var(--builza-black);
}

.project-two__single-content .text-box h3 a:hover {
  color: var(--builza-base);
}

.project-two__single-content .btn-box {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateX(4%);
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
}

.project-two__single-inner:hover .project-two__single-content .btn-box {
  opacity: 1;
  transform: translate(0);
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}

.project-two__single-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: var(--builza-base);
  color: var(--builza-white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 17% 100%);
  border-radius: 5px;
}

.project-two__single-content .btn-box a:hover {
  background: var(--builza-white);
  color: var(--builza-black);
}

.project-two__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  transform: rotate(0deg);
}

.project-two__carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -110px;
  right: -110px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  z-index: 10;
  height: 0;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev,
.project-two__carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 5px;
  text-align: center;
  color: var(--builza-black);
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
  background: var(--builza-gray-bg);
  opacity: 1;
  margin: 0;
  padding: 0;
  transform: translateY(0px);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev::before,
.project-two__carousel.owl-theme .owl-nav .owl-next::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--builza-base);
  content: "";
  border-radius: 5px;
  z-index: -1;
  transform: scale(0.85);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  opacity: 0;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev:hover::before,
.project-two__carousel.owl-theme .owl-nav .owl-next:hover:before {
  transform: scaleX(1.0);
  opacity: 1;
}

.project-two__carousel.owl-theme .owl-prev span:before,
.project-two__carousel.owl-theme .owl-next span:before {
  position: relative;
  display: inline-block;
  line-height: 60px;
  font-weight: 700;
  transition: all 100ms ease;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev:hover,
.project-two__carousel.owl-theme .owl-nav .owl-next:hover {
  color: var(--builza-white);
}

@media(min-width: 768px) {
  .project-two__single-box li {
    flex: 1;
  }

  .project-two__single-box li.active {
    flex: 2.3;
  }

  .project-two__single-box li.active .project-two__single-content .project-two__single-bg {
    opacity: 0.80;
    -webkit-transform: perspective(540px) rotateX(0deg);
    -ms-transform: perspective(540px) rotateX(0deg);
    transform: perspective(540px) rotateX(0deg);
  }

  .project-two__single-box li.active .project-two__single-content .project-two__single-inner {
    opacity: 1;
    transform: perspective(540px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
  }


}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .thm-btn{
    padding: 2px 10px 2px;
  }
  .project-two__single-box li.active {
    flex: 0 0 100%;
  }

  .project-two__single-content {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }


}

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

.project-two__carousel.owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
}

.project-two__carousel.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 40px;
  height: 6px;
  border: 1px solid var(--builza-base);
  margin: 5px 7px;
  background: transparent;
  border-radius: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__carousel.owl-theme .owl-dots .owl-dot.active span,
.project-two__carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--builza-base);
}

/*==============================================
    Video Two
===============================================*/
.video-one {
  position: relative;
  display: block;
  padding: 170px 0px 158px;
  background-color: var(--builza-black);
  overflow: hidden;
  z-index: 1;
}

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

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

.video-one__shape-1 {
  position: absolute;
  top: -220px;
  left: 190px;
  bottom: -220px;
  width: 250px;
  background: rgba(var(--builza-white-rgb), 0.45);
  mix-blend-mode: soft-light;
  transform: rotate(40deg);
  mix-blend-mode: overlay;
  content: "";
}

.video-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.video-one__box {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.video-one__box a {
  position: relative;
  display: inline-block;
  z-index: 5;
}

.video-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: var(--builza-base);
  background-color: var(--builza-white);
  border-radius: 50%;
  margin: 0 auto;
}

.video-one__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--builza-white);
  border-radius: 50%;
  content: "";
}

.video-one__box .border-animation {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid var(--builza-white);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
  border-radius: 50%;
}

.video-one__box .border-animation.border-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.video-one__box .border-animation.border-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-one__inner .title-box {
  position: relative;
  display: block;
  margin-top: 70px;
}

.video-one__inner .title-box h2 {
  color: var(--builza-white);
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two__shape-3 {
  position: absolute;
  top: -20px;
  right: 80px;
  z-index: -1;
}

.testimonial-two__shape-3 img {
  width: auto;
}

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

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

.testimonial-two__img {
  position: relative;
  display: block;
  border-radius: var(--builza-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;
}

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

.testimonial-two__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.testimonial-two__main-content {
  position: relative;
  display: block;
  margin-left: -120px;
  margin-right: 50px;
}

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

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 30px 60px 60px;
}

.testimonial-two__ratting {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-two__ratting span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--builza-base);
}

.testimonial-two__text {
  font-style: italic;
  margin: 15px 0 21px;
}

.testimonial-two__client-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-two__client-img {
  position: relative;
  display: block;
  max-width: 74px;
  width: 100%;
  border: 2px solid var(--builza-base);
  border-radius: 5px;
}

.testimonial-two__client-img img {
  width: 100%;
  border-radius: 4px;
}

.testimonial-two__client-content {
  position: relative;
  display: block;
}

.testimonial-two__client-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 5px;
}

.testimonial-two__client-content h3>a {
  color: var(--builza-black);
}

.testimonial-two__client-content h3>a:hover {
  color: var(--builza-base);
}

.testimonial-two__quote {
  position: absolute;
  bottom: 45px;
  right: 45px;
}

.testimonial-two__quote span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: rgba(var(--builza-base-rgb), 10);
}

.testimonial-two__shape-1 {
  position: absolute;
  top: 40px;
  left: 30px;
  bottom: 30px;
  width: 2px;
  background-color: rgba(var(--builza-bdr-color-rgb), .50);
}

.testimonial-two__shape-2 {
  position: absolute;
  right: 30px;
  left: 30px;
  bottom: 30px;
  height: 2px;
  background-color: rgba(var(--builza-bdr-color-rgb), .50);
}

.testimonial-two__carousel .owl-nav {
  position: absolute;
  display: flex;
  align-items: center;
  left: -600px;
  bottom: 100px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--builza-white);
  background-color: var(--builza-base);
  font-size: 18px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--builza-white);
  background-color: var(--builza-base);
  font-size: 18px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  color: var(--builza-white);
  background-color: var(--builza-black);
}

.testimonial-two__thumb-outer-box {
  position: absolute;
  max-width: 360px;
  width: 100%;
  left: -660px;
  bottom: -42px;
}

.testimonial-two__thumb-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.testimonial-two__thumb-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__thumb-carousel .owl-item {
  position: relative;
  opacity: 1;
}

.testimonial-two__thumb-item {
  position: relative;
  display: block;
}

.testimonial-two__img-holder-box {
  position: relative;
  display: block;
  border-radius: 5px;
}

.testimonial-two__img-holder {
  position: relative;
  display: block;
  border-radius: 5px;
  transition: all 500ms ease;
  transform: scale(.85);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}

.testimonial-two__img-holder>img {
  border-radius: 5px;
  border: 3px solid var(--builza-base);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}

.testimonial-two__thumb-outer-box .owl-item.current .testimonial-two__img-holder {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-two {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0px 0px;
  z-index: 1;
}

.counter-two__bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 530px;
  background-color: var(--builza-primary);
  z-index: -1;
}

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

.counter-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 62px;
}

.counter-two__top .section-title {
  margin-bottom: 0;
}

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

.counter-two__bottom {
  position: relative;
  display: block;
}

.counter-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.counter-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
  width: 115px;
  background-color: var(--builza-base);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  margin: 0 auto -45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 3;
}

.counter-two__single:hover .counter-two__icon {
  background-color: var(--builza-white);
  transition-delay: 500ms;
}

.counter-two__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--builza-white);
  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;
}

.counter-two__single:hover .counter-two__icon:before {
  transform: scaleX(1);
}

.counter-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 52px;
  color: var(--builza-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.counter-two__single:hover .counter-two__icon span {
  color: var(--builza-base);
  -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;
}

.counter-two__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--builza-black);
  padding: 69px 20px 40px;
  border-radius: var(--builza-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;
  transition: all 500ms ease;
  z-index: 1;
}

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

.counter-two__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.counter-two__count-box h3 {
  color: var(--builza-white);
  font-size: 60px;
  line-height: 60px !important;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--builza-font-two) !important;
}

.counter-two__count-box span {
  color: var(--builza-white);
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
}

.counter-two__text-box {
  position: relative;
  display: block;
  margin-top: -21px;
  z-index: 2;
}

.counter-two__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--builza-black);
  padding: 10px 20px 10px;
  font-family: var(--builza-font-two);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--builza-white);
  font-size: 18px;
  border-radius: var(--builza-bdr-radius);
  max-width: 245px;
  width: 100%;
}

/***  =============================================
Team Two
=============================================  ***/
.team-two {
  position: relative;
  display: block;
  padding: 90px 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;
  z-index: 1;
}

.team-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;
  border-radius: var(--builza-bdr-radius);
  border-bottom-left-radius: 0;
}

.team-two__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(--builza-black-rgb), 0.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-two__single:hover .team-two__img::before {
  opacity: 1;
}

.team-two__img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
  border-bottom-left-radius: 0;
  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__social-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  bottom: 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: 45px;
  height: 45px;
  background-color: var(--builza-base);
  font-size: 16px;
  color: var(--builza-white);
  border-radius: var(--builza-bdr-radius);
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__plus>span:hover {
  background-color: var(--builza-black);
}

.team-two__social-list {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  top: -180px;
  left: 2.5px;
  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(--builza-white);
  background-color: var(--builza-base);
  border-radius: var(--builza-bdr-radius);
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.team-two__plus:hover .team-two__social-list a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.team-two__plus:hover .team-two__social-list a:nth-child(1) {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.team-two__plus:hover .team-two__social-list a:nth-child(2) {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.team-two__plus:hover .team-two__social-list a:nth-child(3) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.team-two__plus:hover .team-two__social-list a:nth-child(4) {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-two__social-list>a:hover {
  color: var(--builza-white);
  background-color: var(--builza-black);
}

.team-two__content {
  position: relative;
  display: block;
  background: var(--builza-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(--builza-bdr-radius);
  border-bottom-right-radius: var(--builza-bdr-radius);
}

.team-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.team-two__title>a {
  color: var(--builza-black);
}

.team-two__title>a:hover {
  color: var(--builza-base);
}

.team-two__profile {
  position: absolute;
  bottom: 0;
  left: 15px;
}

.team-two__profile>a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--builza-black);
}

.team-two__profile a>span {
  font-size: 12px;
  font-weight: 700;
  color: var(--builza-base);
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  padding: 100px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc((100% - 120px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.contact-one__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  filter: grayscale(1);
  z-index: -1;
  opacity: 0.05;
}

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

.contact-one__left {
  position: relative;
  display: block;
  margin-right: 45px;
  margin-left: 100px;
}

.contact-one__contact-info-box {
  position: relative;
  background-color: var(--builza-base);
  border-radius: var(--builza-bdr-radius);
  padding: 43px 50px 50px;
  padding-right: 45px;
  display: block;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.contact-one__contact-info-box-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .50;
  border-radius: var(--builza-bdr-radius);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.contact-one__contact-info-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: var(--builza-white);
  margin-bottom: 20px;
  font-style: italic;
}

.contact-one__contact-info-list {
  position: relative;
  display: block;
}

.contact-one__contact-info-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: var(--builza-bdr-radius);
  padding: 18px 20px 22px;
  padding-right: 12px;
  border: 1px solid rgba(var(--builza-white-rgb), .30);
  z-index: 1;
}

.contact-one__contact-info-list li+li {
  margin-top: 15px;
}

.contact-one__contact-info-list li .icon {
  position: relative;
  display: inline-block;
}

.contact-one__contact-info-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--builza-white);
}

.contact-one__contact-info-list li .content {
  position: relative;
  display: block;
}

.contact-one__contact-info-list li .content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--builza-white);
  margin-bottom: 5px;
}

.contact-one__contact-info-list li .content p {
  font-weight: 500;
  color: rgba(var(--builza-white-rgb), .80);
}

.contact-one__contact-info-list li .content p a {
  color: rgba(var(--builza-white-rgb), .80);
}

.contact-one__contact-info-list li .content p a:hover {
  color: var(--builza-black);
}

.contact-one__social-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--builza-white-rgb), .30);
  padding-top: 20px;
}

.contact-one__social-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--builza-black);
  border-radius: 50%;
  font-size: 16px;
  color: var(--builza-white);
}

.contact-one__social-box a:hover {
  background-color: var(--builza-white);
  color: var(--builza-base);
}

.contact-one__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 40px;
}

.contact-one__form-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--builza-white);
  margin-bottom: 10px;
}

.contact-one__form-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--builza-base);
  line-height: 28px;
  margin-bottom: 24px;
}

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

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

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"],
.contact-one__input-box input[type="number"] {
  height: 60px;
  width: 100%;
  background-color: rgba(var(--builza-white-rgb), 0.03);
  border: 1px solid rgba(var(--builza-white-rgb), .10);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 60px;
  color: rgba(var(--builza-primary-rgb), .60);
  display: block;
  border-radius: var(--builza-bdr-radius);
}

.contact-one__input-box textarea {
  font-size: 16px;
  color: rgba(var(--builza-primary-rgb), .60);
  height: 163px;
  width: 100%;
  background-color: rgba(var(--builza-white-rgb), 0.03);
  border: 1px solid rgba(var(--builza-white-rgb), .10);
  padding: 15px 30px 30px;
  border-radius: var(--builza-bdr-radius);
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.contact-one__input-box.text-message-box {
  height: 163px;
}

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

.contact-one__btn-box .thm-btn {
  border: none;
}

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

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

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

/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.faq-one__shape-2 {
  position: absolute;
  top: -20px;
  right: 785px;
  z-index: -1;
}

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


.faq-one__left {
  position: relative;
  display: block;
}

.faq-one__left .faq-one-accrodion {
  position: relative;
  display: block;
}

.faq-one__left .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border-radius: 3px;
  background-color: var(--builza-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
}

.faq-one__left .faq-one-accrodion .accrodion::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--builza-base);
  content: "";
}

.faq-one__left .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-one__left .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 15px 25px 13px;
  padding-left: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__left .faq-one-accrodion .accrodion-title h4 {
  position: relative;
  color: var(--builza-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--builza-black);
}

.faq-one__left .faq-one-accrodion .accrodion-title h4::before {
  position: absolute;
  color: var(--logistiq-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  content: "\f106";
  font-family: "Font Awesome 5 Pro" !important;
}

.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--builza-base);
  top: 5px;
}

.faq-one__left .faq-one-accrodion .accrodion-content {
  position: relative;
  display: block;
  padding: 0px 30px 22px;
}

.faq-one__left .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

.faq-one__right {
  position: relative;
  display: block;
  margin-left: 111px;
  margin-right: 100px;
  margin-top: 43px;
}

.faq-one__img {
  position: relative;
  display: block;
}

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

.faq-one__img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 11%, rgba(255, 255, 255, 0) 100%);
}

.faq-one__shape-1 {
  position: absolute;
  bottom: -85px;
  right: -490px;
}

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

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  padding: 110px 0px 120px;
  z-index: 1;
}

.brand-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .07;
  z-index: -1;
}

.brand-one .container {
  max-width: 1350px;
}

.brand-one__title {
  color: rgba(var(--builza-white-rgb), 1);
  font-size: 45px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 50px;
}

.brand-one__carousel {
  position: relative;
}

.brand-one__single {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.brand-one__img {
  position: relative;
  display: inline-block;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-one__img:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(var(--builza-white-rgb), .20);
  border-radius: var(--builza-bdr-radius);
  z-index: -1;
}

.brand-one__single:hover .brand-one__img {
  opacity: 0;
}

.brand-one__img>img {
  position: relative;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.brand-one__hover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-one__hover-img:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(var(--builza-white-rgb), .30);
  border-radius: var(--builza-bdr-radius);
  z-index: -1;
}

.brand-one__single:hover .brand-one__hover-img {
  opacity: 1;
}

.brand-one__hover-img img {
  width: auto;
}

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

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

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

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

.blog-two__date-box {
  position: absolute;
  top: 43%;
  left: -58px;
  transform: rotate(-90deg) translateY(-50%);
  z-index: 2;
}

.blog-two__date-box h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.blog-two__date-box h3 span {
  position: relative;
  display: inline-block;
  color: var(--builza-base);
  font-size: 20px;
  line-height: 20px;
  margin-right: 2px;
}

.blog-two__img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-two__img {
  position: relative;
  display: block;
  border-radius: var(--builza-bdr-radius);
  border-bottom-left-radius: 0;
  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;
}

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

.blog-two__single:hover .blog-two__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.blog-two__single:hover .blog-two__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);
}

.blog-two__img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__content {
  position: relative;
  display: block;
  padding: 30px 30px 22px;
  border: 1px solid var(--builza-bdr-color);
  border-top: 0;
}

.blog-two__meta-box {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-two__meta-box li {
  position: relative;
  display: block;
  margin-right: 20px;
}

.blog-two__meta-box li:last-child {
  margin-right: 0px;
}

.blog-two__meta-box li p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--builza-font-two);
}

.blog-two__meta-box li p span {
  position: relative;
  display: inline-block;
  color: var(--builza-base);
  font-size: 16px;
  line-height: 16px;
  top: 2px;
  margin-right: 5px;
}

.blog-two__meta-box li p a {
  color: var(--builza-gray);
}

.blog-two__meta-box li p a:hover {
  color: var(--builza-base);
}

.blog-two__content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
}

.blog-two__content h2 a {
  color: var(--builza-black);
}

.blog-two__content h2 a:hover {
  color: var(--builza-base);
}

.blog-two__content p {
  margin: 0;
}

.blog-two__btn-box {
  position: relative;
  display: block;
  margin-top: 15px;
}

.blog-two__btn-box a {
  color: var(--builza-base);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
}

.blog-two__btn-box a span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  margin-left: 2px;
}

/*==============================================
    Site Footer Two
===============================================*/
.site-footer-two {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  padding: 80px 0px 0px;
  overflow: hidden;
  z-index: 1;
}

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

.site-footer-two__top {
  position: relative;
  display: block;
}

.site-footer-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--builza-gray-rgb), 0.5);
  padding-bottom: 60px;
}

.site-footer-two__logo {
  position: relative;
  display: block;
}

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

.site-footer-two__logo a img {
  width: 100%;
}

.site-footer-two__subscribe-form {
  position: relative;
  display: block;
}

.site-footer-two__subscribe-form .subscribe-form {
  position: relative;
  display: block;
}

.site-footer-two__subscribe-form .subscribe-form input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 25px;
  padding-right: 174px;
  background: transparent;
  border: 1px solid rgba(239, 243, 250, 0.25);
  color: rgba(var(--builza-white-rgb), .80);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  border-radius: 5px;
  transition: all 500ms ease;
  font-family: var(--builza-font);
  text-transform: none;
  outline: none;
  width: 480px;
}

.site-footer-two__subscribe-form .subscribe-form input::-webkit-input-placeholder {
  color: #EFF3FA;
}

.site-footer-two__subscribe-form .subscribe-form input:-moz-placeholder {
  color: #EFF3FA;
}

.site-footer-two__subscribe-form .subscribe-form input::-moz-placeholder {
  color: #EFF3FA;
}

.site-footer-two__subscribe-form .subscribe-form input:-ms-input-placeholder {
  color: #EFF3FA;
}

.site-footer-two__subscribe-form .subscribe-form .thm-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  border-radius: 5px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border: none;
}

.site-footer-two__subscribe-form .subscribe-form .thm-btn::after,
.site-footer-two__subscribe-form .subscribe-form .thm-btn::before {
  background-color: var(--builza-white);
}

.site-footer-two__subscribe-form .subscribe-form .thm-btn:hover {
  color: var(--builza-base);
}

.site-footer-two__social-links {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-two__social-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(var(--builza-gray-rgb), 0.5);
  border-radius: 50%;
  z-index: 1;
}

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

.site-footer-two__social-links a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.site-footer-two__social-links a+a {
  margin-left: 10px;
}

.site-footer-two__social-links a span::before {
  position: relative;
  display: inline-block;
  color: var(--builza-white);
  font-size: 15px;
  line-height: 15px;
}

.site-footer-two__middle {
  position: relative;
  display: block;
  margin-top: 100px;
  padding-bottom: 60px;
}

.footer-widget-two__single {
  position: relative;
  display: block;
}

.footer-widget-two__services {
  position: relative;
  display: block;
}

.footer-widget-two__single .title-box {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 24px;
}

.footer-widget-two__single .title-box h2 {
  color: var(--builza-white);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.footer-widget-two__single .title-box .line {
  position: relative;
  display: block;
  height: 2px;
  width: 105px;
  background: var(--builza-base);
}

.footer-widget-two__single .title-box .line::before {
  position: absolute;
  top: 0;
  right: -25px;
  width: 20px;
  height: 2px;
  background: var(--builza-base);
  content: "";
}

.footer-widget-two__services {
  position: relative;
  display: block;
}

.footer-widget-two__list {
  position: relative;
  display: block;
}

.footer-widget-two__list li {
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.footer-widget-two__list li:last-child {
  margin-bottom: 0px;
}

.footer-widget-two__list li a {
  color: #E3E2E2;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.footer-widget-two__list li a:hover {
  color: var(--builza-base);
}

.footer-widget-two__list li a span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  top: 1px;
}

.footer-widget-two__useful-links {
  position: relative;
  display: block;
}

.footer-widget-two__contact {
  position: relative;
  display: block;
  margin-left: -50px;
}

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

.footer-widget-two__contact-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-widget-two__contact-list li:last-child {
  margin-bottom: 0px;
}

.footer-widget-two__contact-list li:nth-child(3) {
  align-items: center;
}

.footer-widget-two__contact-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(var(--builza-white-rgb), 0.15);
  border-radius: 6px;
  top: 6px;
}

.footer-widget-two__contact-list li:nth-child(3) .icon-box {
  top: 0;
}

.footer-widget-two__contact-list li .icon-box span {
  position: relative;
  display: inline-block;
  color: var(--builza-white);
  font-size: 15px;
  line-height: 15px;
}

.footer-widget-two__contact-list li .text-box {
  position: relative;
  display: block;
  margin-left: 12px;
}

.footer-widget-two__contact-list li .text-box p {
  color: #E3E2E2;
}

.footer-widget-two__contact-list li .text-box p a {
  color: #E3E2E2;
}

.footer-widget-two__contact-list li .text-box p a:hover {
  color: var(--builza-base);
}

.footer-widget-two__gallery {
  position: relative;
  display: block;
}

.footer-widget-two__gallery-list {
  position: relative;
  display: block;
  margin-left: -8px;
  margin-right: -8px;
  padding-top: 6px;
}

.footer-widget-two__gallery-list li {
  position: relative;
  display: inline-block;
  padding: 0px 8px 0px;
  margin-bottom: 20px;
}

.footer-widget-two__gallery-list li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
}

.footer-widget-two__gallery-list li .img-box img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.footer-widget-two__gallery-list li:hover .img-box img {
  transform: scale(1.2) rotate(1deg);
}

.footer-widget-two__gallery-list li .img-box .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--builza-base-rgb), 0.8);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
}

.footer-widget-two__gallery-list li:hover .img-box .overlay-icon {
  opacity: 1;
}

.footer-widget-two__gallery-list li .img-box .overlay-icon a span::before {
  position: relative;
  display: inline-block;
  color: var(--builza-white);
  font-size: 20px;
  line-height: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.1s ease-in-out 0.9s;
}

.footer-widget-two__gallery-list li:hover .img-box .overlay-icon a span::before {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s ease-in-out 0.5s;
}

.footer-widget-two__gallery-list li .img-box .overlay-icon a:hover span::before {
  color: var(--builza-black);
}

.site-footer-two__bottom {
  position: relative;
  display: block;
}

.site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--builza-gray-rgb), 0.5);
  padding: 24px 0px 22px;
}

.site-footer-two__copyright {
  position: relative;
  display: block;
}

.site-footer-two__copyright p {
  color: var(--builza-white);
}

.site-footer-two__copyright p a {
  color: var(--builza-base);
}

.site-footer-two__copyright p a:hover {
  color: var(--builza-white);
}

.site-footer-two__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-two__bottom-menu li {
  position: relative;
  display: block;
  padding-left: 25px;
  padding-right: 30px;
}

.site-footer-two__bottom-menu li:first-child {
  padding-left: 0px;
}

.site-footer-two__bottom-menu li:last-child {
  padding-right: 0px;
}

.site-footer-two__bottom-menu li::before {
  position: absolute;
  top: 9px;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--builza-white);
  border-radius: 50%;
  content: "";
}

.site-footer-two__bottom-menu li:last-child::before {
  display: none;
}

.site-footer-two__bottom-menu li a {
  color: var(--builza-white);
  font-size: 16px;
  line-height: 26px;
}

.site-footer-two__bottom-menu li a:hover {
  color: var(--builza-base);
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

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

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

.feature-one__single-inner {
  position: relative;
  display: block;
  border-top: 1px solid var(--builza-base);
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 29px 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;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.feature-one__text {
  margin: 16px 0 20px;
}

.feature-one__read-more {
  position: relative;
  display: inline-block;
}

.feature-one__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--builza-font-two);
  font-weight: 500;
  color: var(--builza-black);
}

.feature-one__read-more a:hover {
  color: var(--builza-base);
}

.feature-one__read-more a span {
  font-size: 14px;
  color: var(--builza-base);
}

.feature-one__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
  width: 66px;
  height: 110px;
  background-color: var(--builza-primary);
  border-radius: var(--builza-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;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--builza-base);
  top: 9px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  top: 7px;
}

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

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

.about-three__shape-1 {
  position: absolute;
  bottom: -30px;
  left: -20px;
  z-index: -1;
}

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

.about-three__shape-2 {
  position: absolute;
  top: -150px;
  right: -150px;
  opacity: .10;
  z-index: -1;
}

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

.about-three__left {
  position: relative;
  display: block;
}

.about-three__left .section-title {
  margin-bottom: 25px;
}

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

.about-three__text-2 {
  margin: 12px 0 20px;
}

.about-three__tab {
  position: relative;
  display: block;
}

.about-three__tab .tabs-button-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 24px;
  z-index: 1;
}

.about-three__tab .tabs-button-box li:last-child {
  margin-right: 0px;
}

.about-three__tab .tabs-button-box .tab-btn-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 20px 11px;
  background-color: var(--builza-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  border-radius: var(--builza-bdr-radius);
  cursor: pointer;
  z-index: 1;
}

.about-three__tab .tabs-button-box .tab-btn-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0%;
  background-color: var(--builza-base);
  border-radius: var(--builza-bdr-radius);
  transition: all 0.3s ease;
  z-index: -1;
}

.about-three__tab .tabs-button-box .tab-btn-item.active-btn:after {
  height: 100%;
}

.about-three__tab .tabs-button-box .tab-btn-item h3 {
  color: var(--builza-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-three__tab .tabs-button-box .tab-btn-item.active-btn h3 {
  color: var(--builza-white);
}

.about-three__tab .tabs-content {
  position: relative;
  display: block;
}

.about-three__tab .tabs-content .tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.about-three__tab .tabs-content .tab.tab-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.about-three__single-tab {
  transition: all 0.7s ease;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top bottom;
}

.about-three__tab .tabs-content .tab.tab-active .about-three__single-tab {
  opacity: 1.0;
  transform: scaleY(1);
  transform-origin: bottom top;
}

.about-three__single-tab-inner {
  position: relative;
  display: block;
}

.about-three__single-tab-text {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.about-three__single-tab-text p {
  margin: 0;
}

.about-three__single-tab-bottom-list {
  position: relative;
  display: block;
}

.about-three__single-tab-bottom-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-three__single-tab-bottom-list li+li {
  margin-top: 5px;
}

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

.about-three__single-tab-bottom-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 10px;
  color: var(--builza-white);
}

.about-three__single-tab-bottom-list li p {
  position: relative;
  display: block;
  flex: 1;
}

.about-three__btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

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

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

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

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

.about-three__img-2 {
  position: absolute;
  bottom: -238px;
  right: -160px;
  max-width: 390px;
  width: 100%;
  -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-three__img-2 img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.about-three__experience-box {
  position: absolute;
  left: 0;
  right: 30px;
  bottom: -238px;
  background-color: var(--builza-base);
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  padding: 52px 20px 52px;
  border-radius: var(--builza-bdr-radius);
  text-align: center;
  overflow: hidden;
  max-width: 190px;
  text-align: center;
  z-index: 1;
}

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

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

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

.about-three__experience-count-text {
  color: var(--builza-white);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.about-three__img-shape-1 {
  position: absolute;
  top: 0;
  right: -160px;
  border-top: 228px solid transparent;
  border-right: 0 solid transparent;
  border-left: 150px solid var(--builza-base);
  z-index: -1;
}

.about-three__video-link {
  position: absolute;
  top: 185px;
  right: -50px;
  z-index: 3;
}

.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: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 22px;
  color: var(--builza-black);
  background-color: rgba(var(--builza-white-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;
}

.about-three__video-icon:hover {
  background-color: var(--builza-base);
  color: var(--builza-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: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--builza-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--builza-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;
}

/*==============================================
    Services Three
===============================================*/
.services-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 2;
}

.services-three__bg-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 575px;
  background-color: var(--builza-primary);
  z-index: -1;
}

.services-three__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  opacity: 0.05;
}

.services-three__carousel {
  position: relative;
  display: block;
}

.services-three .swiper-container {
  overflow: visible;
}

.services-three__single {
  position: relative;
  display: block;
}

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

.services-three__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-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--builza-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-three__single:hover .services-three__img::before {
  opacity: 1;
  transform: translateY(0px);
}

.services-three__img img {
  width: 100%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border-radius: var(--builza-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-three__single:hover .services-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-three__count {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 85px;
  background-color: var(--builza-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: 700;
  color: var(--builza-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-three__count::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--builza-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-three__single:hover .services-three__count::before {
  background-color: rgba(var(--builza-black-rgb), 1);
  opacity: 1;
  transform: translateY(0px);
}

.services-three__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--builza-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-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  margin: -70px auto 19px;
  background-color: var(--builza-base);
  border-radius: 50%;
  border: 8px solid var(--builza-white);
  transition: all 500ms ease;
  z-index: 1;
}

.services-three__single:hover .services-three__icon {
  background-color: var(--builza-black);
}

.services-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--builza-white);
  transition: all 500ms ease;
}

.services-three__single:hover .services-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;
}

.services-three__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
}

.services-three__title a {
  color: var(--builza-black);
}

.services-three__title a:hover {
  color: var(--builza-base);
}

.services-three__text {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 16px;
}

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

.services-three__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  color: var(--builza-black);
  font-weight: 600;
  text-transform: capitalize;
}

.services-three__btn-box a:hover {
  color: var(--builza-base);
}

/*--------------------------------------------------------------
# Progress One
--------------------------------------------------------------*/
.progress-one {
  position: relative;
  display: block;
  padding: 0px 0 100px;
  z-index: 1;
}

.progress-one__bg {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  width: calc((100% - 110px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  border-top-right-radius: var(--builza-bdr-radius);
  border-bottom-right-radius: var(--builza-bdr-radius);
  z-index: -1;
}

.progress-one__bg::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0;
  border-top-right-radius: var(--builza-bdr-radius);
  border-bottom-right-radius: var(--builza-bdr-radius);
  background: linear-gradient(90deg, rgba(14, 18, 29, 0) 0%, rgba(14, 18, 29, 1) 100%);
}

.progress-one__left {
  position: relative;
  display: block;
}

.progress-one__right {
  position: relative;
  display: block;
}

.progress-one__right .section-title__title {
  margin-right: -100px;
}

.progress-one__right .section-title {
  margin-bottom: 25px;
}

.progress-one__progress-box-title-inner {
  position: absolute;
  top: 50%;
  left: -300px;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-one__progress-box-title {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: var(--builza-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.progress-one__progress-box-title-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .10;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.progress-one__progress-box-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--builza-black-rgb), .50);
  z-index: -1;
}

.progress-one__progress-box-title-shape-1 {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 26px;
  height: 36px;
  background-color: var(--builza-primary);
  transform: translateY(-50%);
}

.progress-one__progress-box-title-shape-1::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid var(--builza-primary);
  transform: translateY(-50%);
}

.progress-one__progress-box-title h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--builza-black);
}

.progress-one__progress-box {
  position: relative;
  display: block;
  margin-top: 40px;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 55px 60px 55px;
  margin-left: -120px;
  z-index: 1;
}

.progress-one__progress-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.progress-one__shape-1 {
  position: absolute;
  bottom: -80px;
  right: -90px;
  opacity: 0.07;
  z-index: -1;
}

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

.progress-one__progress-box-single {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.progress-one__progress-box-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px dashed var(--builza-base);
  border-radius: 50%;
  z-index: 1;
}

.progress-one__progress-box-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: var(--builza-base);
  border-radius: 50%;
  z-index: -1;
}

.progress-one__progress-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: var(--builza-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.progress-one__progress-box-single:hover .progress-one__progress-box-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;
}

.progress-one__progress-title {
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 25px;
  margin-bottom: 22px;
}

.progress-one__progress-box .progress-box {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
}

.progress-one__progress-box-single+.progress-one__progress-box-single {
  margin-top: 20px;
}

.progress-one__progress-box .progress-box .bar-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 9px;
  font-family: var(--builza-font-two);
  color: var(--builza-black);
}

.progress-one__progress-box .progress-box .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--builza-white);
  border-radius: 5px;
}

.progress-one__progress-box .progress-box .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  background: var(--builza-base);
  border-radius: 5px;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.progress-one__progress-box .progress-box .count-box {
  position: absolute;
  right: 0px;
  margin-right: -35px;
  bottom: 18px;
  width: 40px;
  height: 22px;
  background: var(--builza-base);
  color: var(--builza-white);
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0;
  opacity: 0;
  font-family: var(--builza-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.progress-one__progress-box .progress-box .counted .count-box {
  opacity: 1;
}

.progress-one__progress-box .progress-box .count-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-top: 5px solid var(--builza-base);
  border-left: 5px solid var(--builza-base);
}

/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  counter-reset: count;
  z-index: 5;
}

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

.process-two__shape-four {
  position: absolute;
  top: -57px;
  left: -86px;
  z-index: -1;
}

.process-two__shape-four img {
  width: auto;
}

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

.process-two__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.process-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: var(--builza-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 49.51px 22.49px;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.process-two__icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: var(--builza-base);
  border-radius: 50%;
  z-index: -1;
}

.process-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--builza-primary);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.process-two__single:hover .process-two__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-two__content {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--builza-black-rgb), .50);
  border-radius: var(--builza-bdr-radius);
  padding: 15px 20px 15px;
  max-width: 230px;
  margin: 0 auto;
  width: 100%;
  margin-top: -1px;
}

.process-two__count {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.process-two ul li:nth-child(2) .process-two__count {
  bottom: -20px;
  top: inherit;
}

.process-two ul li:nth-child(4) .process-two__count {
  bottom: -20px;
  top: inherit;
}

.process-two__count::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--builza-black);
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--builza-black);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.process-two__shape-1 {
  position: relative;
  display: block;
  width: 25px;
  border: 1px solid rgba(var(--builza-black-rgb), .50);
  height: 15px;
  margin: 0 auto;
  border-bottom: 0;
  border-top: 0;
  background-color: rgba(var(--builza-primary-rgb), 10);
  margin-top: 15px;
  z-index: 1;
}

.process-two__shape-2 {
  position: absolute;
  left: -59px;
  top: -29px;
  transform: rotate(9deg);
}

.process-two__shape-2:before {
  content: "";
  position: absolute;
  top: -12px;
  left: -11px;
  width: 15px;
  height: 15px;
  background-color: var(--builza-base);
  border-radius: 50%;
}

.process-two__shape-2 img {
  width: auto;
}

.process-two__shape-3 {
  position: absolute;
  right: -59px;
  top: -29px;
  transform: rotate(-9deg);
}

.process-two__shape-3:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -13px;
  width: 15px;
  height: 15px;
  background-color: var(--builza-base);
  border-radius: 50%;
}

.process-two__shape-3 img {
  width: auto;
}

.process-two ul li:nth-child(2) .process-two__shape-1 {
  margin-top: 0;
  margin-bottom: 15px;
}

.process-two ul li:nth-child(2) .process-two__shape-2 {
  bottom: -28px;
  top: inherit;
  left: -58px;
  transform: rotate(-9deg);
}

.process-two ul li:nth-child(2) .process-two__shape-2:before {
  bottom: -12px;
  top: inherit;
}

.process-two ul li:nth-child(2) .process-two__content {
  margin-top: 0;
  margin-bottom: -1px;
}

.process-two ul li:nth-child(2) .process-two__shape-3 {
  position: absolute;
  right: -59px;
  bottom: -27px;
  top: inherit;
  transform: rotate(9deg);
}

.process-two ul li:nth-child(2) .process-two__shape-3:before {
  bottom: -10px;
  top: inherit;
}

.process-two ul li:nth-child(4) .process-two__shape-1 {
  margin-top: 0;
  margin-bottom: 15px;
}

.process-two ul li:nth-child(4) .process-two__shape-2 {
  bottom: -28px;
  top: inherit;
  left: -58px;
  transform: rotate(-9deg);
}

.process-two ul li:nth-child(4) .process-two__shape-2:before {
  bottom: -12px;
  top: inherit;
}

.process-two ul li:nth-child(4) .process-two__content {
  margin-top: 0;
  margin-bottom: -1px;
}

.process-two ul li:nth-child(4) .process-two__shape-3 {
  position: absolute;
  right: -59px;
  bottom: -27px;
  top: inherit;
  transform: rotate(9deg);
}

.process-two ul li:nth-child(4) .process-two__shape-3:before {
  bottom: -10px;
  top: inherit;
}

.process-two__single-shape-1 {
  position: absolute;
  top: 120px;
  right: -45px;
}

.process-two__single-shape-1 img {
  width: auto;
}

.process-two__single-shape-2 {
  position: absolute;
  top: 120px;
  right: -45px;
}

.process-two__single-shape-2 img {
  width: auto;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  padding: 105px 0px 120px;
  background-color: var(--builza-black);
  overflow: hidden;
  z-index: 1;
}

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

.cta-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.cta-one__title {
  font-size: 55px;
  line-height: 1.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--builza-white);
}

.cta-one__text {
  color: rgba(var(--builza-white-rgb), .80);
  margin-top: 20px;
}

.cta-one__btns-boxes {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
  margin-top: 40px;
}

.cta-one__btns-boxes .thm-btn:after,
.cta-one__btns-boxes .thm-btn:before {
  background-color: var(--builza-white);
}

.cta-one__btns-boxes .thm-btn:hover {
  color: var(--builza-base);
}



/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
  position: relative;
  display: block;
  padding: 110px 0px 90px;
  overflow: hidden;
  z-index: 1;
}

.project-three__inner {
  position: relative;
  display: block;
}

.project-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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

.project-three__img {
  position: relative;
  display: block;
  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;
}

.project-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--builza-black-rgb), .50);
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.project-three__img img {
  width: 100%;
  border-radius: 20px;
}

.project-three__content {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--builza-base);
  border-radius: var(--builza-bdr-radius);
  padding: 100px 48px 40px;
  text-align: right;
  -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: 5;
}

.project-three__content-box {
  position: relative;
  display: block;
}

.project-three__content-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 34px;
  transition: all 500ms ease;
}

.project-three__content-box h3 a {
  color: var(--builza-white);
}

.project-three__content-box h3 a:hover {
  color: var(--builza-black);
}

.project-three__content-box p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--builza-white);
  text-transform: uppercase;
  font-family: var(--builza-font-two);
  margin-bottom: 5px;
  margin-top: 30px;
}

.project-three__read-more {
  position: relative;
  display: inline-block;
}

.project-three__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--builza-font-two);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--builza-white);
}

.project-three__read-more a:hover {
  color: var(--builza-black);
}

.project-three__icon-box {
  position: relative;
  display: inline-block;
}

.project-three__icon-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--builza-black);
  width: 90px;
  height: 90px;
  background-color: rgba(var(--builza-white-rgb), 1);
  border: 6px solid rgba(var(--builza-base-rgb), .20);
  border-radius: 50%;
  font-size: 35px;
}

.project-three__icon-box a:hover {
  background-color: var(--builza-black);
  color: var(--builza-white);
}

.project-three__single-shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.project-three__single-shape-1 img {
  width: auto;
}

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

.contact-two__big-title {
  position: absolute;
  top: 310px;
  right: -14px;
  transform: rotate(90deg);
}

.contact-two__big-title h2 {
  line-height: 1.5em;
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(var(--builza-white-rgb), 0.05);
}

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

.contact-two__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(14, 18, 29);
  background: linear-gradient(90deg, rgba(14, 18, 29, 0) 0%, rgba(14, 18, 29, 0) 13%, rgba(14, 18, 29, 0.2553396358543417) 22%, rgba(14, 18, 29, 0.8743872549019608) 45%, rgba(14, 18, 29, 1) 74%, rgba(14, 18, 29, 1) 100%);
  content: "";
  z-index: -1;
}

.contact-two__inner {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  float: right;
}

.contact-two__form-box {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  padding: 80px 60px 59px;
  padding-left: 160px;
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.contact-two__form-box-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .60;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--builza-bdr-radius);
  z-index: -1;
}

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

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

.contact-two__input-box input[type="text"],
.contact-two__input-box input[type="number"],
.contact-two__input-box input[type="email"] {
  height: 58px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--builza-black-rgb), 0.45);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: rgba(var(--builza-black-rgb), .60);
  display: block;
  font-weight: 400;
  border-radius: 10px;
  line-height: 58px;
}

.contact-two__input-box .select-box .nice-select {
  background-color: transparent;
  border: 1px solid rgba(var(--builza-black-rgb), 0.45);
  border-radius: 10px;
  color: rgba(var(--builza-black-rgb), .60);
  font-size: 16px;
  font-weight: 400;
  height: 58px;
  line-height: 58px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 0px;
}

.contact-two__input-box .select-box .nice-select:after {
  position: absolute;
  top: 47%;
  right: 30px;
  border-bottom: 1px solid rgba(var(--builza-black-rgb), 1.0);
  border-right: 1px solid rgba(var(--builza-black-rgb), 1.0);
}

.contact-two__btn-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-two__btn-box .thm-btn {
  border: none;
  padding: 7px 30px 7px;
  padding-right: 7px;
}

.contact-two__contact-info-box {
  position: absolute;
  top: 45px;
  left: -200px;
  max-width: 300px;
  background-color: var(--builza-base);
  border-radius: var(--builza-bdr-radius);
  padding: 30px 30px 30px;
  z-index: 2;
}

.contact-two__contact-info-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--builza-white);
  margin-bottom: 20px;
  font-style: italic;
}

.contact-two__contact-info-list {
  position: relative;
  display: block;
}

.contact-two__contact-info-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--builza-black);
  border-radius: 10px;
  padding: 3px 10px 12px;
  padding-right: 12px;
  border-top-left-radius: 0;
  z-index: 1;
}

.contact-two__contact-info-list-shape-1 {
  position: absolute;
  top: -5px;
  left: -5px;
  right: 5px;
  bottom: 5px;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  border-top-left-radius: 0;
  z-index: -1;
}

.contact-two__contact-info-list li+li {
  margin-top: 20px;
}

.contact-two__contact-info-list li .icon {
  position: relative;
  display: inline-block;
}

.contact-two__contact-info-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--builza-base);
}

.contact-two__contact-info-list li p {
  font-weight: 500;
  color: var(--builza-gray);
}

.contact-two__contact-info-list li p a {
  color: var(--builza-gray);
}

.contact-two__contact-info-list li p a:hover {
  color: var(--builza-base);
}

.contact-two__social-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--builza-white-rgb), .30);
  padding-top: 20px;
}

.contact-two__social-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--builza-black);
  border-radius: 50%;
  font-size: 16px;
  color: var(--builza-white);
}

.contact-two__social-box a:hover {
  background-color: var(--builza-white);
  color: var(--builza-base);
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-three__inner {
  position: relative;
  display: block;
}

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

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

.blog-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--builza-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-three__img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.blog-three__date {
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 69px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--builza-base);
  border-radius: var(--builza-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;
  text-align: center;
}

.blog-three__date p {
  font-size: 22px;
  font-weight: 700;
  color: var(--builza-white);
  top: 7px;
  position: relative;
}

.blog-three__date p span {
  font-size: 18px;
  top: -2px;
  position: relative;
}

.blog-three__content {
  position: relative;
  display: block;
  border: 1px solid var(--builza-bdr-color);
  border-top: 0;
  border-bottom-left-radius: var(--builza-bdr-radius);
  border-bottom-right-radius: var(--builza-bdr-radius);
  padding: 30px 30px 30px;
  margin-top: -8px;
}

.blog-three__meta-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-three__meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-three__meta-box li .icon {
  position: relative;
  display: inline-block;
}

.blog-three__meta-box li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--builza-base);
}

.blog-three__meta-box li p {
  color: var(--builza-gray);
}

.blog-three__meta-box li p a {
  color: var(--builza-gray);
}

.blog-three__meta-box li p a:hover {
  color: var(--builza-base);
}

.blog-three__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 16px 0 12px;
}

.blog-three__title a {
  color: var(--builza-black);
}

.blog-three__title a:hover {
  color: var(--builza-base);
}

.blog-three__text {
  margin-bottom: 22px;
  border-bottom: 1px solid var(--builza-bdr-color);
  padding-bottom: 20px;
}

.blog-three__read-more {
  position: relative;
  display: inline-block;
}

.blog-three__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--builza-black);
}

.blog-three__read-more a:hover {
  color: var(--builza-base);
}

.blog-three__read-more a span {
  color: var(--builza-base);
  font-size: 14px;
}

.blog-three__user {
  position: absolute;
  bottom: 17px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-three__user span {
  font-size: 16px;
  font-weight: 700;
  color: var(--builza-black);
  font-family: var(--builza-font-two);
}

.blog-three__user-img {
  position: relative;
  display: block;
  max-width: 50px;
  width: 100%;
  border-radius: 50%;
}

.blog-three__user-img img {
  width: 100%;
  border-radius: 50%;
}

/*==============================================
    Site Footer
===============================================*/
.site-footer-three {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer-three__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .03;
  mix-blend-mode: luminosity;
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.site-footer-three__top {
  position: relative;
  display: block;
}

.footer-widget-three__newsletter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 110px 0px 73px;
}

.footer-widget-three__newsletter-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--builza-white);
}

.footer-widget-three__newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 585px;
  width: 100%;
}

.footer-widget-three__newsletter-form-input-box {
  position: relative;
  display: block;
  max-width: 389px;
  width: 100%;
}

.footer-widget-three__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 56px;
  width: 100%;
  background-color: rgba(var(--builza-white-rgb), .10);
  outline: none;
  border: none;
  color: rgba(var(--builza-white-rgb), .70);
  font-weight: 400;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 3px;
}

.footer-widget-three__newsletter-form .thm-btn {
  border: none;
}

.footer-widget-three__newsletter-form .thm-btn::before,
.footer-widget-three__newsletter-form .thm-btn::after {
  background-color: var(--builza-white);
}

.footer-widget-three__newsletter-form .thm-btn:hover {
  color: var(--builza-base);
}

.footer-widget-three__newsletter-form .thm-btn:hover>span {
  background-color: var(--builza-base);
  color: var(--builza-white);
}

.site-footer-three__middle {
  position: relative;
  display: block;
  padding: 0 0 80px;
}

.footer-widget-three__about {
  position: relative;
  display: block;
  margin-top: 5px;
}

.footer-widget-three__logo {
  position: relative;
  display: block;
}

.footer-widget-three__about-text {
  color: rgba(var(--builza-white-rgb), .70);
  margin-top: 20px;
  margin-bottom: 22px;
}

.site-footer-three__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  border-top: 1px dashed rgba(var(--builza-white-rgb), .20);
  padding-top: 20px;
}

.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(--builza-white);
  background-color: rgba(var(--builza-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(--builza-white);
  background-color: var(--builza-base);
}

.site-footer-three__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--builza-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;
}

.footer-widget-three__title-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.footer-widget-three__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--builza-white);
  text-transform: capitalize;
}

.footer-widget-three__right-bottom {
  position: relative;
  display: block;
  margin-left: 75px;
}

.footer-widget-three__usefull-link {
  position: relative;
  display: block;
  margin-left: 80px;
}

.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(--builza-white-rgb), .70);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__link li a:hover {
  color: var(--builza-base);
}

.footer-widget-three__link-2 {
  margin-left: 55px;
}

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

.footer-widget-three__contact-box {
  position: relative;
  display: block;
  margin-left: 70px;
}

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

.footer-widget-three__contact li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--builza-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-three__contact li:hover .icon span {
  color: var(--builza-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(--builza-white);
}

.footer-widget-three__contact li .content p {
  color: rgba(var(--builza-white-rgb), .70)
}

.footer-widget-three__contact li .content p a {
  color: rgba(var(--builza-white-rgb), .70)
}

.footer-widget-three__contact li .content p a:hover {
  color: var(--builza-base);
}

.site-footer-three__bottom {
  position: relative;
  display: block;
  border-top: 1px dashed rgba(var(--builza-white-rgb), .20);
}

.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(--builza-white-rgb), .70);
}

.site-footer-three__bottom-text a {
  color: var(--builza-base);
  font-weight: 600;
}

.site-footer-three__bottom-text a:hover {
  color: var(--builza-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(--builza-white-rgb), .70);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-three__bottom-menu li a:hover {
  color: var(--builza-base);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.page-header{
    position: relative;
    overflow: hidden;
}

.page-header__bg{
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/download.svg") no-repeat center;
  background-size: cover;
  filter: brightness(0) saturate(100%);
  opacity: 0.55;
  transform: rotate(180deg);

}

.page-header__bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,18,29,0.95) 0%, rgba(14,18,29,0.8) 60%, rgba(14,18,29,0) 100%);
}

@media (max-width:768px){
  .page-header__bg{
    background: url("../images/download.svg") no-repeat left !important;
  }
  .page-header{
     min-height: 180px;
  }
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 100px 0 100px;
  text-align: center;
  z-index: 1;
}

.page-header__inner h3 {
  font-size: 40px;
  color: var(--builza-white);
  line-height: 1em;
  font-weight: 700;
  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(--builza-base);
  font-family: var(--builza-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(--builza-white);
  font-family: var(--builza-font-two);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--builza-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 16px;
  color: var(--builza-base);
  font-weight: 700;
  position: relative;
  top: 1px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.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(--builza-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(--builza-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(--builza-base);
  text-align: center;
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.blog-details__date p {
  font-size: 30px;
  font-weight: 700;
  color: var(--builza-white);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.blog-details__date p span {
  font-family: var(--builza-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--builza-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;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 10px 15px 10px;
  z-index: 1;
}

.blog-details__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
  color: var(--builza-gray);
}

.blog-details__user span {
  font-size: 18px;
  color: var(--builza-base);
  font-weight: 700;
  position: relative;
  top: -2px;
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details__meta li {
  position: relative;
  display: block;
}

.blog-details__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--builza-gray);
}

.blog-details__meta li a span {
  color: var(--builza-base);
}

.blog-details__meta li a:hover {
  color: var(--builza-base);
}

.blog-details__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
  margin-top: 30px;
  margin-bottom: 19px;
}

.blog-details__text-2 {
  margin-top: 21px;
  margin-bottom: 40px;
}

.blog-details__author-box {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 40px 40px 37px;
}

.blog-details__author-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--builza-base);
  margin-bottom: 20px;
}

.blog-details__author-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: right;
  color: var(--builza-black);
  font-family: var(--builza-font-two);
}

.blog-details__author-name span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--builza-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;
  margin-bottom: 10px;
}

.blog-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-box-img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.blog-details__title-3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  text-transform: capitalize;
}

.blog-details__text-4 {
  margin: 13px 0 25px;
}

.blog-details__points-box {
  position: relative;
  display: block;
}

.blog-details__points-box li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details__points-box li .icon {
  position: relative;
  display: inline-block;
}

.blog-details__points-box li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--builza-base);
}

.blog-details__points-box li+li {
  margin-top: 8px;
}

.blog-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 30px 40px 30px;
  margin-top: 45px;
  margin-bottom: 60px;
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__tag-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.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(--builza-white);
  color: var(--builza-gray);
  padding: 7px 15px 7px;
  border-radius: 5px;
  display: inline-block;
}

.blog-details__tag-list li a:hover {
  background-color: var(--builza-base);
  color: var(--builza-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: 32px;
}

.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: 35px;
  height: 35px;
  font-size: 14px;
  color: var(--builza-black);
  background-color: var(--builza-white);
  border-radius: 50%;
}

.blog-details__share a:hover {
  background-color: var(--builza-base);
  color: var(--builza-white);
}

.comment-one {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 40px 40px 40px;
}

.comment-one__single {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--builza-white);
  border-radius: var(--builza-bdr-radius);
  padding: 29px 29px 30px;
}

.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 span {
  color: var(--builza-gray);
}

.comment-one__content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 3px;
}

.comment-one__content p {
  margin-top: 14px;
}

.comment-one__btn-box {
  position: absolute;
  top: 28px;
  right: 0px;
}

.comment-one__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
  color: var(--builza-black);
}

.comment-one__btn span {
  font-size: 14px;
  color: var(--builza-base);
}

.comment-one__btn:hover {
  color: var(--builza-base);
}

.comment-form {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 40px 40px 40px;
  margin-top: 60px;
}

.comment-form__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.comment-form__text {
  margin-top: 13px;
  margin-bottom: 33px;
}

.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%;
  border-radius: var(--builza-bdr-radius);
  background-color: var(--builza-white);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--builza-gray);
  display: block;
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--builza-gray);
  height: 140px;
  width: 100%;
  border-radius: var(--builza-bdr-radius);
  background-color: var(--builza-white);
  border: none;
  padding: 20px 20px 30px;
  outline: none;
  font-weight: 400;
}

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

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 31px;
}

.sidebar__title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--builza-black);
  font-weight: 700;
  line-height: 22px;
}

.sidebar__title-shape {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--builza-base);
  background-color: transparent;
  border-radius: 3px;
  transform: rotate(45deg);
}

.sidebar__title-shape-2 {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--builza-base);
  border: 2px solid var(--builza-primary);
  border-radius: 3px;
  transform: rotate(45deg);
  margin-left: -13px;
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  padding: 30px 30px 30px;
  border-radius: var(--builza-bdr-radius);
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--builza-white);
  color: var(--builza-gray);
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: var(--builza-bdr-radius);
  border: none;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--builza-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--builza-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--builza-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--builza-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--builza-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--builza-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--builza-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--builza-base);
  color: var(--builza-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: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--builza-black);
  color: var(--builza-white);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 42px 30px 50px;
}

.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: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding: 13px 25px 14px;
  border: 1px solid rgba(var(--builza-bdr-color-rgb), .60);
  color: var(--builza-black);
  background-color: var(--builza-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 5px;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category-list li a span {
  font-weight: 700;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--builza-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(--builza-white);
}

.sidebar__category-list li.active a {
  background-color: var(--builza-base);
  color: var(--builza-white);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: var(--builza-primary);
  border-radius: var(--builza-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;
  overflow: hidden;
  border-radius: var(--builza-bdr-radius);
}

.sidebar-post__img::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--builza-base-rgb), .80);
  border-radius: var(--builza-bdr-radius);
  -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%;
  border-radius: var(--builza-bdr-radius);
  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;
}

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

.sidebar__post-content-box h3 a {
  color: var(--builza-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
  color: var(--builza-base);
}

.sidebar__contact {
  position: relative;
  display: block;
  padding: 40px 30px 40px;
  background-color: var(--builza-black);
  border-radius: var(--builza-bdr-radius);
  text-align: center;
  z-index: 1;
}

.sidebar__contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .20;
  mix-blend-mode: luminosity;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--builza-bdr-radius);
  z-index: -1;
}

.sidebar__contact-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--builza-white);
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 24px;
}

.sidebar__contact-icon span {
  position: relative;
  display: inline-block;
  color: var(--builza-base);
  font-size: 25px;
}

.sidebar__contact-text {
  position: relative;
  display: block;
}

.sidebar__contact-text p {
  color: var(--builza-white);
}

.sidebar__contact-text h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-top: 5px;
}

.sidebar__contact-text h3 a {
  color: var(--builza-white);
}

.sidebar__contact-text h3 a:hover {
  color: var(--builza-base);
}

.sidebar__contact-btn {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 41px;
}

.sidebar__contact-btn .thm-btn:hover {
  color: var(--builza-base);
}

.sidebar__contact-btn .thm-btn::after,
.sidebar__contact-btn .thm-btn::before {
  background-color: var(--builza-white);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 41px 30px 40px;
  overflow: hidden;
}

.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(--builza-gray);
  font-size: 15px;
  font-weight: 400;
  background: var(--builza-white);
  padding: 6px 16px;
  border-radius: 5px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: var(--builza-white);
  background: var(--builza-base);
}

/*--------------------------------------------------------------
# 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 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 List
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-list__left {
  position: relative;
  display: block;
}

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

.blog-list__img-box-1 {
  position: relative;
  display: block;
}

.blog-list__img {
  position: relative;
  display: block;
  border-radius: var(--builza-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-list__img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.blog-list__date {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 75px;
  background-color: var(--builza-base);
  text-align: center;
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.blog-list__date p {
  font-size: 30px;
  font-weight: 700;
  color: var(--builza-white);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.blog-list__date p span {
  font-family: var(--builza-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--builza-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;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 10px 15px 10px;
  z-index: 1;
}

.blog-list__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
  color: var(--builza-gray);
}

.blog-list__user span {
  font-size: 18px;
  color: var(--builza-base);
  font-weight: 700;
  position: relative;
  top: -2px;
}

.blog-list__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-list__meta li {
  position: relative;
  display: block;
}

.blog-list__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--builza-gray);
}

.blog-list__meta li a span {
  color: var(--builza-base);
}

.blog-list__meta li a:hover {
  color: var(--builza-base);
}

.blog-list__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.blog-list__title a {
  color: var(--builza-black);
}

.blog-list__title a:hover {
  color: var(--builza-base);
}

.blog-list__read-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--builza-font-two);
  color: var(--builza-black);
  margin-top: 27px;
}

.blog-list__read-more:hover {
  color: var(--builza-base);
}

.blog-list__read-more span {
  font-size: 14px;
  font-weight: 700;
  color: var(--builza-base);
  position: relative;
  top: -2px;
}

.blog-list__read-more::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--builza-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__read-more:hover::before {
  background-color: var(--builza-base);
}

.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(--builza-black);
  font-weight: 500;
  font-size: 18px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--builza-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(--builza-base);
  color: var(--builza-black);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-page .blog-list__pagination {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
  /* position: relative; */
  /* display: block; */
  /* padding: 120px 0 90px; */
  z-index: 1;
}

.contact-info__single {
  position: relative;
  display: block;
  border-radius: var(--builza-bdr-radius);
  background-color: var(--builza-primary);
  text-align: center;
  padding: 20px 20px 20px;
  margin-bottom: 50px;
  /*! height: 155px; */
}

.contact-info__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--builza-base);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
  top: -35px;
  /*! left: 50%; */
  /*! max-width: 100%; */
}

.contact-info__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--builza-black);
  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;
}

.contact-info__single:hover .contact-info__icon:before {
  transform: scaleX(1);
}

.contact-info__icon span {
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: var(--builza-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
  transform: scale(0.9);
  color: var(--builza-white);
}

.contact-info__single p {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.contact-info__single h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  color: var(--builza-black);
}

.contact-info__single h3 a {
  color: var(--builza-black);
}

.contact-info__single h3 a:hover {
  color: var(--builza-base)
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 100px 0 100px;
  z-index: 1;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: #323232;
  border-radius: var(--builza-bdr-radius);
  padding: 60px 0 10px;
}

.contact-page__left {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 10px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 430px;
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.contact-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 40px;
}

.contact-page__form-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--builza-white);
  margin-bottom: 26px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="tel"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="number"] {
  height: 45px;
  width: 100%;
  background-color: rgba(var(--builza-white-rgb), 0.03);
  border: 1px solid rgba(var(--builza-white-rgb), .10);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--builza-primary-rgb), .60);
  display: block;
  border-radius: var(--builza-bdr-radius);
}

.contact-page__input-box .select-box {
  width: 100%;
}

.contact-page__input-box .nice-select {
  height: 57px;
  width: 100%;
  background-color: rgba(var(--builza-white-rgb), 0.03);
  border: 1px solid rgba(var(--builza-white-rgb), .10);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--builza-gray);
  display: block;
  font-weight: 400;
  border-radius: 20px;
  line-height: 57px;
  float: none;
}

.contact-page__input-box textarea {
  font-size: 16px;
  color: rgba(var(--builza-primary-rgb), .60);
  height: 120px;
  width: 100%;
  background-color: rgba(var(--builza-white-rgb), 0.03);
  border: 1px solid rgba(var(--builza-white-rgb), .10);
  padding: 15px 20px 30px;
  border-radius: var(--builza-bdr-radius);
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.contact-page__input-box.text-message-box {
  height: 120px;
}


.contact-page__btn-box {
  position: relative;
  display: block;
}

.contact-page__btn-box .thm-btn {
  border: none;
}

.contact-page__btn-box .thm-btn:hover {
  color: var(--builza-base);
}

.contact-page__btn-box .thm-btn::after,
.contact-page__btn-box .thm-btn::before {
  background-color: var(--builza-white);
}

/***
=====================================================
    Error Page
=====================================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 97px 0px 120px;
  z-index: 1;
}

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

.error-page__wrapper {
  position: relative;
  display: block;
}

.error-page__content {
  position: relative;
  display: block;
}

.error-page__content h2 {
  color: transparent;
  -webkit-text-stroke: 4px var(--builza-base);
  font-size: 230px;
  line-height: 0.9em;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-page__content h3 {
  font-size: 50px;
  line-height: 1.1em;
  font-weight: 700;
  margin-bottom: 18px;
}

.error-page__content p {
  font-weight: 500;
  margin: 0px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 25px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type="search"] {
  height: 60px;
  width: 100%;
  outline: none;
  background-color: transparent;
  border: 1px solid var(--builza-bdr-color);
  font-size: 16px;
  color: var(--builza-gray);
  font-weight: 500;
  padding-left: 30px;
  padding-right: 60px;
  border-radius: var(--builza-bdr-radius);
}

.error-page__form button[type="submit"] {
  background-color: var(--builza-base);
  color: var(--builza-white);
  font-size: 17px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 60px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.error-page__form button[type="submit"]:hover {
  background-color: var(--builza-black);
}

.error-page__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Pricing Page
--------------------------------------------------------------*/
.pricing-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  padding: 155px 0 90px;
  z-index: 1;
}

.testimonials-page .row {
  --bs-gutter-x: 60px;
}

.testimonials-page .testimonial-one__single {
  margin-bottom: 55px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-details__left {
  position: relative;
  display: block;
}

.projects-details__img {
  position: relative;
  display: block;
  border-radius: var(--builza-bdr-radius);
}

.projects-details__img-single {
  position: relative;
  display: block;
  border-radius: var(--builza-bdr-radius);
  overflow: hidden;
}

.projects-details__img-single img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.projects-details__img-carousel.owl-theme .owl-nav {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  line-height: 0;
  height: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.projects-details__img-carousel.owl-carousel .owl-nav button.owl-prev,
.projects-details__img-carousel.owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--builza-primary);
  color: var(--builza-base);
  font-size: 18px;
  font-weight: 700;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.projects-details__img-carousel.owl-carousel .owl-nav button.owl-prev::before,
.projects-details__img-carousel.owl-carousel .owl-nav button.owl-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--builza-base);
  transform: scale(0.6);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
}

.projects-details__img-carousel.owl-carousel .owl-nav button.owl-prev:hover::before,
.projects-details__img-carousel.owl-carousel .owl-nav button.owl-next:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.projects-details__img-carousel.owl-carousel .owl-nav button.owl-prev:hover,
.projects-details__img-carousel.owl-carousel .owl-nav button.owl-next:hover {
  border-color: var(--builza-base);
  color: var(--builza-white);
}

.projects-details__img-carousel.owl-carousel .owl-nav button.owl-prev span::before,
.projects-details__img-carousel.owl-carousel .owl-nav button.owl-next span::before {
  font-weight: 700;
  line-height: 53px;
}

.project-details__title-1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-transform: capitalize;
  margin-top: 31px;
  margin-bottom: 19px;
}

.project-details__title-2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  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(--builza-bdr-radius);
}

.project-details__title-3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  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(--builza-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(--builza-base);
}

.project-details__points li p {
  color: var(--builza-black);
}

.project-details__sidebar {
  position: relative;
  display: block;
}

.project-details__information {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 40px 40px 40px;
  margin-bottom: 30px;
}

.project-details__information-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 30px;
}

.project-details__information-list {
  position: relative;
  display: block;
}

.project-details__information-list li {
  position: relative;
  display: block;
  background-color: var(--builza-white);
  border: 1px solid var(--builza-bdr-color);
  border-radius: var(--builza-bdr-radius);
  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(--builza-black);
  margin-bottom: 4px;
}

.project-details__get-started {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
  padding: 40px 40px 40px;
}

.project-details__get-started-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.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: 18px;
  color: var(--builza-base);
}

.project-details__get-started-points li p {
  color: var(--builza-black);
}

.project-details__get-started-points li p a {
  color: var(--builza-black);
}

.project-details__get-started-points li p a:hover {
  color: var(--builza-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(--builza-bdr-color);
  padding: 15px 20px 15px;
  border-radius: var(--builza-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(--builza-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(--builza-base);
  color: var(--builza-white);
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon a:hover {
  background: var(--builza-black);
}

.project-details__previous-next ul li .icon a span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  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(--builza-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(--builza-base);
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.project-page .project-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 114px;
  z-index: 1;
}

.team-details__top {
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--builza-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(--builza-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: 700;
  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(--builza-base);
  font-size: 16px;
  border-radius: var(--builza-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--builza-base);
  z-index: 1;
}

.team-details__social a:hover {
  color: var(--builza-white);
  border: 1px solid var(--builza-base);
}

.team-details__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--builza-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(--builza-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(--builza-black);
}

.team-details__client-address li p span {
  color: var(--builza-black);
}

.team-details__client-address li h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-top: 5px;
  font-family: var(--builza-font);
}

.team-details__client-address li h4 a {
  color: var(--builza-black);
}

.team-details__client-address li h4 a:hover {
  color: var(--builza-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: 600;
  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(--builza-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(--builza-base);
}


.team-details__bottom-right {
  position: relative;
  display: block;
}

.team-details__progress-title-1 {
  font-size: 36px;
  font-weight: 600;
  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(--builza-black);
  margin-bottom: 11px;
}

.team-details__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--builza-primary);
  border-radius: 6px;
}

.team-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--builza-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(--builza-black);
  line-height: 26px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: var(--builza-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(--builza-bdr-color);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--builza-gray);
  display: block;
  border-radius: var(--builza-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(--builza-bdr-color);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--builza-gray);
  font-weight: 400;
  border-radius: var(--builza-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(--builza-gray);
  border-right: 2px solid var(--builza-gray);
  margin-top: 0px;
  z-index: 10;
}

.team-details-contact__input-box textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--builza-bdr-color);
  padding: 15px 30px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--builza-gray);
  position: relative;
  display: block;
  border-radius: var(--builza-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;
}

/***
=============================================
Privacy Policy Page
=============================================
***/
.privacy-policy-page {
  position: relative;
  display: block;
  padding: 112px 0px 112px;
  z-index: 1;
}

.privacy-policy-page__text1 {
  position: relative;
  display: block;
}

.privacy-policy-page__text1 h2 {
  position: relative;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.privacy-policy-page__text1 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--builza-base);
  content: "";
}

.privacy-policy-page__text1 p {
  margin: 0;
}

.privacy-policy-page__list {
  position: relative;
  display: block;
  margin-top: 26px;
}

.privacy-policy-page__list ul {
  position: relative;
  display: block;
}

.privacy-policy-page__list ul li {
  position: relative;
  display: block;
}

.privacy-policy-page__list ul li+li {
  margin-top: 8px;
}

.privacy-policy-page__list ul li p {
  margin: 0;
}

.privacy-policy-page__list ul li p span {
  position: relative;
  display: inline-block;
  color: var(--builza-base);
  font-size: 18px;
  margin-right: 5px;
  font-weight: 700;
  top: 1px;
}

.privacy-policy-page__text2 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.privacy-policy-page__text2 h3 {
  position: relative;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.privacy-policy-page__text2 h3::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--builza-base);
  content: "";
}

.privacy-policy-page__text2 p {
  margin: 0;
}

.privacy-policy-page__text2 .text2 {
  margin-top: 26px;
}

.privacy-policy-page__text3 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.privacy-policy-page__text3 h4 {
  position: relative;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.privacy-policy-page__text3 h4::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--builza-base);
  content: "";
}

.privacy-policy-page__text3 p {
  margin: 0;
}

.privacy-policy-page__text4 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.privacy-policy-page__text4 h5 {
  position: relative;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.privacy-policy-page__text4 h5::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--builza-base);
  content: "";
}

.privacy-policy-page__text4 p {
  margin: 0;
}

.privacy-policy-page__text5 {
  position: relative;
  display: block;
  margin-top: 31px;
}

.privacy-policy-page__text5 p {
  margin: 0;
}

/***
=============================================
History Page
=============================================
***/
.history-page {
  position: relative;
  display: block;
  padding: 120px 0px 42px;
  z-index: 1;
}

.history-page__line {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 119px;
  width: 1px;
  background: var(--builza-bdr-color);
}

.history-page__single {
  position: relative;
  display: block;
  margin-bottom: 70px;
}

.history-page__single .year-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--builza-base);
  border-radius: 50%;
  color: var(--builza-white);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}

.history-page__single .year-box::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px solid var(--builza-base);
  border-radius: 50%;
  content: "";
}

.history-page__single-img {
  position: relative;
  display: block;
  padding-right: 85px;
}

.history-page__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.history-page__single-img-inner img {
  width: 100%;
}

.history-page__single-content {
  position: relative;
  display: block;
  padding-left: 85px;
  margin-top: -8px;
}

.history-page__single.style2 .history-page__single-content {
  padding-left: 0px;
  padding-right: 85px;
  text-align: right;
}

.history-page__single.style2 .history-page__single-img {
  padding-right: 0px;
  padding-left: 85px;
}

.history-page__single-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.history-page__single-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-page__inner {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# 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;
  border-radius: var(--builza-bdr-radius);
}

.service-details__img img {
  width: 100%;
  border-radius: var(--builza-bdr-radius);
}

.service-details__title-1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.service-details__text-1 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--builza-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(--builza-base);
}

.service-details__points-list li p {
  color: var(--builza-black);
}

.service-details__img-box {
  position: relative;
  display: block;
  margin-top: 40px;
  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(--builza-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);
  transition: all 0.5s ease;
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.service-details__img-box-img:hover:before {
  opacity: 0.2;
}

.service-details__img-box-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
  border-radius: var(--builza-bdr-radius);
}

.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(--builza-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(--builza-primary);
  border-radius: var(--builza-bdr-radius);
}

.service-details__services-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  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(--builza-white);
  padding: 13px 20px 14px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--builza-gray);
  overflow: hidden;
  border-radius: var(--builza-bdr-radius);
  z-index: 1;
}

.service-details__services-list li:hover a {
  color: var(--builza-white);
}

.service-details__services-list li.active a {
  color: var(--builza-white);
}

.service-details__services-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--builza-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(--builza-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 14px;
}

.service-details__services-list li:hover a span {
  color: var(--builza-white);
}

.service-details__services-list li.active a span {
  color: var(--builza-white);
}

.service-details__sidebar-contact {
  position: relative;
  display: block;
  margin: 30px 0 30px;
  padding: 50px 40px 50px;
  background-color: var(--builza-black);
  border-radius: var(--builza-bdr-radius);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.service-details__sidebar-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .15;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.service-details__sidebar-contact-content {
  position: relative;
  display: block;
}

.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(--builza-base);
  border-radius: 50%;
  overflow: hidden;
}

.service-details__sidebar-contact-content .icon span {
  position: relative;
  display: inline-block;
  color: var(--builza-white);
  font-size: 20px;
  line-height: 20px;
}

.service-details__sidebar-contact-content h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin: 15px 0 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-details__sidebar-contact-content h3 a {
  color: var(--builza-white);
}

.service-details__sidebar-contact-content h3 a:hover {
  color: var(--builza-base);
}

.service-details__sidebar-contact-content p {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--builza-base);
}

.service-details__sidebar-contact-btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.service-details__sidebar-contact-btn-box .thm-btn:hover {
  color: var(--builza-base);
}

.service-details__sidebar-contact-btn-box .thm-btn::after,
.service-details__sidebar-contact-btn-box .thm-btn::before {
  background-color: var(--builza-white);
}

.service-details__sidebar-download-box {
  position: relative;
  display: block;
  padding: 31px 35px 40px;
  background-color: var(--builza-primary);
  border-radius: var(--builza-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(--builza-black-rgb), .10);
  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(--builza-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(--builza-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(--builza-base);
}

.service-details__sidebar-single-download ul li .content-box .text-box p {
  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(--builza-gray);
}

.service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
  color: var(--builza-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(--builza-base);
  border-radius: 2px;
  overflow: hidden;
}

.service-details__sidebar-single-download ul li .btn-box a:hover {
  background: var(--builza-black);
}

.service-details__sidebar-single-download ul li .btn-box a span {
  position: relative;
  display: inline-block;
  color: var(--builza-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(--builza-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  padding: 30px 30px 30px;
  border-radius: var(--builza-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(--builza-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--builza-gray);
  font-family: var(--builza-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(--builza-base);
  color: var(--builza-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(--builza-black);
  color: var(--builza-white);
}

.product__price-ranger {
  position: relative;
  padding: 27px 30px 30px;
  margin: 0;
  background-color: var(--builza-primary);
  border-radius: var(--builza-bdr-radius);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--builza-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--builza-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(--builza-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(--builza-black);
  float: right;
  text-align: center;
  border: none;
  color: var(--builza-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(--builza-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(--builza-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}


.shop-category {
  position: relative;
  display: block;
  background-color: var(--builza-primary);
  padding: 29px 30px 30px;
  border-radius: var(--builza-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(--builza-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(--builza-gray);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--builza-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--builza-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(--builza-base);
  font-family: 'icomoon' !important;
  content: "\e908";
  opacity: 1;
  font-size: 12px;
  color: var(--builza-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(--builza-primary);
  padding: 25px 30px 30px;
  border-radius: var(--builza-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(--builza-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--builza-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(--builza-white);
  background: var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-primary);
  padding: 29px 30px 27px;
  border-radius: var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--builza-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(--builza-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(--builza-primary);
  color: var(--builza-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: var(--builza-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(--builza-primary);
  padding: 15px 15px 15px;
  border-radius: var(--builza-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(--builza-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(--builza-base);
}

.product__all-tab-button ul li+li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--builza-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(--builza-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(--builza-black-rgb), .10);
  background-color: var(--builza-white);
  padding: 0 0 30px;
  border-radius: var(--builza-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(--builza-bdr-radius);
  border-bottom: 1px solid rgba(var(--builza-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(--builza-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--builza-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(--builza-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--builza-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--builza-white);
  background-color: var(--builza-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(--builza-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--builza-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--builza-gray);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--builza-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(--builza-primary);
  padding: 3.5px 5px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  color: var(--builza-base);
  font-size: 14px;
  margin-right: 5px;
}

.single-product-style1__review p {
  color: var(--builza-black);
  font-weight: 500;
}


.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--builza-black-rgb), .10);
  background-color: var(--builza-white);
  border-radius: var(--builza-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(--builza-bdr-radius);
  border-right: 1px solid rgba(var(--builza-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(--builza-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(--builza-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--builza-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--builza-gray);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--builza-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(--builza-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--builza-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--builza-white);
  background-color: var(--builza-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(--builza-gray-rgb), .50);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--builza-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--builza-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(--builza-white);
  background: var(--builza-base);
  border-color: var(--builza-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: rgba(var(--builza-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--builza-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-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(--builza-black);
  background-color: var(--builza-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(--builza-white);
  background-color: var(--builza-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 0 15px 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--builza-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 5px;
  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(--builza-black-rgb), .10);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--builza-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(--builza-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 27px;
  margin: 0;
  margin-bottom: 20px;
}

.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: 10px;
}

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

.size-list{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.size-list li{
position:relative;
/*! width:45px; */
height:35px;
border:1px solid var(--builza-gray);
border-radius:5px;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
cursor:pointer;
transition:all .2s;
padding: 10px;
}

.size-list li span{
position:relative;
z-index:2;
}

.size-list li.active{
background:var(--builza-base);
color:#fff;
border-color:var(--builza-base);
font-weight:500;
}

.size-list li:hover{
background:var(--builza-base);
color:#fff;
border-color:var(--builza-base);
}

.size-list .size-full{
width:auto;
padding:0 15px;
}


.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(--builza-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(--builza-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--builza-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--builza-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--builza-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--builza-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(--builza-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(--builza-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(--builza-white);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--builza-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(--builza-white);
  background-color: var(--builza-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(--builza-black);
  background-color: var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--builza-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(--builza-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(--builza-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--builza-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--builza-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(--builza-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(--builza-gray);
  height: 160px;
  width: 100%;
  background-color: var(--builza-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--builza-black-rgb), .10);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--builza-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(--builza-black-rgb), .10);
  background-color: var(--builza-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--builza-gray);
  display: block;
  font-weight: 500;
  border-radius: var(--builza-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(--builza-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(--builza-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(--builza-black-rgb), .10);
}

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

.cart-table h3 {
  color: var(--builza-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cart-table h3 a {
  color: var(--builza-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--builza-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(--builza-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--builza-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--builza-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(--builza-black-rgb), .10);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--builza-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(--builza-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(--builza-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: var(--builza-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(--builza-primary);
  color: var(--builza-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(--builza-primary);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--builza-gray);
  font-family: var(--builza-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(--builza-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--builza-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(--builza-primary);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--builza-gray);
  font-family: var(--builza-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(--builza-gray);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li+li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--builza-black);
  font-size: 18px;
  margin-right: 60px;
  font-weight: 700;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--builza-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(--builza-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(--builza-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(--builza-black-rgb), .10);
  background-color: var(--builza-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--builza-gray);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--builza-gray);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid rgba(var(--builza-black-rgb), .10);
  background-color: var(--builza-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(--builza-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(--builza-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--builza-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(--builza-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(--builza-white);
  border-right: 2px solid var(--builza-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(--builza-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(--builza-black-rgb), .10);
  background-color: var(--builza-white);
  border-radius: 10px;
  color: var(--builza-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(--builza-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(--builza-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--builza-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(--builza-black-rgb), .10);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
  border-bottom: 1px solid rgba(var(--builza-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(--builza-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(--builza-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(--builza-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(--builza-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(--builza-white);
  border: 2px solid rgba(var(--builza-black-rgb), .10);
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 10px;
  color: var(--builza-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(--builza-base);
  border-color: var(--builza-base);
  content: '\f00c';
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--builza-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(--builza-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(--builza-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--builza-font);
}

.sidebar-order-summary__checked label a {
  color: var(--builza-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(--builza-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(--builza-white);
  border-right: 2px solid var(--builza-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(--builza-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(--builza-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(--builza-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(var(--builza-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(--builza-black-rgb), .10);
}

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

.wishlist-table h3 {
  color: var(--builza-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--builza-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--builza-base);
}


.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--builza-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(--builza-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"],
.sign-up-one__form form input[type="password"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--builza-black-rgb), .10);
  background-color: var(--builza-primary);
  width: 100%;
  height: 60px;
  color: var(--builza-gray);
  font-size: 16px;
  font-family: var(--builza-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,
.sign-up-one__form form input[type="password"]:focus {
  border-color: var(--builza-base);
  background-color: var(--builza-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--builza-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--builza-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--builza-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--builza-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--builza-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--builza-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--builza-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--builza-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(--builza-gray);
  background-color: var(--builza-white);
  color: var(--builza-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--builza-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(--builza-base);
  background-color: var(--builza-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(--builza-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--builza-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(--builza-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"],
.login-one__form form input[type="password"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--builza-black-rgb), .10);
  background-color: var(--builza-primary);
  width: 100%;
  height: 60px;
  color: var(--builza-gray);
  font-size: 16px;
  font-family: var(--builza-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,
.login-one__form form input[type="password"]:focus {
  border-color: var(--builza-base);
  background-color: var(--builza-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--builza-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--builza-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--builza-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--builza-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--builza-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--builza-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--builza-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--builza-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(--builza-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--builza-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(--builza-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(--builza-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(--builza-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--builza-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--builza-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--builza-black);
}

.login-one__form form .create-account p a {
  color: var(--builza-base);
  font-weight: 500;
}

/*--------------------------------------------------------------
# About Page Blog
--------------------------------------------------------------*/
.about-page-blog {
  padding: 120px 0 120px;
}



/*--------------------------------------------------------------
# End All Css
--------------------------------------------------------------*/







 /* Custom CTA Section */
.custom-cta{
  padding:80px 0;
  background:#f7f7f7;
  position:relative;
  overflow:hidden;
}

.custom-cta__inner{
  max-width:800px;
  margin:auto;
  position:relative;
  z-index:2;
}

.custom-cta h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:15px;
}

.custom-cta p{
  font-size:16px;
  margin-bottom:30px;
  line-height:1.7;
}

.cta-svg{
  position: absolute;
  right: 0;
  top: -10px;
  width: 100%;
  height: 55vh;
  background: url("../images/download.svg") no-repeat center;
  background-size: auto;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(63%) sepia(33%) saturate(520%) hue-rotate(10deg);
  opacity: 0.55;
}










.applications-one{
padding:80px 0;
background:#f7f7f7;
}

.applications-one__single{
background:#fff;
padding:30px;
text-align:center;
border-radius:6px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
margin-bottom:30px;
transition:0.3s;
}

.applications-one__single:hover{
transform:translateY(-5px);
}

.applications-one__icon{
font-size:40px;
color:#c9a227;
margin-bottom:15px;
}

.applications-one__single h4{
font-size:20px;
margin-bottom:10px;
}
.applications-one__icon-box{
width:120px;
height:120px;
margin:30px auto 15px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,102,0,.08);
font-size:40px;
color:var(--builza-base);
}

.applications-one .team-one__content{
text-align:center;
padding-bottom:25px;
}    
.applications-one{
padding:120px 0 100px;
background:#f8f8f8;
}

.applications-one__single{
position:relative;
background:#f3e2a6;
border:2px solid #d8b12c;
border-radius:10px;
padding:40px 25px 35px;
text-align:center;
transition:all .4s ease;
height:100%;
}

.applications-one__single:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,.15);
background:#323232;
}
.applications-one__single:hover h4, .applications-one__single:hover p{
  color: #fff;
}
