/*--------------------------------------------------------------
  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 {
  --trnspot-font: "Roboto", sans-serif;
  --trnspot-font-two: "Teko", sans-serif;

  /* Primary Brand Color */
  --trnspot-base: #0079AF;
  --trnspot-base-rgb: 0, 121, 175;

  /* Secondary Brand Color */
  --trnspot-secondary: #00498F;
  --trnspot-secondary-rgb: 0, 73, 143;

  /* Dark Heading Color */
  --trnspot-black: #262262;
  --trnspot-black-rgb: 38, 34, 98;

  /* Body Text */
  --trnspot-gray: #6B7280;
  --trnspot-gray-rgb: 107, 114, 128;

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

  /* Section Background */
  --trnspot-gray-bg: #F5F7FA;
  --trnspot-gray-bg-rgb: 245, 247, 250;

  /* Border */
  --trnspot-bdr-color: #D9E3EA;
  --trnspot-bdr-color-rgb: 217, 227, 234;

  /* Accent */
  --trnspot-accent: #14A9E2;
  --trnspot-accent-rgb: 20, 169, 226;

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

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

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

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

body.locked {
  overflow: hidden;
}

a {
  color: var(--trnspot-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(--trnspot-font-two);
  color: var(--trnspot-black);
  margin: 0;
}

p {
  margin: 0;
  color: #000000;
}

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

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

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

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

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

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

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

.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.4;
  z-index: -1;
}

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

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

/***
=============================================
Sec Title Css
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -5px;
  padding-bottom: 52px;
  z-index: 1;
}

.sec-title__tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.sec-title.center .sec-title__tagline {
  justify-content: center;
}

.sec-title__tagline .left-icon {
  position: relative;
  display: block;
}

.sec-title__tagline .left-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 20px;
  line-height: 20px;
  transform: rotate(-90deg);
  margin-right: 0px;
  top: 1px;
}

.sec-title__tagline .text-box {
  position: relative;
  display: block;
}

.sec-title__tagline .text-box b {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--trnspot-font-two);
}

.sec-title__tagline .right-icon {
  position: relative;
  display: block;
}

.sec-title__tagline .right-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 20px;
  line-height: 20px;
  transform: rotate(90deg);
  margin-left: 0px;
  top: 1px;
}

.sec-title__title {
  font-size: 60px;
  line-height: 64px;
  font-weight: 600;
  text-transform: none;
  font-family: var(--trnspot-font-two);
}


/***
=============================================
   Thm Btn Css
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 14px;
  line-height: 55px;
  font-weight: 600;
  background: var(--trnspot-base);
  border-radius: 5px;
  padding: 0px 25px 0px;
  overflow: hidden;
  font-family: var(--trnspot-font);
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

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

.thm-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  top: 1px;
  margin-left: 5px;
}

.hover-btn {
  background-color: var(--trnspot-black);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-radius: 5px 0px 0px 5px;
}

.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 5px 5px 0;
}

.thm-btn:hover .hover-btn {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--trnspot-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--trnspot-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--trnspot-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}

/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
}

.rating-box a {
  position: relative;
  color: var(--trnspot-base);
}

.rating-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

/***
=============================================
Chat Popup
=============================================
***/
.chat-popup {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--trnspot-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: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--trnspot-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

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

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

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

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

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

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

.chat-popup .chat-form .form-group button .hover-btn {
  background: var(--trnspot-white);
}

.chat-popup .chat-form .form-group button.thm-btn:hover {
  color: var(--trnspot-black);
}

.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(--trnspot-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(--trnspot-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;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  /* cursor: url(../images/icon/cross-out.png),
    pointer; */
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.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(--trnspot-base);
  border-color: var(--trnspot-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--trnspot-white-rgb), .50);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--trnspot-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

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

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

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

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

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

.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: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--trnspot-white);
  color: var(--trnspot-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--trnspot-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:before {
  background-color: var(--trnspot-base);
}

.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;
  display: block;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn .hover-btn {
  background: var(--trnspot-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--trnspot-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(--trnspot-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(--trnspot-white);
}

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


/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 40px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--trnspot-gray-rgb), .50);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--trnspot-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--trnspot-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--trnspot-white);
  background: var(--trnspot-base);
  border-color: var(--trnspot-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--trnspot-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--trnspot-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--trnspot-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(--trnspot-white);
}


/***
=============================================
Scroll To Top Css
=============================================
***/
.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(--trnspot-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(--trnspot-base);
  position: relative;
  overflow: hidden;
}

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

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

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: rgba(var(--trnspot-black-rgb), .90);
  transition: transform 500ms ease, opacity 500ms ease;
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup form {
  position: absolute;
  max-width: 600px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  -webkit-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}

.search-active .search-popup form {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
  opacity: 1;
}

.search-popup .search-popup__group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .search-popup__group input {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 65px;
  color: var(--trnspot-black);
  height: 65px;
  width: 100%;
  padding: 0px 30px;
  background-color: var(--trnspot-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  text-transform: capitalize;
  padding-right: 80px;
  outline: none;
  border: none;
  border-radius: 5px;
}

.search-popup button {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background: var(--trnspot-base);
  text-align: center;
  color: var(--trnspot-white);
  font-size: 20px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  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;
  border-radius: 5px;
}

.search-popup button:hover {
  background: var(--trnspot-base);
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -170px;
  border-radius: 50%;
  text-align: center;
  color: var(--trnspot-white);
  background-color: var(--trnspot-base);
  width: 70px;
  height: 70px;
  border: 1px solid rgba(var(--trnspot-white-rgb), .30);
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search:hover {
  background-color: var(--trnspot-base);
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

.search-popup .close-search span {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  font-size: 20px;
  line-height: 70px;
  color: var(--trnspot-white);
  transform: rotate(45deg);
}

/***
=============================================
Thm Dot Style1
=============================================
***/
.thm-dot-style1.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(var(--trnspot-black-rgb), .20);
  margin: 0px 6px;
  border-radius: 0%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot.active span,
.thm-dot-style1.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--trnspot-base);
  border-color: var(--trnspot-base);
}

/***
=============================================
Mobile Nav Css
=============================================
***/
.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(--trnspot-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  border-right: 3px solid rgba(var(--trnspot-white-rgb), .40);
  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(--trnspot-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(--trnspot-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(--trnspot-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--trnspot-white);
}

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

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

.mobile-nav__social a:hover {
  color: var(--trnspot-base);
  background: var(--trnspot-white);
  border-color: var(--trnspot-white);
}

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

.mobile-nav__contact li {
  color: var(--trnspot-white);
  font-size: 16px;
  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: var(--trnspot-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--trnspot-base);
}

.mobile-nav__contact li > i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--trnspot-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: 15px;
  margin-right: 10px;
  color: var(--trnspot-white);
}

.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 Css
=============================================
***/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.main-header-one__bottom .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}

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

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

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
  border: 2px solid var(--trnspot-bdr-color);
  border-radius: var(--trnspot-bdr-radius);
  padding: 10px 10px 16px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--trnspot-bdr-radius);
}

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

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

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

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
  background-color: rgba(var(--trnspot-black-rgb), .70);
  border-radius: var(--trnspot-bdr-radius);
}

.home-showcase__buttons__item {
  padding: 0px 17px 0px;
  width: 150px;
  text-align: center;
  color: var(--trnspot-white);
  background-color: var(--trnspot-base);
}

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

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

.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: 46px 0px;
  background-color: rgba(0, 0, 0, 0);
}

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


/***
=============================================
Main Header One Css
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-one__top {
  position: relative;
  display: block;
  background-color: var(--trnspot-black);
  z-index: 99;
}

.main-header-one__top::before {
  position: absolute;
  top: 0;
  left: 73%;
  bottom: 0;
  right: 0px;
  border-top: 42px solid var(--trnspot-base);
  border-left: 30px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-one__top::after {
  position: absolute;
  top: 0;
  left: 72.5%;
  bottom: 0;
  right: 0px;
  border-top: 42px solid rgba(var(--trnspot-base-rgb), .60);
  border-left: 30px solid transparent;
  content: "";
  z-index: -2;
}

.main-header-one__top .container {
  max-width: 1590px;
  width: 100%;
}

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

.header-style1__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li + li {
  margin-left: 45px;
}

.header-style1__contact li:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--trnspot-white-rgb), .60);
}

.header-style1__contact li:first-child:before {
  display: none;
}

.header-style1__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li .icon i {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 16px;
  line-height: 16px;
}

.header-style1__contact li .text {
  margin-left: 10px;
}

.header-style1__contact li .text p {
  color: var(--trnspot-white);
  font-size: 15px;
  line-height: 25px;
}

.header-style1__contact li .text p a {
  color: var(--trnspot-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-style1__contact li .text p a:hover {
  color: var(--trnspot-base);
}

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

.main-header__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 23px;
}

.main-header__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 16px;
  line-height: 16px;
  top: 2px;
}

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

.main-header__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 65px;
}

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

.main-header__language-switcher .nice-select {
  background-color: var(--trnspot-base);
  border-radius: 0px;
  color: var(--trnspot-white);
  font-size: 15px;
  font-weight: 400;
  height: 25px;
  line-height: 25px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--trnspot-font);
}

.main-header__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -5px;
  border-bottom: 1px solid var(--trnspot-white);
  border-right: 1px solid var(--trnspot-white);
}

.main-header__language-switcher .nice-select .list {
  width: 115px;
  background-color: var(--trnspot-black);
}

.header-style1__social-links {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  padding-left: 20px;
}

.header-style1__social-links::before {
  position: absolute;
  top: -1px;
  left: 0;
  bottom: -2px;
  width: 1px;
  background-color: rgba(var(--trnspot-white-rgb), .60);
  content: "";
}

.header-style1__social-links a {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
}

.header-style1__social-links a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

.header-style1__social-links a:hover {
  color: var(--trnspot-black);
}

.header-style1__social-links a + a {
  margin-left: 20px;
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  z-index: 2;
}

.main-header-one__bottom .container {
  max-width: 1590px;
  width: 100%;
}

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

.main-header-one__bottom-left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header-one__bottom-left::before {
  position: absolute;
  top: -20px;
  left: -999999px;
  bottom: -20px;
  right: 150px;
  background: var(--trnspot-base);
  content: "";
  z-index: -1;
}

.logo-one {
  position: relative;
  display: block;
  padding-right: 60px;
  z-index: 1;
}

.logo-one::before {
  position: absolute;
  top: -20px;
  left: 0;
  bottom: -20px;
  right: 0;
  background: var(--trnspot-base);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.logo-one::after {
  position: absolute;
  top: -20px;
  left: 0;
  bottom: -20px;
  right: -9px;
  background: rgba(var(--trnspot-base-rgb), .60);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.logo-one a {
  position: relative;
  display: block;
}

.logo-one a img {
  width: 250px;
}

/* Mobile View */
@media (max-width: 767px) {
  .logo-one a img {
    width: 180px;
  }
}

.main-header-one__bottom-middle {
  display: block;
}

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

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

.header-search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: block;
  color: var(--trnspot-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.main-header__shop {
  position: relative;
  display: block;
  margin-left: 18px;
}

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

.main-header__shop .icon-box a {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
}

.main-header__shop .icon-box a:hover {
  color: var(--trnspot-base);
}

.main-header__shop .icon-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
}

.main-header__shop .icon-box .count {
  position: absolute;
  top: -2px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: var(--trnspot-base);
  border-radius: 50%;
}

.main-header__shop .icon-box .count span {
  position: relative;
  color: var(--trnspot-white);
  font-size: 12px;
  font-weight: 500;
  top: -1px;
}

.main-header__btn {
  position: relative;
  display: block;
  /* margin-left: 43px; */
  line-height: 0px;
}

.stricky-header .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 33px;
}

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

.stricky-header__one .container {
  max-width: 1590px;
  width: 100%;
}

.stricky-header__one .main-header-one__bottom-left::before {
  top: -25px;
  bottom: -20px;
}

.stricky-header__one .logo-one::before {
  top: -25px;
  bottom: -20px;
}

.stricky-header__one .logo-one::after {
  top: -25px;
  bottom: -20px;
}

/***
=============================================
Main Menu
=============================================
***/

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

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

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

@media (min-width: 1200px) {

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

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

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

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  color: var(--trnspot-black);
  font-size: 22px;
  line-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: var(--trnspot-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(--trnspot-base);
}

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

.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 43%;
  right: 0;
  font-family: 'icomoon' !important;
  content: "\e949";
  font-size: 12px;
  color: var(--trnspot-black);
  transform: translateY(-50%);
  font-weight: 700;
  -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(--trnspot-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 0px 0px 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

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

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

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

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: 1px solid rgba(var(--trnspot-bdr-color-rgb), .80);
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 18px 30px 17px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--trnspot-white);
  border-radius: 0px;
  z-index: 1;
}

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

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0px;
  background-color: var(--trnspot-base);
  border-radius: 0px;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: -1;
}

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

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
  border-left: 2px solid transparent;
  background-color: transparent;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list > li > ul > li.dropdown > a:after {
  position: absolute;
  top: 50%;
  right: 30px;
  font-family: 'icomoon' !important;
  content: "\e94f";
  font-size: 12px;
  color: var(--trnspot-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li > ul > li:hover.dropdown > a::after {
  color: var(--trnspot-white);
}

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

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

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

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 31px !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(--trnspot-base);
  cursor: pointer;
}

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

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

.main-menu .mobile-nav__toggler {
  font-size: 25px;
  color: var(--trnspot-base);
  cursor: pointer;
  line-height: 0px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

.main-menu .mobile-nav__toggler i::before {
  position: relative;
  display: inline-block;
  top: 2px;
}

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


/***
=============================================
Main Header Two Css
=============================================
***/
.main-header-one--two {
  position: relative;
  display: block;
}

.main-header-one--two .main-header-one__top::before {
  display: none;
}

.main-header-one--two .main-header-one__top::after {
  display: none;
}

.main-header-one--two .main-header__language-switcher .nice-select {
  background-color: var(--trnspot-black);
}

.main-header-one--two .header-style1__social-links a:hover {
  color: var(--trnspot-base);
}


/***
=============================================
Main Slider One
=============================================
***/
.main-slider-one {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* background: var(--trnspot-black); */
  background-blend-mode: luminosity;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
  z-index: -1;
}

.main-slider-one .swiper-slide-active .main-slider-one__bg {
  -webkit-transform: scale(1.10);
  -ms-transform: scale(1.10);
  transform: scale(1.10);
}

.main-slider-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.485);
  content: "";
  z-index: -1;
}

.main-slider-one__single {
  position: relative;
  display: block;
  padding: 100px 0px 100px;
  z-index: 1;
}

.main-slider-one__single .shape1 {
  position: absolute;
  top: -30px;
  right: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(40deg);
  mix-blend-mode: luminosity;
  -moz-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  -webkit-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  -o-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  -ms-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  opacity: 0;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-one .swiper-slide-active .main-slider-one__single .shape1 {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -webkit-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -o-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -ms-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-one__single .shape2 {
  position: absolute;
  top: 70px;
  right: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(40deg);
  mix-blend-mode: luminosity;
  -moz-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  -webkit-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  -o-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  -ms-transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  transform: skew(0deg, 0deg) translateX(10%) rotate(40deg);
  opacity: 0;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-one .swiper-slide-active .main-slider-one__single .shape2 {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -webkit-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -o-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -ms-transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  transform: skew(0deg, 0deg) translate(0) rotate(40deg);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.main-slider-one__big-title {
  position: absolute;
  bottom: 30px;
  right: 30px;
  -moz-transform: skew(0deg, 0deg) translateY(10%);
  -webkit-transform: skew(0deg, 0deg) translateY(10%);
  -o-transform: skew(0deg, 0deg) translateY(10%);
  -ms-transform: skew(0deg, 0deg) translateY(10%);
  transform: skew(0deg, 0deg) translateY(10%);
  opacity: 0;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 2;
}

.main-slider-one .swiper-slide-active .main-slider-one__big-title {
  opacity: 1;
  -moz-transform: skew(0deg, 0deg) translate(0);
  -webkit-transform: skew(0deg, 0deg) translate(0);
  -o-transform: skew(0deg, 0deg) translate(0);
  -ms-transform: skew(0deg, 0deg) translate(0);
  transform: skew(0deg, 0deg) translate(0);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-one__big-title b {
  color: transparent;
  -webkit-text-stroke: 3px rgba(var(--trnspot-white-rgb), 0.1);
  font-size: 200px;
  line-height: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}

.main-slider-one__content {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 40px 45px 45px;
  z-index: 5;
}

.main-slider-one__content-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 100%;
  border-left: 5px solid var(--trnspot-base);
  background: #052E39;
  background: linear-gradient(90deg, rgba(5, 46, 57, 0.87) 0%, rgba(5, 46, 57, 0.75) 27%, rgba(5, 46, 57, 0.54) 64%, rgba(5, 46, 57, 0) 100%);
  border-radius: var(--trnspot-bdr-radius);
  mix-blend-mode: luminosity;
  content: "";
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 1300ms ease;
  -moz-transition: all 1300ms ease;
  -ms-transition: all 1300ms ease;
  -o-transition: all 1300ms ease;
  transition: all 1300ms ease;
}

.main-slider-one .swiper-slide-active .main-slider-one__content-bg {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  opacity: 1;
  right: 50%;
}

.main-slider-one__content .tagline {
  position: relative;
  display: block;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

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

.main-slider-one__content .tagline span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--trnspot-white);
  letter-spacing: 0.02em;
}

.main-slider-one__content .title-box {
  position: relative;
  display: block;
  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 1200ms ease;
  -moz-transition: all 1200ms ease;
  -ms-transition: all 1200ms ease;
  -o-transition: all 1200ms ease;
  transition: all 1200ms ease;
  z-index: 10;
}

.main-slider-one .swiper-slide-active .main-slider-one__content .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: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-one__content .title-box b {
  color: var(--trnspot-white);
  font-size: 60px;
  line-height: 1em;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider-one__content .text-box {
  position: relative;
  display: block;
  margin-top: 25px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.main-slider-one .swiper-slide-active .main-slider-one__content .text-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: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-one__content .text-box p {
  color: var(--trnspot-white);
  font-size: 18px;
  line-height: 28px;
}

.main-slider-one__btn {
  position: relative;
  display: block;
  margin-top: 52px;
  line-height: 0px;
  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 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 10;
}

.main-slider-one__btn .thm-btn:hover {
  color: var(--trnspot-black);
}

.main-slider-one__btn .hover-btn {
  background: var(--trnspot-white);
}

.main-slider-one .swiper-slide-active .main-slider-one__btn {
  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: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}


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

#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(--trnspot-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(--trnspot-white-rgb), 1.0);
}

#main-slider-pagination .swiper-pagination-bullet::before {
  position: absolute;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border: 1px solid rgba(var(--trnspot-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 {
  transform: scaleX(1.0);
  border: 1px solid rgba(var(--trnspot-white-rgb), 1.0);
}

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


/***
=============================================
Main Slider Two
=============================================
***/
.main-slider-one--two {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-one--two .main-slider-one__bg {
  background-blend-mode: normal;
}

.main-slider-one--two .main-slider-one__bg::before {
  background: rgba(var(--trnspot-black-rgb), 0.82);
}

.main-slider-one__single.style2 {
  position: relative;
  display: block;
}

.main-slider-one--two .main-slider-one__single {
  padding: 204px 0px 208px;
}

.main-slider-one--two .main-slider-one__content {
  text-align: center;
  padding: 0px 0px 0px;
}

.main-slider-one--two .main-slider-one__content-bg {
  display: none;
}

.main-slider-one--two .main-slider-one__single .shape1 {
  display: none;
}

.main-slider-one--two .main-slider-one__single .shape2 {
  display: none;
}

.main-slider-one--two #main-slider-pagination {
  display: none;
}

.main-slider-one--two .main-slider-one__big-title {
  display: none;
}

.main-slider-one--two .main-slider-one__content .tagline span {
  color: var(--trnspot-base);
}

.main-slider-one--two .main-slider-one__content .tagline {
  position: relative;
  display: inline-block;
  padding-left: 75px;
  padding-right: 75px;
}

.main-slider-one--two .main-slider-one__content .tagline::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 65px;
  height: 2px;
  background: var(--trnspot-base);
  content: "";
}

.main-slider-one--two .main-slider-one__content .tagline::after {
  position: absolute;
  top: 10px;
  right: 0;
  width: 65px;
  height: 2px;
  background: var(--trnspot-base);
  content: "";
}

.main-slider-two__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  transform: translateY(-50%);
  padding: 0px 50px 0px;
  height: 0;
  line-height: 0;
  z-index: 100;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 55px;
  height: 55px;
  font-size: 18px;
  color: rgba(var(--trnspot-white-rgb), .35);
  opacity: 1;
  margin: 0;
  padding: 15px 0;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 50%;
  border: 2px solid rgba(var(--trnspot-white-rgb), .35);
  background: transparent;
}


.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  color: rgba(var(--trnspot-white-rgb), 1);
  border: 2px solid rgba(var(--trnspot-white-rgb), 1);
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
  display: none;
}

.main-slider-two__nav .swiper-button-next {
  margin-top: 10px;
}

/***
=============================================
Banner One
=============================================
***/
.banner-one {
  position: relative;
  display: block;
  padding: 174px 0px 180px;
  z-index: 99;
}

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

.banner-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--trnspot-black-rgb), 0.85);
  content: "";
  z-index: -1;
}

.banner-one__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 750px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  clip-path: polygon(20% 0, 100% 0, 100% 43%, 100% 100%, 68% 100%, 32% 100%, 0 100%, 30% 100%, 0 28%);
  overflow: hidden;
}

.banner-one .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 757px;
  background: var(--trnspot-white);
  clip-path: polygon(20% 0, 100% 0, 100% 43%, 100% 100%, 68% 100%, 32% 100%, 0 100%, 30% 100%, 0 28%);
  opacity: 0.4;
  z-index: -1;
}

.banner-one .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 764px;
  background: var(--trnspot-white);
  clip-path: polygon(20% 0, 100% 0, 100% 43%, 100% 100%, 68% 100%, 32% 100%, 0 100%, 30% 100%, 0 28%);
  opacity: 0.25;
  z-index: -2;
}

.banner-one__shape3 {
  position: absolute;
  top: 0;
  left: 30px;
  z-index: -1;
}

.banner-one__shape3 img {
  width: auto;
  opacity: 0.08;
}

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

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

.banner-one__tagline {
  position: relative;
  display: block;
  padding-left: 40px;
  margin-bottom: 19px;
}

.banner-one__tagline::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 30px;
  height: 4px;
  background: rgba(var(--trnspot-base-rgb), 1.0);
  border-radius: 2px;
  content: "";
}

.banner-one__tagline span {
  color: var(--trnspot-base);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
}

.banner-one__title-box {
  position: relative;
  display: block;
  margin-bottom: 29px;
}

.banner-one__title {
  color: var(--trnspot-white);
  font-size: 80px;
  line-height: 1.1em;
  font-weight: 600;
}

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

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

.banner-one__text p {
  color: rgba(var(--trnspot-white-rgb), 0.85);
  font-size: 18px;
  line-height: 28px;
}

.banner-one__btn {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 41px;
}

.banner-one__btn .thm-btn {
  background: var(--trnspot-base);
  color: var(--trnspot-white);
}

.banner-one__btn .thm-btn:hover {
  color: var(--trnspot-black);
}

.banner-one__btn .thm-btn .hover-btn {
  background-color: var(--trnspot-white);
}

.banner-one__satisfied-partner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 65px;
}

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

.banner-one__satisfied-partner-list li {
  position: relative;
  display: block;
}

.banner-one__satisfied-partner-list li + li {
  margin-left: -16px;
}

.banner-one__satisfied-partner-img {
  position: relative;
  display: block;
  max-width: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.banner-one__satisfied-partner-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--trnspot-white);
}

.banner-one__satisfied-partner-content {
  position: relative;
  display: block;
}

.banner-one__satisfied-partner-content .odometer-formatting-mark {
  display: none;
}

.banner-one__satisfied-partner-count-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 5px;
}

.banner-one__satisfied-partner-count-box p {
  font-size: 30px;
  color: var(--trnspot-black);
  font-weight: 600;
  line-height: 30px !important;
  font-family: var(--trnspot-font-two) !important;
}

.banner-one__satisfied-partner-count-box span {
  font-size: 30px;
  color: var(--trnspot-white);
  font-weight: 600;
  line-height: 30px;
  font-family: var(--trnspot-font-two);
}

.banner-one__satisfied-partner-text {
  color: rgba(var(--trnspot-white-rgb), 0.85);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
}

.banner-one__google-rating {
  position: absolute;
  bottom: 20px;
  left: 610px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.61) 100%);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.03);
  border-radius: 9px;
  padding: 20px 20px 20px;
  max-width: 192px;
  width: 100%;
}

.banner-one__google-rating::before {
  position: absolute;
  bottom: -20px;
  right: 25px;
  border-top: 20px solid var(--trnspot-white);
  border-left: 0px solid transparent;
  border-right: 16px solid transparent;
  content: "";
  opacity: 0.6;
}

.banner-one__google-rating-img {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.banner-one__google-rating-img img {
  width: auto;
}

.banner-one__google-rating-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.banner-one__google-rating-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.banner-one__google-rating-star span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--trnspot-base);
}

.banner-one__google-rating-count {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.banner-one__google-rating-count p {
  font-size: 18px;
  color: var(--trnspot-black);
  font-weight: 500;
}

.banner-one__google-rating-count span {
  font-size: 18px;
  color: var(--trnspot-black);
  font-weight: 500;
}


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

.about-one .shape2 {
  position: absolute;
  top: 27px;
  right: 20px;
  opacity: 0.15;
  z-index: -1;
}

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

.about-one__img .shape1 {
  position: absolute;
  top: 15px;
  right: -15px;
  z-index: -1;
}

.about-one__img::before {
  position: absolute;
  top: 0;
  left: -12px;
  bottom: 0;
  width: 7px;
  background: var(--trnspot-base);
  border-radius: 7px;
  content: "";
}

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

.about-one__img-box ul {
  position: relative;
  display: flex;
  align-items: center;
}

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

.about-one__img-box ul li + li {
  margin-left: 10px;
}

.about-one__img-box ul li .img-box {
  position: relative;
  display: block;
  border-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

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

.about-one__experience-box {
  position: relative;
  display: block;
  padding: 44px 35px 39px;
  margin-bottom: 10px;
  background: var(--trnspot-white);
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  margin-left: -60px;
  margin-right: 95px;
  border-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.about-one__experience-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: var(--trnspot-base);
  content: "";
}

.about-one__experience-box .count-text-box {
  position: relative;
  display: block;
}

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

.about-one__experience-box .count-number b {
  font-size: 55px;
  line-height: 1em;
  font-weight: 700;
  color: #00498F
}

.about-one__experience-box .count-number span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
  font-size: 50px;
  line-height: 1em;
  font-weight: 700;
  top: -5px;
}

.about-one__experience-box b {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 5px;
  color: #00224f;
}

.about-one__content {
  position: relative;
  display: block;
  margin-left: 25px;
}

.about-one__content .sec-title {
  padding-bottom: 21px;
}

.about-one__content-text {
  position: relative;
  display: block;
}

.about-one__content-text p {
  margin: 0px;
}

.about-one__content-list {
  position: relative;
  display: block;
  margin-top: 32px;
}

.about-one__content-list ul {
  position: relative;
  display: block;
}

.about-one__content-list ul li {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--trnspot-white);
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--trnspot-bdr-radius);
  padding: 22px 30px 22px;
  overflow: hidden;
}

.about-one__content-list ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--trnspot-base);
  content: "";
}

.about-one__content-list ul li + li {
  margin-top: 15px;
}

.about-one__content-list ul li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--trnspot-base);
  border-radius: 5px;
}

.about-one__content-list ul li .icon span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 30px;
  line-height: 30px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.about-one__content-list ul li:hover .icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.about-one__content-list ul li .content-box {
  position: relative;
  display: block;
  margin-left: 25px;
  flex: 1;
}

.about-one__content-list ul li .content-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.about-one__content-list ul li .content-box p {
  margin: 0;
}

.about-one__content-btn {
  position: relative;
  display: block;
  margin-top: 35px;
  line-height: 0px;
}

/***
=============================================
About Two
=============================================
***/
.about-two {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 120px 0px 120px;
  z-index: 1;
}

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

.about-two__img .row {
  --bs-gutter-x: 20px;
}

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

.about-two__img-single-img {
  position: relative;
  display: block;
  z-index: 2;
}

.about-two__img-single-img::before {
  position: absolute;
  top: 10px;
  left: -7px;
  bottom: -5px;
  right: 10px;
  border: 2px solid var(--trnspot-base);
  border-radius: 150px;
  content: "";
  z-index: -1;
}

.about-two__img-single-img-inner {
  position: relative;
  display: block;
  border-radius: 150px;
  overflow: hidden;
}

.about-two__img-single-img-inner img {
  width: 100%;
}

.about-two__round-text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--trnspot-base);
  transform: translateY(-50%) translateX(-50%);
  z-index: 5;
}

.about-two__round-text-box .inner {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
}

.about-two__curved-circle {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  color: var(--trnspot-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  letter-spacing: 0px;
  word-spacing: 2px;
  transform: rotate(0deg);
  height: 150px !important;
}

.about-two__round-text-box .overlay-icon-box {
  position: absolute;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  background-color: var(--trnspot-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__round-text-box .overlay-icon-box a {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 40px;
}

.about-two__content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-two__content .sec-title {
  padding-bottom: 25px;
}

.about-two__content-text {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.about-two__content-text p {
  margin: 0px;
}

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

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

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

.about-two__progress-box li + li {
  margin-top: 23px;
}

.about-two__progress-single {
  position: relative;
  display: block;
}

.about-two__progress-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.about-two__progress-single .title-box p {
  color: var(--trnspot-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-two__progress-single .bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--trnspot-gray-bg);
  border-radius: 6px;
}

.about-two__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--trnspot-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;
}

.about-two__progress-single .count-text {
  position: absolute;
  top: -35px;
  right: -1px;
  color: var(--trnspot-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  opacity: 0;
  font-family: var(--trnspot-font-two);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-two__progress-single .bar-inner.counted .count-text {
  opacity: 1;
}

.about-two__list {
  position: relative;
  display: block;
  margin-top: 43px;
}

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

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

.about-two__list-box li + li {
  margin-top: 10px;
}

.about-two__list-box li p {
  margin: 0;
}

.about-two__list-box li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  margin-right: 5px;
  font-weight: 700;
}

.about-two__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
}

.about-two__content-founder {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__content-founder .img-box {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--trnspot-base);
  overflow: hidden;
}

.about-two__content-founder .img-box img {
  width: 100%;
}

.about-two__content-founder .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.about-two__content-founder .text-box h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.about-two__content-founder .text-box p {
  margin: 0;
}

.about-two__content-signature {
  position: relative;
  display: block;
  opacity: 0.3;
}

.about-two__content-btn {
  position: relative;
  display: block;
  line-height: 0px;
}

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

.about-three__img {
  position: relative;
  display: block;
  margin-right: 50px;
  padding-right: 50px;
  padding-left: 25px;
}

.about-three__img .shape1 {
  position: absolute;
  top: 0;
  right: 35px;
  width: 6px;
  height: 430px;
  border-radius: 10px;
  background: var(--trnspot-base);
}

.about-three__img .shape1::before {
  position: absolute;
  bottom: 45px;
  left: -12px;
  width: 30px;
  height: 15px;
  border-radius: 50%;
  background: var(--trnspot-white);
  content: "";
  z-index: 5;
}

.about-three__img .shape2 {
  position: absolute;
  bottom: 0px;
  left: 10px;
  width: 6px;
  height: 385px;
  border-radius: 10px;
  background: var(--trnspot-base);
}

.about-three__img .shape2::before {
  position: absolute;
  top: 45px;
  left: -12px;
  width: 30px;
  height: 15px;
  border-radius: 50%;
  background: var(--trnspot-white);
  content: "";
  z-index: 5;
}

.about-three__img:before {
  position: absolute;
  top: 0px;
  left: -25px;
  width: 50px;
  height: 47px;
  background: #d93a0a;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  content: "";
}

.about-three__img1 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--trnspot-bdr-radius);
  border: 10px solid var(--trnspot-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-top-left-radius: 0px;
}

.about-three__img1 img {
  width: 100%;
  border-radius: var(--trnspot-bdr-radius);
  border-top-left-radius: 0px;
}

.about-three__img2 {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--trnspot-white);
  background: var(--trnspot-black);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.about-three__img2 img {
  width: 100%;
  opacity: 0.8;
}

.about-three__experience {
  position: absolute;
  top: 45px;
  left: -25px;
  height: 190px;
  width: 190px;
  background-color: rgba(var(--trnspot-base-rgb), 1.0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 0 30px 0;
  z-index: 2;
}

.about-three__experience-inner {
  position: relative;
  height: 180px;
  width: 180px;
  background-color: rgba(var(--trnspot-white-rgb), 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 30px 0;
}

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

.about-three__experience .count-box h2 {
  color: var(--trnspot-black);
  font-size: 60px;
  line-height: 1em;
  font-weight: 600;
  margin-bottom: 3px;
}

.about-three__experience .count-box span {
  position: relative;
  display: block;
  top: -8px;
  color: var(--trnspot-black);
  font-size: 55px;
  font-weight: 600;
}

.about-three__experience p {
  color: var(--trnspot-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  font-weight: 600;
}

.about-three__video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

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

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

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

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

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

.about-three__content {
  position: relative;
  display: block;
  margin-left: -20px;
  margin-right: -40px;
}

.about-three__content .sec-title {
  padding-bottom: 24px;
}

.about-three__content-text {
  position: relative;
  display: block;
}

.about-three__content-text p {
  margin: 0px;
}

.about-three__points-box {
  position: relative;
  display: block;
  margin: 30px 0 30px;
}

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

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

.about-three__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(var(--trnspot-base-rgb), .60);
  border-radius: var(--trnspot-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__points li .icon:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--trnspot-base);
  border-radius: var(--trnspot-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.about-three__points li:hover .icon:before {
  background-color: rgba(var(--trnspot-black-rgb), 1);
}

.about-three__points li:hover .icon {
  background-color: rgba(var(--trnspot-black-rgb), .60);
}

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

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

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

.about-three__points li .content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 3px;
}

.about-three__list {
  position: relative;
  display: block;
  margin-top: 36px;
  background: var(--trnspot-white);
  border-radius: var(--trnspot-bdr-radius);
  border-left: 3px solid var(--trnspot-base);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 21px 25px 20px;
  overflow: hidden;
}

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

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

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

.about-three__list-box li p {
  margin: 0;
}

.about-three__list-box li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  margin-right: 5px;
  font-weight: 700;
}

.about-three__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
}

.about-three__content-founder {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__content-founder .img-box {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--trnspot-base);
  overflow: hidden;
}

.about-three__content-founder .img-box img {
  width: 100%;
}

.about-three__content-founder .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.about-three__content-founder .text-box h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.about-three__content-founder .text-box p {
  margin: 0;
}

.about-three__content-signature {
  position: relative;
  display: block;
  opacity: 0.3;
}

.about-three__content-btn {
  position: relative;
  display: block;
  line-height: 0px;
}

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

.services-one .shape1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0.02;
  z-index: -1;
}

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

.services-one__single-img {
  position: relative;
  display: block;
  z-index: 1;
}

.services-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--trnspot-black);
  border-top-left-radius: var(--trnspot-bdr-radius);
  border-top-right-radius: var(--trnspot-bdr-radius);
}

.services-one__single-img-inner::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 45px;
  background: #ffffff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='300' height='46' viewBox='0 0 300 46'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAAuCAYAAACSwiTKAAAJyElEQVR4AeydbYxUZxXHz7kLKwi6akCkL7D3zooJWExLq8YPuh9slRJr4d5rIUqhRmkUpVuDgaSYNkICkdhtlRrRWNuatGpMqoZiWj9gP9gaC0QLRK0tWKwW36pJSbs792GO//9slS1Zuiw7u/N2Js/ZuXPnmeee53fO+e+de+fOROK3tiVgedJlK+L55eXxu4q8+wMh6/loSEtrynlyU5Elt8L6Q5p8t8iTB2E/x+MnYPuLNPlDyOJnsHwC9sIwexnLNoJx/fB+J6qvxzjoux/2RHV8bKe6vSzpx7pb6UeAP/SrgH/0k/7S77YNWptP3AWrBRPA8oveMpjGi0Maf6ScxuuLLN4asuRuiMAeCMOBIiv9pciSIpj8J0T6J+3Q34hFvzCp/NjU7lGTO0TkNhHpM5W1YnIt7IMicjlsiagsMNEEy3Ngbx5m07A8UuP64f3mVF+PcdB5Cezy6vjYTnV72C7W3UY/6I/BL4F/9JP+0m/6X3AeeYL5JHuG5hdv5Xyr84YIkwPG8dZCBFywmjCYtrZ72mDasyjk8TXlLOnDXsjXiyzZCzsCOxms81+R6m9N9aequktEt5jIDSKyDMJwmYhdgOUpsGZu8B/zMMF8ZNnQ/HQL51udN0SYHMgDRi57yanKC9zIjxybGUA7+u6C1cBRt7xndpH19Jbz0joUHd8mPRzS5Fg4Gb0UaeWwmf5ERfqxF/I5TGMpbCFsBmzE1qYryYNclpJTlRe4kR85kifYPgzrH+Lc00vubcqq4aftgtUAIbJ8YWc57bk0ZKXri6y0s8iSR2AnglX+LlLZp2a74WYf7CpT6RYR1J34bfwE9BWeV2GoviHOlX3kTv4wxKG0k3FhfBgn9PNWRwIuWJMM39YtmVpe0XMZjrV8GsdadqMo9gcbeFG1ctDE7hWxjXDpShiPD+HOW50IkD/iYBsZF8YHcTpZjVca7+beGOPIeNbJv7bcrAvWBIfd8gUX4oxYjkS/HfbL8MK/X9SockBVv2Wq67B5HnTuxL23xicwFS4uYdy4N8Y4Mp6MK6yfcWa80af+rUU9cMGqYWBx4FcH856F5Tz5DA7u3g97Nlh4zkR/iM3cDHsf7HUwb61DgPFkXPsYZ8abcYfdzzyoHtwXfwsvNbq5YI0T5ODy0jvLaWlDkSc/Clnyt8gqR9TkGzjItAo2b5zD+8ubkADjDlvFPKge3EdeMD+YJ8yXJpxSw7jsgjXGUFje/baQx6vLWXxvkSV/jTrskKrdKSYphpoN8+YEziQwm/nBPGG+MG8gXvcxj5hPZ3b2x2cn4II1Epth66y3d0qxIn4/kmwH7Mlg0fNmep+KXo9uc2HenMBYCcyFeK1mHjGfmFewHcwz5ttYB2un/i5YI0TbVi2YFdLSGpzJ+36YdfwfEumj6LYJdgnMmxOoNQHm1SbmGfLtn9W8Q/4xD2u9oWYfzwXrlQjyGjUcJL2pyOJ9oQgnjJeoqF6Hp98E8+YEJotAlyLvmH/MQ+Yj85L5OVkONPJ22lqwBtLk7UUe34IDogd4jRoOkt4hor0i0gHz1hYEGnqSyEPtZV4yP5mnzFfmbUN7PYHOtZ1gvZzPjxH4zbADHSpPiek2GboebQIx+9BOoAYEmKfIV+Yt9rwOIoc3M59rMHLTDNEWgmXLS28tZ6XPI8C/nmIdRyFQ22G8aLZpAuWOOoFXE9BLkcPbmc/Ma+Y38/zVfVrvUcsKluUXTQ9ZaSXOvuwJHfacin0NAb6i9ULoM2p7AiZXML+Z5xCvh5j3zP9W5DJOwWo8JOW0+z28Ri9Y5/Mm9gA8XAbjJRW48+YEWprAVPxTvpp5z/xnHZRXdL+3lWbcEoLFXeFymtyMvaknVaNf2dA1el2tFCifixMYI4Eu1oFG0eOsC9YH62SMYzRc96YWLH7QrpwlD2BX+Liq3A66/DwL7rw5AScwjMAlrA/UyZ9ZL6ybYc811WLTCRa/zxvQP4v/Gocl0kdVZCWI8wJU3HmbQAI+dPMT6KzWC+qG9cM6Yj0107SaRrAGrksWhCzZFUxwAF3uAuRFMG9OwAmcH4FFEK+7WE+sK9bX+Q0zua9qaMEyES3y+Eqe+eg4Jb/D4/UiMhPmzQk4gdoQmMm6Yn2xzlhveAwtq83gtR6lIQXL+JXBWXIDlP+QmD4iJldj4g3pK/zy5gRagUBUrTPUG+sOB+k/yTpstIk1lAjYx3veWGTxxmCDxyDxdwOWv+0DBG9OYJIJLFKV77AOi7z0RdblJG//rJtrCMHi6dYiTbaHwcqzIrpThn6GSvzmBJxAPQnwZ9TsK6jL46xP1mk9veG26ypYtvLiC3C2oh+nW4+JymY45N+MAAjenECDEehifbJOWa+WL7iwXv7VRbBwKnUe3ifvCmHqM5g4f77q9bhvmeYTcQItSoB12hcsPM36ZR1P9jwnVbC4R8WJ4lTqH3Emgmf8pk32hH17TsAJjJvANNYv65j1zLoe94jnOMCkCBZ/SRfvgb+KPaqnOVH41gnz5gScQHMT6GQ9s65Z36zziZ7OhAqW5Qtn4qzfl4NVjuI98Bcwmekwb06gdQj4TEhgOuubdY5632rXvOMNXDkRNiGCBaHqLKfx+mADx0T0SyL+YU8w8OYEWp3ATBHdEjqLo6x/6oDU+FZTwcLuoYY0/tgpGziiqrvg6yyYNyfgBNqLwCzWP3WAekBdqNX0ayZY/N6dkJceM9UfwMGeWjno4zgBJ9CcBKgD1APqAvWhFrMYt2DZivlzy1l8j0bRY2I2ti8Lq8UMfAwn4AQamwB0gfpQzpLvUS/G4+x5C5at7Z5W5PEtIep4SkXXwAmFeXMCTsAJjERAIRCfoF5QN6gfI3Uabd15CVbISktPnYx4YfI2bAAH2vDXmxNwAk5gdAIzxXQb9SOkCb/UYPRXDOsxJsHiJ1uLPHnQxPby/emwcXzRCYxCwJ92AqcJUD9M5aGqnuTJvNPPvPbSOQmW9fZOKbJkUzD5vZhcK35zAk7ACdSCAPSEukJ9oc6MNuSoglXO43eHWccPYKAdsOkwb07ACTiBWhKgruygzlBvXmvgswoWP61aZPGdavo4BlgM8+YEnIATOBcC59tnMfWGukP9GWmQEQWrSLs/VHQWh0V0g4iM2AfrvTkBJ+AEak0AeqMbqD/UoTMHx5OnV/GbBXEG8Nui0c9U5JwPhJ0ewZecgBNwAuMnUNUf6BD1CCf7uv434v8Fq8hLHy4GKodxBvBTeBL98debE3ACTqB+BJR6VFTkEPWJbkS2es6MkCXfFLO9qnIxV7rVlYBv3Ak4gWEEqroEfaJOReGlGQdN5EY873tVgODNCTiBhiSAvS258b8AAAD//0+MSHwAAAAGSURBVAMAQ+kDspey9vEAAAAASUVORK5CYII=' x='0' y='0' width='300' height='46'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  mask-size: cover;
  content: "";
  z-index: 5;
}

.services-one__single-img-inner::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50px;
  background: var(--trnspot-base);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='350' height='54' viewBox='0 0 350 54'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAV4AAAA2CAYAAACP+/GZAAAMTklEQVR4Aeyda5AdRRXHT8/NC8GyQKI8EtjpWSNEIcFEgxAgUHwwJCjZ6SEJKo/CSlmWCkGhCJAnEAqUELUsi5LCoPKWhyTgByTyCBiSAEnY4hUQs0GgkEpKgbiZ7uzxf+4uZRKT7Gb33rv3cW6ds3MfM92nf939377dc2ci0ocSKAMBzobtxy3Nw/Ip8SjfkpwastjlLv5O7uzF3iWzvbPXhzS+Ga/vxPOlPrOPYrsSviak9vXg4jfw/C345l38I7zm3bi8v9O+eWrbutJZj/3XwJ/qymeZ5Cv5+zS+wSOePLUzc8QncfosOU3ilvj5zMM+UQY8mmSDE1DhbfAGsC/FFzFtT+3nvItPgmidnWf2Ip/a6yBYS7yzj8DXwTfBtwYetDVEHZtMwayliJczm3sNmV8bopuIeAHyvYyNmYHX0/B8MjGdju04+Bg2lDAZi+eHww/cxfckhPL+TvsaQ8O70jkGaYyBj+/KZ5Lky8ifjLlU4sG+iwzikziJ+TGJW+IPg4eIoG9FmaRcUr5HchcvKZYb5Q8umeZb4pOFC5/fNAR5qCmBbgmo8HaLqHF24GzkAdvS+NjgbIvP7CUQ2J95l/zRO/sC/J8BYlow9BqReRKidbdhWkyGLodgnUdEE+HHwofB94PXk0l5pFxSvonF8kq5UX4mvpMi84RwCR9G/wGnd+Cr4fdDnBcLR+FZHEGDbz1BqbuyVLBAKrwVhF0NWfHE5sEiAjJi9S65KpfRW2ZXeGffCdz+QWTMOia6DyPDG4nMDzEa/DoRjSaig+Fq3RM4BLuMhU8hQxcR043CsziCBl/hDH86d/FtEOU5IUumSn1IveAYtQYhoMJbpxUtc5OYtxybO3uBL85j2mUYeW0I+3d8JCIgI1aI6tXF0RvTicAggoGNWpkJCOcTwP1ciPJ8Zr5L6kPqpWs+epnUl9RbntqxOn1R5trop+RVePsJfCmz5WnDDwuZneSz+Erv7L1FgR085APMW642RLdScR6TJmHk1Yx8C3C16iNQ4M557UlSX1JvUn+YvvjQp8lLuUvuRt3OknrmbITMfVdfCcoSUX0mqsJbY/XK0+PPSudDJ5yLr6oPYft2CAP/wUzLiM01KI5jIhFYrVvAqAMrkOGjDfHZKMtCqefAQc72eBt1vxQ+F/9oJ3PWJCNp7KJWCwS0c1ZxLfGMMQPztGlc7uzF8HvQyTYFb96Vzoew5xHTmdgeCldrPAJS75NR7HlMtDRwJIt6m6SdwC+WdiPtB5+rVSEBFd4qqhQ+54gDseh1JgT2eviTYfOWfxkTrcTXzpvgGUKVlXVs1JTAbgkMk3YCv0naDdrPv9GOnvYu+Wlwzd+Q9rXbo/b9TT2ijwRUePsIsC+H85SjPh3S5Cyf2sXexc+HfMD7WPR6CGleBj8JLqcxYaOmBHpFQM4rPgGLqD9i6nhQ2hemp9ZKewtZMoWnj9AzVXqFte8HqfD2nWGPU5AzDXyWfA0N/0bv7LpQyN9jww+QnHZE5jgkpPUBCGplIxBhemqUtDdmvj/48J60Q/ii4JKJ0j7LlrMmvBMB7eg74SjtC55HkZwShIY9C/5YGDxkMzH/CQ3/EuQkJ+Mrf4BQKw2BXqSCWQmSdjiTiR9B+9ziM7scbXVW3mK/LO23F2nqIT0goB2/B5D2ZRfO7KeCi7OQ2t+EVvuOMbQaxy+EnwYfDFdTAtVKYBBGxKciuIUmolVov+/mLl6CaYmp0q7xvlqJCKjwlgBk+1Q7wmfJpd7ZxwLT+0zmHjZ0PhF9Bq6mBGqVwFBD5jxMS9wl7RrrEH+Rdr4tbTqqVgtULXGr8PaiJpjIdE4hJNf6NHmpsJ1exRTCDUQko9oB2KopgU4C9fMX7dpMkHYemehlafcYaCwsTkkQJs9IH/tCQIW3h7Q4o0Lx8oYu/rlP7cbOKQS+Qk5u72ESupsSqB8Cho9GYWYVpyScbQtp8gvpH9JP8L5aNwRUePcCiLE45jM7XhpVYPtW8fKGZH4A0R2+l8P0IyXQaASGseHvS/+QfhKc/aVviU+W/tNoIHpaXhXe3ZDK06Zx+Bq1KLTajVhseKrYqIj0J5m7YVWbb2nUZSRwCBN9jyLzBPpPm0/t4ryl6fgy5leTSavwdlVbcYEstfNDal83JlqJt2fC9ZdigKCmBHpJ4HAydJGJor9Kv8JgZm771Oakl2nV1WENLbycDTsIi2TfxWrtM8UFMkNz2JA2jLpq4lqYaiDQ1a/mFbZ3bIAAPy39TvpfNcTWHzE0nPCyzNum9vTc2TsCD3ob87W/IjJfJX30NwHNvzEIGBTzBOl30v9yl9yN6YjTpV/i/YaxhhFenpYM9y6Zvb013oCvP4+i9qejlvUHDYCgpgT6icDg4uUuDT3qW+3fPPonZ/aIfoqlotnWtfDKqS3Fq31l9uEQ+E0iXsCdF5uuKGTNTAkogb0TwEDoSOmfgelNL/1VrqaWUWHvR9Xup3UpvHKxcO/iKzzbN9iYh4jpDFRR3VYiylY204SVQIUJyIV8zmDqeNB32DelH0t/rnAMZc+uroTXtyQn5jJ3681GInNt539R0ocSUAI1SMAYGk7ox8GbNvTrO+XcYKqTR80LL2cjB2E64Vve2TUU8QqIrc7d1knj1GIogS4Cg9Cvp1FknvCZfS645FxGv+/6rCY3NSu8chFn75KrArf/HdMJvwP9MfDGMC2lEmhUAkxfYuLb0O83ov/P5qx5aC2iqDnhlR86YIR7c/BhEybjrwZ0ufcUNmpKQAk0EIFD0P8XBO5oC6m9pT2LP19LZa8Z4c2z+Cs+s38obKeXMcKdAchyWxNs1JSAEmhgAkPY0IUFNi95Z+/P06ZxtcCiqoWXiYyXW+Vkdrlh8ywxpURUpTEjMjUloAT6i4DowhRjopXeJY9jFHyG6Ed/BdNdvhJsd/tU/HMBFtLkrJBhwUxulcMkV8WveByaoRJQArVIgE/BKPjh4Ozz8BaeV32DtaoSXgFUvG2Os2tZbgKJifRarHaNWQkogaogMJqJ7gutdm3IkqlcRQJcFcIrQEJmzwGg9UzmHlSZ3IAPmz6bJqAElIASOIaZ7wovJq3B2W9yFQhwvwovExmAaAmtdj0z3U5EX4CrKQEloARKT8Dw0dCc30NvXgxZ7PDclD6TnqXYb8Iri2bB2VUo/H0IVQUXENSUgBKoCIGRzOZefMteA59UkRx3yaTiwutdfJJ39imSRTOisbvEoy+VgBJQApUhgDUkZlrmM7vCZ02nVCbTzlwqJrzbsuaRKOADROZJIhoPV1MCSkAJ9D8BphOJo8cxIFwqOlWJgMouvNxy5KHyS7OIO9YR01mkDyWgBJRAdRKYLDoVUnuL6FY5Q/yf8JY4F85GHoBphQUhKrzGxsgvzQaUOAtNTgkoASVQagID2NCF0K0NPk2uER0rdQaSXsmFF4tlBhPW5wRuf43IzCaiA+BqSkAJKIFaIrA/Gb5SdCx39gLRtVIGX1LhzVuajg9Z8gwmrG9HkHrxGkBQUwJKoOYI7BjwoYboVtE10bcdP+jL85IIr8yH5GnyWxNFzxDz8X0JSI9VAkpACVQdAeia6BtGv3dwNuLwvsbXJ+HlCRMG5KmdifmQV43hbyMY/HPAXzUloASUQP0RMBC46YHDK97FPxb9620Rey28PrPjw8FtzyGSRcj8k3A1JaAElEDZCFRRwli3Mj8JQ9te6O3tiPZZeDlrHpq7eAkxyfm4ek2FKmoNGooSUAIVJMD0RYrM49DD2/b1hpw9Fl5Z1cuxuhe44xVD5jwUz8DVlIASUAKNTABf+s25wZuX8yy+UHSyJzB6JLztWdIcnP0zlPZWJHoQXE0JKAElQKQMPiZwoGFzS3Dxcrk92cdv7mm7V+FlLJ75zF5eYF6PBE6DqykBJaAElMAeCZgJhe201rv4Cp4xZiDt4bFH4c2zptFYPFuNudzrcOx+cDUloASUgBLongD00lwbNm9Zk6fNx+1u9/8TXlFp7+xcw9EqHDAarqYElEBNEdBgq4TAscZ0rMLodwFnIwftGNNOwptPiUdBpUVw52GnPQ6T8ZmaElACSkAJdE9gAJGZHah91Y6j36Lwds3lzjEFI6Kro1zShxJQAkqghASYRmH0+6xP7XzR26h4xsLBbSuIaT6y2Wk4jNdqSkAJlIaApqIEBpKhOVg7WxEVmF8Aj3FwNSWgBJSAEig/gXH/BQAA//+2RYpBAAAABklEQVQDABO6l7231zs1AAAAAElFTkSuQmCC' x='0' y='0' width='350' height='54'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  mask-size: cover;
  content: "";
  z-index: 4;
}

.services-one__single-img-inner img {
  width: 100%;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__single-img-inner img {
  opacity: 0.55;
  transform: scaleX(1.05);
}

.services-one__single-content {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 13px 30px 31px;
  border-bottom-left-radius: var(--trnspot-bdr-radius);
  border-bottom-right-radius: var(--trnspot-bdr-radius);
  border: 1px solid var(--trnspot-bdr-color);
  border-top: none;
  z-index: 1;
}

.services-one__single-content .icon-box {
  position: absolute;
  top: -81px;
  left: 0;
  right: 0;
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--trnspot-white);
  border: 3px solid var(--trnspot-base);
  border-radius: 50%;
  z-index: 15;
}

.services-one__single-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 30px;
  line-height: 30px;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__single-content .icon-box span::before {
  -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__single-content h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.services-one__single-content h2 a {
  color: var(--trnspot-black);
}

.services-one__single-content h2 a:hover {
  color: var(--trnspot-base);
}

.services-one__single-content p {
  margin: 0;
}

.services-one__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.services-one__single-content .btn-box a {
  color: var(--trnspot-base);
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--trnspot-font-two);
}

.services-one__single-content .btn-box a span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  margin-left: 2px;
}


.services-one__carousel.owl-theme .owl-nav {
  margin-top: 0px;
  position: absolute;
  top: -130px;
  right: -5px;
}

.services-one__carousel.owl-carousel .owl-nav button.owl-prev,
.services-one__carousel.owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: var(--trnspot-bdr-radius);
  background-color: var(--trnspot-white);
  color: var(--trnspot-black);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--trnspot-bdr-color);
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.services-one__carousel.owl-carousel .owl-nav button.owl-prev::before,
.services-one__carousel.owl-carousel .owl-nav button.owl-next::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: var(--trnspot-bdr-radius);
  background: var(--trnspot-base);
  transform: scale(0.7);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.03s;
  content: "";
  z-index: -1;
}

.services-one__carousel.owl-carousel .owl-nav button.owl-prev:hover::before,
.services-one__carousel.owl-carousel .owl-nav button.owl-next:hover::before {
  transform: scale(1);
  opacity: 1;
}

.services-one__carousel.owl-carousel .owl-nav button.owl-prev:hover,
.services-one__carousel.owl-carousel .owl-nav button.owl-next:hover {
  border-color: var(--trnspot-base);
  color: var(--trnspot-white);
  transition-delay: 0.2s;
}

.services-one__carousel.owl-carousel .owl-nav button.owl-prev span::before,
.services-one__carousel.owl-carousel .owl-nav button.owl-next span::before {
  font-weight: 700;
  line-height: 53px;
}


.services-one--services {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.services-one--services .services-one__single {
  margin-bottom: 30px;
}

/*==============================================
   Services Two
===============================================*/
.services-two {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  padding: 120px 0px 90px;
  z-index: 1;
}

.services-two__single {
  position: relative;
  display: block;
  border: 1.5px solid var(--trnspot-white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  padding: 35px 40px 32px;
  margin-bottom: 30px;
  z-index: 1;
}

.services-two__single:before {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 45px;
  height: 45px;
  background: var(--trnspot-base);
  content: "";
  opacity: 0.06;
}

.services-two__single-icon {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.services-two__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 55px;
  line-height: 55px;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__single-icon span:before {
  -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-two__single-title {
  position: relative;
  display: block;
}

.services-two__single-bdr {
  position: relative;
  display: block;
  width: 75px;
  height: 2px;
  background: var(--trnspot-base);
}

.services-two__single-bdr::before {
  position: absolute;
  top: 0;
  right: 10px;
  width: 4px;
  height: 2px;
  background: var(--trnspot-white);
  content: "";
}

.services-two__single-title h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
}

.services-two__single-title h2 a {
  color: var(--trnspot-black);
}

.services-two__single-title h2 a:hover {
  color: var(--trnspot-base);
}

.services-two__single-text {
  position: relative;
  display: block;
  margin-top: 24px;
}

.services-two__single-text p {
  margin: 0;
}

.services-two__single-btn {
  position: relative;
  display: block;
  margin-top: 20px;
}

.services-two__single-btn a {
  color: var(--trnspot-black);
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--trnspot-font-two);
}

.services-two__single-btn a:hover {
  color: var(--trnspot-base);
}

.services-two__single-btn a span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  margin-left: 2px;
}

/*==============================================
   Services Three
===============================================*/
.services-one--three {
  position: relative;
  display: block;
  z-index: 1;
}

.services-one--three__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.04;
  z-index: -1;
}

.services-one--three.services-one .shape1 {
  display: none;
}

.services-one--three .services-one__single-img-inner::before {
  display: none;
}

.services-one--three .services-one__single-img-inner::after {
  display: none;
}

.services-one--three .services-one__single-content .icon-box {
  top: -35px;
}

.services-one--three .services-one__single-content {
  padding: 60px 30px 31px;
}

.services-one--three .services-one__single-content .icon-box {
  border: 1px dashed var(--trnspot-base);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}

/***
=============================================
Sliding Text One
=============================================
***/
.sliding-text-one {
  position: relative;
  display: block;
  background: var(--trnspot-black);
  padding: 46px 0px 31px;
  z-index: 1;
}

.sliding-text-one__wrap {
  position: relative;
  display: block;
}

.sliding-text__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
}

.sliding-text__list li {
  osition: relative;
  display: block;
  float: left;
  margin-right: 40px;
}

.sliding-text__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(var(--trnspot-white-rgb), .7);
  font-size: 90px;
  line-height: 1em;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--trnspot-font-two);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sliding-text__list li:hover .sliding-text__title {
  color: var(--trnspot-white);
}

.sliding-text__title img {
  position: relative;
  width: auto;
  top: -6px;
}

.sliding-text__title:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--trnspot-white);
  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 .sliding-text__title:before {
  width: 100%;
  color: var(--trnspot-white);
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/***
=============================================
Testimonials One Sliding Text
=============================================
***/
.testimonials-one__sliding-text {
  position: absolute;
  top: 0;
  left: 150px;
}

.testimonials-one__sliding-text-list {
  position: absolute;
  top: 0px;
  right: 0px;
  will-change: transform;
  transform: translateY(0);
  white-space: nowrap;
  top: 0px;
  -moz-animation: scroll-top1 100s linear infinite;
  -webkit-animation: scroll-top1 100s linear infinite;
  animation: scroll-top1 100s linear infinite;
}

.testimonials-one__sliding-text-list li {
  position: relative;
  display: flex;
  align-items: center;
  transform: rotate(-90deg);
  margin-top: 25px;
  color: rgba(var(--trnspot-gray-rgb), .10);
  font-size: 110px;
  line-height: 1.0em;
  font-family: var(--trnspot-font-two);
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
}

@-moz-keyframes scroll-top1 {
  0% {
    -moz-transform: translateY(0%);
  }

  100% {
    -moz-transform: translateY(-100%);
  }
}

@-webkit-keyframes scroll-top1 {
  0% {
    -webkit-transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
  }
}


/*==============================================
  Testimonials One
===============================================*/
.testimonials-one {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 120px 0px 120px;
  overflow: hidden;
  z-index: 1;
}

.testimonials-one__bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: calc((100% - 0px) / 2);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.testimonials-one__inner {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  padding: 70px 60px 70px;
  max-width: 870px;
  width: 100%;
  border-radius: var(--trnspot-bdr-radius);
  z-index: 5;
}

.testimonials-one__inner .sec-title {
  padding-bottom: 32px;
}

.testimonials-one__inner-box {
  position: relative;
  display: block;
}

.testimonials-one__single {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: var(--trnspot-bdr-radius);
  padding: 45px 45px 37px;
  z-index: 1;
}

.testimonials-one__single-quote {
  position: absolute;
  right: 35px;
  bottom: 22px;
}

.testimonials-one__single-quote span::before {
  position: relative;
  display: inline-block;
  color: rgba(var(--trnspot-gray-rgb), .17);
  font-size: 40px;
  line-height: 40px;
}

.testimonials-one__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials-one__single-top-author {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-one__single-top-author .img-box {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  border: 2px solid var(--trnspot-base);
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-one__single-top-author .img-box img {
  width: 100%;
}

.testimonials-one__single-top-author .text-box {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.testimonials-one__single-top-author .text-box h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonials-one__single-top-author .text-box p {
  color: var(--trnspot-base);
  font-weight: 500;
  margin: 0;
}

.testimonials-one__single-text {
  position: relative;
  display: block;
  margin-top: 37px;
}

.testimonials-one__single-text p {
  margin: 0;
}

.testimonials-one__carousel.owl-theme .owl-nav {
  margin-top: 0px;
  position: absolute;
  top: -110px;
  right: -5px;
}

.testimonials-one__carousel.owl-carousel .owl-nav button.owl-prev,
.testimonials-one__carousel.owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: var(--trnspot-bdr-radius);
  background-color: var(--trnspot-white);
  color: var(--trnspot-black);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--trnspot-bdr-color);
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.testimonials-one__carousel.owl-carousel .owl-nav button.owl-prev::before,
.testimonials-one__carousel.owl-carousel .owl-nav button.owl-next::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: var(--trnspot-bdr-radius);
  background: var(--trnspot-base);
  transform: scale(0.7);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.03s;
  content: "";
  z-index: -1;
}

.testimonials-one__carousel.owl-carousel .owl-nav button.owl-prev:hover::before,
.testimonials-one__carousel.owl-carousel .owl-nav button.owl-next:hover::before {
  transform: scale(1);
  opacity: 1;
}

.testimonials-one__carousel.owl-carousel .owl-nav button.owl-prev:hover,
.testimonials-one__carousel.owl-carousel .owl-nav button.owl-next:hover {
  border-color: var(--trnspot-base);
  color: var(--trnspot-white);
  transition-delay: 0.2s;
}

.testimonials-one__carousel.owl-carousel .owl-nav button.owl-prev span::before,
.testimonials-one__carousel.owl-carousel .owl-nav button.owl-next span::before {
  font-weight: 700;
  line-height: 53px;
}

/*==============================================
Testimonial Two
===============================================*/
.testimonial-two {
  position: relative;
  display: block;
  padding: 90px 0px 90px;
  background: var(--trnspot-gray-bg);
  overflow: hidden;
  z-index: 1;
}

.testimonial-two__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.03;
  z-index: -1;
}

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

.testimonial-two__left .sec-title {
  padding-bottom: 22px;
}

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

.testimonial-two__reviews-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial-two__reviews-list li {
  position: relative;
  display: block;
}

.testimonial-two__reviews-list li + li {
  margin-left: -16px;
}

.testimonial-two__reviews-img {
  position: relative;
  display: block;
  max-width: 55px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-two__reviews-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--trnspot-base);
}

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

.testimonial-two__reviews-content .rating-box {
  position: relative;
  display: block;
}

.testimonial-two__reviews-content .odometer-formatting-mark {
  display: none;
}

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

.testimonial-two__reviews-count-box p {
  font-size: 17px;
  color: var(--trnspot-gray);
}

.testimonial-two__reviews-count-box span {
  font-size: 17px;
  color: var(--trnspot-gray);
}

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

.testimonial-two__single {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  border: 1px solid var(--trnspot-bdr-color);
  border-bottom: 3px solid var(--trnspot-base);
  padding: 30px 35px 32px;
  border-radius: var(--trnspot-bdr-radius);
  z-index: 1;
}

.testimonial-two__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonial-two__single-top .rating-box {
  position: relative;
  display: block;
}

.testimonial-two__single-top .icon-box {
  position: relative;
  display: block;
}

.testimonial-two__single-top .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 25px;
  line-height: 25px;
}

.testimonial-two__single-inner p {
  margin: 0;
}

.testimonial-two__single-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-two__single-bottom .img-box {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-two__single-bottom .img-box img {
  width: 100%;
}

.testimonial-two__single-bottom .author-info {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.testimonial-two__single-bottom .author-info h2 {
  font-size: 30px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-two__single-bottom .author-info p {
  margin: 0;
}

.testimonial-two__carousel.owl-theme .owl-nav {
  margin-top: 0px;
  position: absolute;
  bottom: -50px;
  left: -454px;
}

.testimonial-two__carousel.owl-carousel .owl-nav button.owl-prev,
.testimonial-two__carousel.owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: transparent;
  color: rgba(var(--trnspot-black-rgb), .70);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(var(--trnspot-black-rgb), .70);
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-two__carousel.owl-carousel .owl-nav button.owl-prev::before,
.testimonial-two__carousel.owl-carousel .owl-nav button.owl-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--trnspot-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;
}

.testimonial-two__carousel.owl-carousel .owl-nav button.owl-prev:hover::before,
.testimonial-two__carousel.owl-carousel .owl-nav button.owl-next:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.testimonial-two__carousel.owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-two__carousel.owl-carousel .owl-nav button.owl-next:hover {
  border-color: var(--trnspot-base);
  color: var(--trnspot-white);
}

.testimonial-two__carousel.owl-carousel .owl-nav button.owl-prev span::before,
.testimonial-two__carousel.owl-carousel .owl-nav button.owl-next span::before {
  font-weight: 700;
  line-height: 53px;
}

.testimonial-two--testimonial {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 120px 0px 90px;
}

.testimonial-two--testimonial .testimonial-two__single {
  margin-bottom: 30px;
}

/*==============================================
Project One
===============================================*/
.project-one {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  padding: 120px 0px 116px;
  z-index: 1;
}

.project-one .container-fluid {
  padding-right: var(--bs-gutter-x, 0rem);
  padding-left: var(--bs-gutter-x, 0rem);
}

.project-one__top {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.project-one__top-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.project-one__top-inner .sec-title {
  padding-bottom: 0px;
}

.project-one__top-btn {
  position: relative;
  display: block;
  line-height: 0px;
  top: -18px;
}

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

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

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

.project-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--trnspot-black);
}

.project-one__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.project-one__single:hover .project-one__single-img .inner img {
  opacity: 0.6;
  transform: scale(1);
}

.project-one__single-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--trnspot-white);
  padding: 108px 30px 32px;
  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: 5;
}

.project-one__single:hover .project-one__single-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__single-content::before {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  width: 2px;
  background: var(--trnspot-base);
  content: "";
  transition: -webkit-transform 2.0s ease;
  transition: transform 2.0s ease;
  transition: transform 2.0s ease, -webkit-transform 2.0s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

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

.project-one__single-content::after {
  position: absolute;
  left: 0px;
  bottom: 43px;
  right: 55%;
  height: 2px;
  background: var(--trnspot-base);
  content: "";
  transition: transform 2000ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

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

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

.project-one__single-content h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 700ms ease;
}

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

.project-one__single-content h2 a {
  color: var(--trnspot-black);
}

.project-one__single-content h2 a:hover {
  color: var(--trnspot-base);
}

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

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

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

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

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

.project-one__single-content .icon-box a:hover {
  background: var(--trnspot-base);
}

.project-one__single-content .icon-box a span {
  position: relative;
  display: block;
  line-height: 0px;
}

.project-one__single-content .icon-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
}


#project-one__pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 50px;
  z-index: 99999;
}

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

#project-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(var(--trnspot-base-rgb), 1.0);
}

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

#project-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  transform: scaleX(1.0);
  border: 1px solid rgba(var(--trnspot-base-rgb), 1.0);
}

#project-one__pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 17px;
}

.project-one--about {
  position: relative;
  display: block;
  background: var(--trnspot-white);
}

.project-one--project {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding-bottom: 90px;
}

.project-one--project-carousel {
  position: relative;
  display: block;
  background: var(--trnspot-white);
}

/*==============================================
    Counter One
===============================================*/
.counter-one {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 10px 0px 60px;
  z-index: 1;
}

.counter-one__single {
  position: relative;
  display: block;
  padding-top: 50px;
  margin-bottom: 30px;
}

.counter-one__single-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--trnspot-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  border: 2px solid rgba(var(--trnspot-gray-rgb), .15);
  margin: 0 auto;
  z-index: 5;
}

.counter-one__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 40px;
  line-height: 40px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-icon span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.counter-one__single-inner {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  border-radius: var(--trnspot-bdr-radius);
  border: 2px solid rgba(var(--trnspot-gray-rgb), .15);
  padding: 85px 10px 30px;
  border-bottom: 3px solid var(--trnspot-base);
}

.counter-one__single-content {
  position: relative;
  display: block;
  text-align: center;
}

.counter-one__single-content .count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-one__single-content .count-box h2 {
  color: var(--trnspot-black);
  font-size: 70px;
  line-height: 70px;
  font-weight: 500;
}

.counter-one__single-content .count-box .k {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
  font-size: 50px;
  line-height: 70px;
  font-weight: 500;
  margin-left: 2px;
  top: -3px;
}

.counter-one__single-content .count-box .plus {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
  font-size: 50px;
  line-height: 70px;
  font-weight: 500;
  margin-left: 1px;
  top: -6px;
}

.counter-one__single-content p {
  color: var(--trnspot-gray);
  font-size: 18px;
}

/*==============================================
    Team One
===============================================*/
.team-one {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  padding: 120px 0px 90px;
  z-index: 1;
}

.team-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.4;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: repeat;
  z-index: -1;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__single-img {
  position: relative;
  display: block;
  background: var(--trnspot-black);
  overflow: hidden;
  border-top-left-radius: var(--trnspot-bdr-radius);
  border-top-right-radius: var(--trnspot-bdr-radius);
}

.team-one__single-img img {
  width: 100%;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__single-img img {
  opacity: 0.5;
  transform: scaleX(1.05);
}

.team-one__social {
  position: absolute;
  bottom: 10px;
  right: 20px;
  z-index: 2;
}

.team-one__social span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: var(--trnspot-base);
  background-color: var(--trnspot-white);
  border-top: 2px solid var(--trnspot-base);
  border-radius: 0px;
  cursor: pointer;
}

.team-one__social ul {
  position: absolute;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  background: var(--trnspot-white);
  box-shadow: 0px 2px 10px 0px rgba(3, 4, 27, 0.08);
  flex-direction: column;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  overflow: hidden;
  z-index: 1;
}

.team-one__social:hover ul {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.team-one__social ul li {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.team-one__social ul li:last-child {
  margin-bottom: 0;
}

.team-one__social ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: var(--trnspot-gray);
  border-radius: 0px;
  background-color: var(--trnspot-gray-bg);
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.team-one__social ul li a:hover {
  color: var(--trnspot-white);
}

.team-one__social ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: var(--trnspot-base);
  content: "";
  opacity: 0;
  transform: scale(0.7);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-one__social ul li:hover a:before {
  opacity: 1;
  transform: scale(1);
  border-radius: 0%;
}

.team-one__single-content {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 15px 15px 15px;
  border-left: 3px solid var(--trnspot-base);
  border-bottom-left-radius: var(--trnspot-bdr-radius);
  border-bottom-right-radius: var(--trnspot-bdr-radius);
}

.team-one__single-content h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.team-one__single-content h2 a {
  color: var(--trnspot-black);
}

.team-one__single-content h2 a:hover {
  color: var(--trnspot-base);
}

.team-one__single-content p {
  color: var(--trnspot-base);
  font-weight: 500;
}


.team-one--team {
  position: relative;
  display: block;
  background: var(--trnspot-white);
}

.team-one--team .team-one__single-content {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

#team-one__pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 50px;
  margin-bottom: 20px;
  z-index: 99999;
}

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

#team-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(var(--trnspot-base-rgb), 1.0);
}

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

#team-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  transform: scaleX(1.0);
  border: 1px solid rgba(var(--trnspot-base-rgb), 1.0);
}

#team-one__pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 17px;
}


/*==============================================
    Team Two
===============================================*/
.team-two {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 0px 0px 90px;
  z-index: 1;
}

.team-two__single {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
  padding: 48px 0px 40px;
  border-radius: var(--trnspot-bdr-radius);
}

.team-two__single-img {
  position: relative;
  display: block;
  z-index: 1;
}

.team-two__single-img::before {
  position: absolute;
  top: -4px;
  left: 0;
  right: 0px;
  width: 158px;
  height: 158px;
  background: var(--trnspot-base);
  border-radius: 50%;
  transition: all 500ms ease;
  margin: 0 auto;
  content: "";
  z-index: -1;
}

.team-two__single-img::after {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0px;
  width: 166px;
  height: 166px;
  background: var(--trnspot-base);
  border-radius: 50%;
  transition: all 500ms ease;
  margin: 0 auto;
  content: "";
  opacity: 0.5;
  z-index: -2;
}

.team-two__single-img-inner {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--trnspot-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  margin: 0 auto;
  overflow: hidden;
}

.team-two__single-img-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .05s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  background: rgba(var(--trnspot-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-two__single:hover .team-two__single-img-inner:before {
  opacity: 1;
}

.team-two__single-img-inner img {
  width: 100%;
  border-radius: 50%;
  transition: .7s ease;
  transform: scale(1.0);
}

.team-two__single:hover .team-two__single-img-inner img {
  transform: scale(1.06);
}

.team-two__single-content {
  position: relative;
  display: block;
  margin-top: 32px;
}

.team-two__single-content h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.team-two__single-content h2 a {
  color: var(--trnspot-black);
}

.team-two__single-content h2 a:hover {
  color: var(--trnspot-base);
}

.team-two__single-content p {
  color: var(--trnspot-base);
  font-weight: 500;
}

.team-two__single-content .social-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 17px;
}

.team-two__single-content .social-links li {
  position: relative;
  display: block;
}

.team-two__single-content .social-links li + li {
  margin-left: 7px;
}

.team-two__single-content .social-links li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trnspot-base);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--trnspot-gray-bg);
  z-index: 1;
}

.team-two__single-content .social-links li a:hover {
  color: var(--trnspot-white);
}

.team-two__single-content .social-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--trnspot-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;
}

.team-two__single-content .social-links li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.team-two__single-content .social-links li a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

.team-two--about {
  padding-top: 120px;
}

.team-two--team {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding-top: 120px;
}


/*==============================================
    Team Three
===============================================*/
.team-one--three {
  position: relative;
  display: block;
  background: var(--trnspot-white);
}

.team-one--three .team-one__single {
  box-shadow: 0 0 49px rgba(0, 0, 0, 0.1);
}

/***
=============================================
Why Choose One
=============================================
***/
.why-choose-one {
  position: relative;
  display: block;
  background: var(--trnspot-black);
  padding: 120px 0px 120px;
  z-index: 2;
}

.why-choose-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.1;
  text-align: center;
  z-index: -1;
}

.why-choose-one .shape1 {
  position: absolute;
  right: 340px;
  bottom: -80px;
  z-index: -1;
}

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

.why-choose-one__content .sec-title {
  padding-bottom: 28px;
}

.why-choose-one__content .sec-title__tagline .text h4 {
  color: var(--trnspot-white);
}

.why-choose-one__content .sec-title__title {
  color: var(--trnspot-white);
}

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

.why-choose-one__content-list ul {
  position: relative;
  display: block;
}

.why-choose-one__content-list ul li {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.why-choose-one__content-list ul li:last-child {
  margin-bottom: 0px;
}

.why-choose-one__content-list ul li p {
  color: var(--trnspot-white);
}

.why-choose-one__content-list ul li p span {
  position: relative;
  display: inline-block;
  line-height: 0;
  margin-right: 4px;
  top: 1px;
}

.why-choose-one__content-list ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 17px;
}

.why-choose-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 42px;
}

.why-choose-one__content .btn-box .thm-btn:hover {
  color: var(--trnspot-black);
}

.why-choose-one__content .btn-box .hover-btn {
  background-color: var(--trnspot-white);
}

.why-choose-one__form-box {
  position: relative;
  display: block;
  max-width: 580px;
  width: 100%;
  float: right;
  margin-top: -180px;
  background: var(--trnspot-white);
  padding: 54px 60px 60px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  border-radius: var(--trnspot-bdr-radius);
  z-index: 2;
}

.why-choose-one__form-box .title-box {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.why-choose-one__form-box .title-box h2 {
  font-size: 45px;
  line-height: 1em;
  font-weight: 500;
}

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

.why-choose-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.why-choose-one__form .input-box .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.why-choose-one__form .input-box .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
}

.why-choose-one__form .input-box input[type="text"],
.why-choose-one__form .input-box input[type="email"] {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background-color: var(--trnspot-white);
  border: 1px solid rgba(var(--trnspot-black-rgb), .15);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--trnspot-gray);
  border-radius: var(--trnspot-bdr-radius);
  font-family: var(--trnspot-font);
}

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

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

.ui-datepicker td a {
  color: #000000 !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 #333333 !important;
  background: #333333 !important;
  color: #ffffff !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;
  background: var(--thm-trnspot);
  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(--trnspot-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: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}

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

#ptTimeSelectCntr .ui-widget {
  font-family: var(--trnspot-font);
}

.why-choose-one__form .input-box .select-box {
  width: 100%;
}

.why-choose-one__form .input-box .nice-select {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background-color: var(--trnspot-white);
  border: 1px solid rgba(var(--trnspot-black-rgb), .15);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 15px;
  line-height: 48px;
  font-weight: 400;
  color: var(--trnspot-gray);
  border-radius: var(--trnspot-bdr-radius);
  font-family: var(--trnspot-font);
  float: none;
}

.why-choose-one__form .input-box .nice-select:after {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--trnspot-base);
  border-right: 1px solid var(--trnspot-base);
  margin-top: 0px;
  z-index: 10;
}

.why-choose-one__form .input-box .nice-select .option {
  color: var(--trnspot-white);
}

.why-choose-one__form .input-box .nice-select .option:hover,
.why-choose-one__form .input-box .nice-select .option.focus,
.why-choose-one__form .input-box .nice-select .option.selected.focus {
  color: #ffffff;
  background-color: var(--trnspot-black);
}

.why-choose-one__form-distance {
  position: relative;
  display: block;
  margin-bottom: 35px;
  margin-top: -7px;
}

.why-choose-one__form-distance .title {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.why-choose-one__form-distance .title p {
  color: var(--trnspot-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
}

.why-choose-one__form-distance-inner {
  position: relative;
  display: block;
  max-width: 460px;
  width: 100%;
}

.why-choose-one__form-distance-inner .price-ranger {
  position: relative;
  display: block;
}

.why-choose-one__form-distance-inner .ui-widget-content {
  background: #e4e4e4;
  border: none;
  height: 5px;
}

.why-choose-one__form-distance-inner .ui-slider-handle {
  position: relative;
  display: inline-block;
  background: var(--trnspot-base) none repeat scroll 0 0;
  border: 0px solid #ffffff;
  border-radius: 50%;
  width: 15px !important;
  height: 15px;
  margin-left: -5px;
  outline: medium none;
  cursor: pointer;
}

.why-choose-one__form-distance-inner .ui-slider-handle::before {
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  background: var(--trnspot-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  content: "";
}

.why-choose-one__form-distance-inner .ui-slider-horizontal .ui-slider-handle {
  top: -16px;
}

.why-choose-one__form-distance-inner .ui-slider .ui-slider-range {
  position: relative;
  display: block;
  background: var(--trnspot-base);
  width: 100%;
  height: 5px;
}

.why-choose-one__form-distance-inner #slider-range {
  margin-left: 3px;
  margin-right: 5px;
  margin-top: 0;
  max-width: 315px;
  width: 100%;
}

.why-choose-one__form-distance-inner .ranger-min-max-block {
  position: absolute;
  top: -22px;
  right: 0;
  width: 125px;
  height: 50px;
  border: 1px solid rgba(var(--trnspot-black-rgb), .15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--trnspot-bdr-radius);
}

.why-choose-one__form-distance-inner .ranger-min-max-block input {
  display: inline-block;
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  width: 100%;
  color: var(--logisitq-white);
  text-align: center;
  padding: 8px 0 7px;
  border: 1px solid var(--logisitq-white);
  background: var(--logisitq-white);
  cursor: pointer;
  margin-top: 7px;
  margin-bottom: 8px;
  font-family: var(--trnspot-base);
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="submit"]:hover {}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="text"] {
  border: medium none;
  color: var(--trnspot-gray);
  font-size: 15px;
  font-weight: 400;
  outline: medium none;
  text-align: center;
  width: 100%;
  margin-left: -13px;
  z-index: -1;
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type='text'].max {}

.why-choose-one__form-distance-inner .ranger-min-max-block span {
  color: var(--trnspot-gray);
  font-size: 15px;
  line-height: 26px;
  font-weight: 300;
  margin-left: -21px;
}

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


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

.faq-one__img {
  position: relative;
  display: block;
  margin-right: 70px;
  margin-top: 10px;
  margin-left: -66px;
}

.faq-one__img1 {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-one__img1::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border-radius: 50%;
  background: var(--trnspot-base);
  content: "";
  z-index: -1;
}

.faq-one__img1::after {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  border-radius: 50%;
  background: var(--trnspot-base);
  opacity: 0.5;
  content: "";
  z-index: -1;
}

.faq-one__customer {
  position: absolute;
  top: 0;
  left: 0;
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--trnspot-white);
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  margin-left: -40px;
  margin-right: 95px;
  border-radius: 50%;
  border: 2px solid var(--trnspot-base);
  overflow: hidden;
  text-align: center;
  animation: topBottom 3s ease-in-out infinite;
  z-index: 5;
}

.faq-one__customer .count-text-box {
  position: relative;
  display: block;
}

.faq-one__customer .count-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-one__customer .count-number h3 {
  font-size: 55px;
  line-height: 1em;
  font-weight: 500;
}

.faq-one__customer .count-number span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
  font-size: 48px;
  line-height: 1em;
  font-weight: 500;
  top: -3px;
}

.faq-one__customer h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin-top: 0px;
}

.faq-one__img1-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.faq-one__img1-inner img {
  width: 100%;
}

.faq-one__reviews {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--trnspot-white);
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px solid var(--trnspot-base);
  padding: 18px 0px 12px;
  width: 200px;
  text-align: center;
  animation: leftRight 3s ease-in-out infinite;
  z-index: 5;
}

.faq-one__reviews .rating-box {
  position: relative;
  display: block;
}

.faq-one__reviews .count-text-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-one__reviews .count-text-box .count-number {
  position: relative;
  display: block;
}

.faq-one__reviews .count-text-box .count-number h4 {
  font-size: 26px;
  line-height: 36px;
}

.faq-one__reviews .count-text-box h4 {
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 36px;
  margin-left: 5px;
}

.faq-one__content {
  position: relative;
  display: block;
}

.faq-one__content .sec-title {
  padding-bottom: 32px;
}

.faq-one__content-faq {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-one-accrodion {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 0px 35px 0px;
}

.faq-one-accrodion .accrodion.active {
  padding-bottom: 25px;
}

.faq-one__content-faq .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 10px;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 19px 0px 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h4 {
  position: relative;
  color: var(--trnspot-black);
  font-size: 23px;
  font-weight: 500;
  line-height: 33px;
  text-transform: capitalize;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--trnspot-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  position: absolute;
  color: var(--trnspot-black);
  font-size: 15px;
  line-height: 15px;
  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: "\e949";
  font-family: 'icomoon' !important;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\e946";
  color: var(--trnspot-base);
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  display: block;
  padding: 21px 30px 20px;
  background: rgba(var(--trnspot-white-rgb), 1.0);
  margin-top: 0px;
  margin-bottom: 0px;
}

.faq-one-accrodion .accrodion-content p {
  color: var(--trnspot-gray);
  margin: 0;
}


/***
=============================================
Working Process One
=============================================
***/
.working-process-one {
  position: relative;
  display: block;
  padding: 120px 0px 82px;
  z-index: 1;
}

.working-process-one .shape2 {
  position: absolute;
  top: -30px;
  right: 0px;
  z-index: -1;
}

.working-process-one .container {
  position: relative;
}

.working-process-one .row {
  --bs-gutter-x: 70px;
}

.working-process-one .shape1 {
  position: absolute;
  top: 211px;
  left: 115px;
  right: 115px;
  border: 1px dashed var(--trnspot-bdr-color);
  z-index: -1;
}

.working-process-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.working-process-one__single-icon {
  position: relative;
  display: block;
  max-width: 110px;
  width: 100%;
  margin: 0 auto 24px;
}

.working-process-one__single-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background: rgba(var(--trnspot-base-rgb), .60);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  padding: 5px 5px 5px;
  margin: 0 auto;
}

.working-process-one__single-icon-box .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--trnspot-base);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  width: 100%;
  height: 100%;
}

.working-process-one__single-icon-box .inner span:before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 50px;
  line-height: 50px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.working-process-one__single:hover .working-process-one__single-icon-box .inner span:before {
  transform: scale(0.9);
}

.working-process-one__single-count {
  position: absolute;
  top: 5px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: rgba(var(--trnspot-black-rgb), .60);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 3px 3px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  z-index: 5;
}

.working-process-one__single-count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--trnspot-black);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  width: 100%;
  height: 100%;
  color: var(--trnspot-white);
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
}

.working-process-one__single .content-box {
  position: relative;
  display: block;
  text-align: center;
}

.working-process-one__single .content-box h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.working-process-one__single .content-box h2 a {
  color: var(--trnspot-black);
}

.working-process-one__single .content-box h2 a:hover {
  color: var(--trnspot-base);
}

.working-process-one__single .content-box p {
  margin: 0;
}

.working-process-one__single .plane-icon {
  position: absolute;
  top: 37px;
  right: -63px;
}

.working-process-one__single .plane-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 35px;
  line-height: 35px;
  transform: rotate(90deg);
}

/***
=============================================
Working Process Two
=============================================
***/
.working-process-one--two {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
}

.working-process-one--two .shape1 {
  border: 1px dashed var(--trnspot-base);
  opacity: 0.3;
}

/*==============================================
    Blog One
===============================================*/
.blog-one {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

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

.blog-one__single-img .inner {
  position: relative;
  display: block;
  border-top-left-radius: var(--trnspot-bdr-radius);
  border-top-right-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
}

.blog-one__single-img .inner 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-one__single:hover .blog-one__single-img .inner img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.blog-one__single:hover .blog-one__single-img .inner 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-one__single-img .inner 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;
}

.blog-one__single-img .date-box {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--trnspot-base);
  border-radius: 5px;
  z-index: 5;
}

.blog-one__single-img .date-box:before {
  position: absolute;
  top: -5px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 3px;
  background: var(--trnspot-base);
  border-radius: 10px;
  content: "";
}

.blog-one__single-img .date-box h2 {
  color: var(--trnspot-white);
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.blog-one__single-img .date-box p {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 17px;
  line-height: 17px;
  margin-right: 2px;
}

.blog-one__single-content {
  position: relative;
  display: block;
  padding: 28px 30px 27px;
  background: var(--trnspot-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  border-bottom-left-radius: var(--trnspot-bdr-radius);
  border-bottom-right-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
}

.blog-one__single-content .meta-box {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__single-content .meta-box li {
  position: relative;
  display: block;
  margin-right: 20px;
}

.blog-one__single-content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-one__single-content .meta-box li p {
  font-size: 19px;
  line-height: 22px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--trnspot-font-two);
}

.blog-one__single-content .meta-box li p span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 18px;
  line-height: 18px;
  top: 2px;
  margin-right: 4px;
}

.blog-one__single-content .meta-box li p a {
  color: var(--trnspot-gray);
}

.blog-one__single-content .meta-box li p a:hover {
  color: var(--trnspot-base);
}

.blog-one__single-content h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 13px;
}

.blog-one__single-content h2 a {
  color: var(--trnspot-black);
}

.blog-one__single-content h2 a:hover {
  color: var(--trnspot-base);
}

.blog-one__single-content p {
  margin: 0;
}

.blog-one__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.blog-one__single-content .btn-box a {
  color: var(--trnspot-base);
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--trnspot-font-two);
}

.blog-one__single-content .btn-box a span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  margin-left: 2px;
}

/*==============================================
    Blog Two
===============================================*/
.blog-one--blog-two {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-one--blog-two .blog-one__single-img .inner {
  border-radius: var(--trnspot-bdr-radius);
}

.blog-one--blog-two .blog-one__single-content {
  margin-left: 25px;
  margin-top: -130px;
  border-radius: var(--trnspot-bdr-radius);
  z-index: 55;
  border-bottom: 3px solid var(--trnspot-base);
}

/*==============================================
    Blog One Blog
===============================================*/
.blog-one--blog {
  position: relative;
  display: block;
  padding-bottom: 120px;
  z-index: 1;
}

.blog-one--blog .blog-one__single {
  margin-bottom: 50px;
}

.blog-one--blog .styled-pagination {
  padding-top: 20px;
}

/*==============================================
    Blog Two Blog
===============================================*/
.blog-one--blog-two-blog {
  poistion: relative;
  display: block;
  padding-bottom: 120px;
  z-index: 1;
}

.blog-one--blog-two-blog .blog-one__single {
  margin-bottom: 50px;
}

.blog-one--blog-two-blog .styled-pagination {
  padding-top: 20px;
}

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

.site-footer .shape1 {
  position: absolute;
  bottom: 90px;
  right: -35px;
  z-index: -1;
}

.site-footer__bg {
  position: absolute;
  top: 60px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--trnspot-black);
  background-blend-mode: luminosity;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

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

.site-footer__newsletter {
  position: relative;
  display: block;
  z-index: 5;
}

.site-footer__newsletter-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--trnspot-base);
  border-radius: var(--trnspot-bdr-radius);
  padding: 43px 45px 37px;
}

.site-footer__newsletter-title {
  position: relative;
  display: block;
}

.site-footer__newsletter-title h2 {
  color: var(--trnspot-white);
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
}

.site-footer__newsletter-form-box {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
}

.site-footer__newsletter-form {
  position: relative;
  display: block;
}

.site-footer__newsletter-form-input {
  position: relative;
  display: block;
}

.site-footer__newsletter-form-input input[type="email"] {
  font-size: 16px;
  color: var(--trnspot-gray);
  font-weight: 400;
  height: 60px;
  width: 100%;
  background: var(--trnspot-white);
  border: 0px solid rgba(var(--trnspot-white-rgb), 0.1);
  border-radius: var(--trnspot-bdr-radius);
  outline: none;
  padding: 0 25px 0;
  padding-right: 180px;
}

.site-footer__newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.site-footer__newsletter-form button.thm-btn {
  background: var(--trnspot-black);
  color: var(--trnspot-white);
}

.site-footer__newsletter-form button.thm-btn:hover {
  color: var(--trnspot-white);
}

.site-footer__newsletter-form button.thm-btn .hover-btn {
  background-color: var(--trnspot-black);
}


.site-footer__top {
  position: relative;
  display: block;
  padding: 120px 0px 10px;
  z-index: 5;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: -2px;
  z-index: 1;
}

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

.site-footer__logo a {
  position: relative;
  display: inline-block;
}

.site-footer__logo a img {
  width: 100%;
}

.footer-widget__about-text {
  position: relative;
  display: block;
  margin-top: 30px;
}

.footer-widget__about-text p {
  color: rgba(var(--trnspot-white-rgb), 0.80);
}

.footer-widget__about-apps {
  position: relative;
  display: block;
  margin-top: 30px;
}

.footer-widget__about-apps .title {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.footer-widget__about-apps .title h3 {
  color: rgba(var(--trnspot-white-rgb), 0.90);
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
}

.footer-widget__about-apps-box {
  position: relative;
  display: block;
}

.footer-widget__about-apps-box a {
  position: relative;
  display: inline-block;
}

.footer-widget__about-apps-box a + a {
  margin-left: 13px;
}

.footer-widget__about-apps-box a img {
  width: 100%;
}


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

.footer-widget__single .title-box {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 26px;
}

.footer-widget__single .title-box h2 {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  margin-bottom: 6px;
  padding-right: 40px;
}

.footer-widget__single .title-box h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0px;
  font-family: 'icomoon' !important;
  content: "\e97e";
  color: var(--trnspot-base);
  font-size: 20px;
  line-height: 20px;
}

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

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

.footer-widget__services-list li {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.footer-widget__services-list li:last-child {
  margin-bottom: 0px;
}

.footer-widget__services-list li a {
  color: rgba(var(--trnspot-white-rgb), 0.80);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

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

.footer-widget__services-list li a span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  top: 1px;
}


.footer-widget__services.quick-links {
  position: relative;
  display: block;
}


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

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

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 26px;
}

.footer-widget__contact-list li:last-child {
  margin-bottom: 0px;
}

.footer-widget__contact-list li .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(var(--trnspot-white-rgb), 0.25);
  border-radius: 6px;
  top: 6px;
}

.footer-widget__contact-list li .icon-box span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 15px;
  line-height: 15px;
}

.footer-widget__contact-list li .text-box {
  position: relative;
  display: block;
  margin-left: 12px;
}

.footer-widget__contact-list li .text-box p {
  color: rgba(var(--trnspot-white-rgb), 0.80);
}

.footer-widget__contact-list li .text-box p a {
  color: var(--trnspot-white);
}

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

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--trnspot-white-rgb), 0.10);
  z-index: 5;
}

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

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

.site-footer__copyright p {
  color: var(--trnspot-white);
}

.site-footer__copyright p a {
  color: var(--trnspot-white);
}

.site-footer__copyright p a:hover {
  color: var(--trnspot-base);
}

.site-footer__social-link-style1 {
  position: relative;
  display: block;
}

.site-footer__social-link-style1 {
  position: relative;
  display: block;
}

.site-footer__social-link-style1 ul {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__social-link-style1 ul li {
  position: relative;
  display: block;
}

.site-footer__social-link-style1 ul li + li {
  margin-left: 10px;
}

.site-footer__social-link-style1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(var(--trnspot-white-rgb), 0.2);
  color: var(--trnspot-white);
  border-radius: 50%;
  overflow: hidden;
}

.site-footer__social-link-style1 ul li a:hover {
  color: var(--trnspot-white);
  background-color: var(--trnspot-primary);
}

.site-footer__social-link-style1 ul li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--trnspot-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);
  border-radius: 50%;
  z-index: -1;
}

.site-footer__social-link-style1 ul li a:hover::before {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social-link-style1 ul li a span {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

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

.site-footer__bottom-menu li {
  position: relative;
  display: block;
  padding-left: 25px;
  padding-right: 30px;
}

.site-footer__bottom-menu li:first-child {
  padding-left: 0px;
}

.site-footer__bottom-menu li:last-child {
  padding-right: 0px;
}

.site-footer__bottom-menu li::before {
  position: absolute;
  top: 9px;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--trnspot-white);
  border-radius: 50%;
  content: "";
}

.site-footer__bottom-menu li:last-child::before {
  display: none;
}

.site-footer__bottom-menu li a {
  color: var(--trnspot-white);
  font-size: 16px;
  line-height: 26px;
}

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

/***
=============================================
    Pricing Plan One
=============================================
***/
.pricing-plan-one {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 120px 0px 90px;
  z-index: 1;
}

.pricing-plan-one__single {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  padding: 40px 30px 50px;
  border-radius: var(--trnspot-bdr-radius);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 500ms ease;
  transition-delay: 0.3s;
  z-index: 1;
}

.pricing-plan-one__single::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: var(--trnspot-base);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
  content: "";
  z-index: -1;
}

.pricing-plan-one__single::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 255px;
  background: rgba(var(--trnspot-base-rgb), .50);
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
  content: "";
  z-index: -1;
}

.pricing-plan-one__single .table-header {
  position: relative;
  display: block;
  z-index: 5;
}

.pricing-plan-one__single .table-header .icon-box {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.pricing-plan-one__single .table-header .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 55px;
  line-height: 55px;
  transition: all 500ms ease;
}

.pricing-plan-one__single:hover .table-header .icon-box span:before {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.pricing-plan-one__single .table-header h3 {
  color: var(--trnspot-white);
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  z-index: 1;
}

.pricing-plan-one__single .table-header h2 {
  color: var(--trnspot-white);
  font-size: 50px;
  line-height: 1em;
  font-weight: 600;
  margin-top: 5px;
  z-index: 5;
}

.pricing-plan-one__single .table-header h2 span {
  color: var(--trnspot-white);
  font-size: 20px;
}

.pricing-plan-one__single .table-content {
  position: relative;
  display: block;
  margin-top: 87px;
  z-index: 5;
}

.pricing-plan-one__single .table-content ul {
  position: relative;
  display: block;
}

.pricing-plan-one__single .table-content ul li {
  position: relative;
  display: block;
}

.pricing-plan-one__single .table-content ul li + li {
  margin-top: 10px;
}

.pricing-plan-one__single .table-content ul li p {
  margin: 0;
}

.pricing-plan-one__single .table-content ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  padding-right: 4px;
  top: 1px;
}

.pricing-plan-one__single .table-footer {
  position: relative;
  display: block;
  margin-top: 39px;
  line-height: 0px;
  text-align: center;
  z-index: 5;
}

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

.project-two .container {
  max-width: 1800px;
}

.project-two .row {
  --bs-gutter-x: 10px;
}

.project-two__top {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.project-two__top .container {
  max-width: 1320px;
}

.project-two__top-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.project-two__top .sec-title {
  padding-bottom: 0px;
}

.project-two__top-btn {
  position: relative;
  display: block;
  line-height: 0px;
  top: -18px;
}

.project-two__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.project-two__single-img {
  position: relative;
  display: block;
}

.project-two__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--trnspot-black);
  border-radius: var(--trnspot-bdr-radius);
}

.project-two__single-img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.project-two__single:hover .project-two__single-img-inner img {
  transform: scale(1);
  opacity: 0.4;
}

.project-two__single-content {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--trnspot-white);
  border-radius: var(--trnspot-bdr-radius);
  border: 2px solid rgba(var(--trnspot-base-rgb), .70);
  text-align: center;
  overflow: hidden;
  -webkit-transform: perspective(400px) rotateX(50deg) scaleY(0.6);
  -ms-transform: perspective(400px) rotateX(50deg) scaleY(0.6);
  transform: perspective(400px) rotateX(50deg) scaleY(0.6);
  -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;
  opacity: 0;
  z-index: 5;
}

.project-two__single:hover .project-two__single-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;
  opacity: 1;
}

.project-two__single-icon {
  position: relative;
  display: block;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
  z-index: 2;
}

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

.project-two__single-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trnspot-white);
  width: 45px;
  height: 45px;
  background: var(--trnspot-black);
  border-radius: 50%;
}

.project-two__single-icon a:hover {
  background: var(--trnspot-base);
}

.project-two__single-icon span {
  position: relative;
  display: block;
  line-height: 0px;
}

.project-two__single-icon span:before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
}

.project-two__single-text {
  position: relative;
  display: block;
}

.project-two__single-text h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 700ms ease;
}

.project-two__single:hover .project-two__single-text h2 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}

.project-two__single-text a {
  color: var(--trnspot-black);
}

.project-two__single-text a:hover {
  color: var(--trnspot-base);
}

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

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






/***
=============================================
Quote One
=============================================
***/
.quote-one {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 120px 0px 0px;
  z-index: 1;
}

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

.quote-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--trnspot-black-rgb), .70);
  content: "";
}

.quote-one .sec-title__title {
  color: var(--trnspot-white);
}

.quote-one .quote-tab {
  position: relative;
  display: block;
  background: var(--trnspot-black);
  padding: 60px 60px 60px;
  border: 1px solid rgba(var(--trnspot-white-rgb), .10);
  border-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
}

.quote-tab__button {
  position: relative;
  display: block;
  margin-bottom: 41px;
  z-index: 1;
}

.quote-tab__button ul {
  display: flex;
  gap: 15px;
}

.quote-tab__button ul li {
  border-radius: 5px;
}

.quote-tab__button .tabs-button-box {
  position: relative;
}

.quote-tab__button .tabs-button-box .tab-btn-item {
  position: relative;
  display: block;
  width: 190px;
  background-color: var(--trnspot-white);
  float: left;
  text-align: center;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.quote-tab__button .tabs-button-box .tab-btn-item.active-btn-item,
.quote-tab__button .tabs-button-box .tab-btn-item:hover {
  background-color: var(--trnspot-base);
}

.quote-tab__button-inner {
  position: relative;
  display: block;
}

.quote-tab__button-inner h3 {
  position: relative;
  display: block;
  padding: 15px 0;
  color: var(--trnspot-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.quote-tab__button .tabs-button-box .active-btn-item .quote-tab__button-inner h3 {
  color: var(--trnspot-white);
}

.quote-tab__button .tabs-button-box .tab-btn-item:hover .quote-tab__button-inner h3,
.quote-tab__button .tabs-button-box .tab-btn-item.active-btn-item .quote-tab__button-inner h3 {
  color: var(--trnspot-white);
}

.tabs-content-box {
  position: relative;
  display: block;
}

.quote-one .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.quote-one .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.quote-one .tab-content-box-item .quote-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top bottom;
}

.quote-one .tab-content-box-item.tab-content-box-item-active .quote-tab-content-box-item {
  opacity: 1.0;
  transform: scaleY(1);
  transform-origin: bottom top;
}

.tab-content-box-item-img {
  position: absolute;
  top: -161px;
  right: -60px;
  bottom: -60px;
  width: 390px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.quote-tab-content-box-item .quotes-wrapper {
  position: relative;
  display: block;
  max-width: 810px;
  width: 100%;
}

.quote-tab-content-box-item .quotes-wrapper-inner {
  position: relative;
  display: block;
}

.quote-tab-content-box-item .quotes-wrapper-inner .title-box {
  position: relative;
  display: block;
  margin-bottom: 41px;
}

.quote-tab-content-box-item .quotes-wrapper-inner .title-box h2 {
  color: var(--trnspot-white);
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  text-transform: capitalize;
}

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

.quote-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.quote-one__form .input-box label {
  color: var(--trnspot-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

.quote-one__form .input-box input[type="text"],
.quote-one__form .input-box input[type="email"],
.quote-one__form .input-box input[type="number"] {
  position: relative;
  display: block;
  height: 55px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--trnspot-white-rgb), .20);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--trnspot-white-rgb), .40);
  border-radius: 5px;
  font-family: var(--trnspot-font);
}

.quote-one__form .input-box .select-box {
  width: 100%;
}

.quote-one__form .input-box .nice-select {
  position: relative;
  display: block;
  height: 55px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--trnspot-white-rgb), .20);
  color: rgba(var(--trnspot-white-rgb), .40);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--trnspot-white-rgb), .40);
  border-radius: 3px;
  font-family: var(--trnspot-font);
  float: none;
}

.quote-one__form .input-box .nice-select:after {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid rgba(var(--trnspot-white-rgb), .40);
  border-right: 1px solid rgba(var(--trnspot-white-rgb), .40);
  margin-top: 0px;
  z-index: 10;
}

.quote-one__form .input-box .nice-select .option {
  color: var(--trnspot-white);
}

.quote-one__form .nice-select .option:hover,
.quote-one__form .nice-select .option.focus,
.quote-one__form .nice-select .option.selected.focus {
  color: #ffffff;
  background-color: var(--trnspot-black);
}

.quote-redio-box {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.quote-redio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.custom-rario {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}

.custom-rario input[type="radio"] {
  display: none;
}

.custom-rario .radio-dot {
  position: absolute;
  left: 0;
  top: 0px;
  height: 25px;
  width: 25px;
  border-radius: 3px;
  border: 1px solid rgba(var(--trnspot-white-rgb), .40);
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.custom-rario .radio-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--trnspot-white);
  margin-left: 40px;
}

.custom-rario .radio-dot::after {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 3px;
  background-color: var(--trnspot-base);
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s ease-in-out 0s;
}

.custom-rario input[type="radio"]:checked ~ .radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}

.custom-rario input[type="radio"]:checked ~ .radio-dot {
  border-color: var(--trnspot-base);
}

.custom-rario input[type="radio"]:checked ~ .radio-text {
  color: var(--trnspot-white);
}

.quote-two__btn {
  position: relative;
  display: block;
  margin-top: 39px;
}

.quote-two__btn .thm-btn {
  width: 100%;
}

.quote-two__btn .thm-btn .hover-btn {
  background-color: var(--trnspot-white);
}

.quote-two__btn .thm-btn:hover {
  color: var(--trnspot-black);
}


/***
=============================================
Brand One
=============================================
***/
.brand-one {
  position: relative;
  display: block;
  margin-top: -80px;
  z-index: 2;
}

.brand-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 90px;
  background-attachment: scroll;
  background-repeat: repeat;
  background-position: center center;
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  opacity: 0.08;
  z-index: 1;
}

.brand-one::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 90px;
  background: var(--trnspot-black);
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  content: "";
  z-index: -1;
}

.brand-one::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 83px;
  background: var(--trnspot-black);
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  opacity: 0.3;
  content: "";
  z-index: -2;
}

.brand-one__inner {
  position: relative;
  display: block;
  padding: 60px 0px 60px;
  z-index: 1;
}

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

.brand-one__single-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.brand-one__single-inner a {
  position: relative;
  display: block;
  z-index: 5;
}

.brand-one__single-inner a img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateY(50%) scaleY(2);
  transform: translateY(50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.brand-one__single:hover .brand-one__single-inner a img:first-child {
  -webkit-transform: translateY(0) scaleY(1);
  transform: translateY(0) scaleY(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.brand-one__single:hover .brand-one__single-inner a img:nth-child(2) {
  -webkit-transform: translateY(-50%) scaleY(2);
  transform: translateY(-50%) scaleY(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.brand-one__single-inner a img {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

.brand-one__carousel.owl-carousel .owl-item img {
  width: 100%;
  cursor: pointer;
}

/*==============================================
    Office Location
===============================================*/
.office-location {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  background-color: var(--trnspot-black);
  overflow: hidden;
  z-index: 2;
}

.office-location::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -300px;
  opacity: 0.80;
  content: "";
  background: rgb(14, 18, 29);
  background: linear-gradient(-120deg, rgba(14, 18, 29, 0.90) 10%, rgba(255, 94, 20, 0.7) 30%, rgba(14, 18, 29, 0.9) 50%);
}

.office-location__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 60px;
}

.office-location__top-left {
  position: relative;
  display: block;
}

.office-location__top-left .sec-title {
  padding-bottom: 0px;
}

.office-location__top-left .sec-title__title {
  color: var(--trnspot-white);
}

.office-location__top-right {
  position: relative;
  display: block;
}

.office-location__top-right p {
  color: var(--trnspot-white);
  margin: 0;
}

.office-location__top-right .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 43px;
  top: -18px;
}

.office-location__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.office-location__location {
  position: relative;
  display: block;
  max-width: 1030px;
  min-height: 470px;
  margin: 0 auto 0;
  z-index: 1;
}

.office-location__map {
  position: absolute;
  top: 35px;
  left: 25px;
  opacity: .15;
  z-index: -1;
}

.office-location__map img {
  width: auto;
}

.office-location__location-single.style1 {
  position: absolute;
  top: 115px;
  left: 40px;
}

.office-location__location-single.style2 {
  position: absolute;
  top: 60px;
  left: 360px;
}

.office-location__location-single.style3 {
  position: absolute;
  top: 150px;
  left: 570px;
}

.office-location__location-single.style4 {
  position: absolute;
  left: 315px;
  bottom: 150px;
}

.office-location__location-single.style5 {
  position: absolute;
  left: 545px;
  bottom: 145px;
}

.office-location__location-single.style6 {
  position: absolute;
  top: 160px;
  right: 265px;
}

.office-location__location-single.style7 {
  position: absolute;
  right: 240px;
  bottom: 185px;
}

.office-location__location-single.style8 {
  position: absolute;
  top: 115px;
  right: 25px;
}

.office-location__location-single .round-box {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: var(--trnspot-base);
  border-radius: 50%;
  cursor: pointer;
}

.office-location__location-single .round-box::before,
.office-location__location-single .round-box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: transparent;
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.office-location__location-single .round-box::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.office-location__location-single .round-box .bdr {
  position: absolute;
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--trnspot-base);
  border-radius: 50%;
  content: "";
}

.office-location__location-single .content-box {
  position: absolute;
  top: 55px;
  left: -100%;
  background: var(--trnspot-white);
  padding: 0px 15px 18px;
  border: 2px solid var(--trnspot-base);
  text-align: center;
  transition: all 0.2s ease;
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  visibility: hidden;
  z-index: 100;
  margin-left: -40px;
}

.office-location__location-single:hover .content-box {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
}

.office-location__location-single .content-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 65px;
  border-bottom: 25px solid var(--trnspot-white);
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  z-index: 1;
}

.office-location__location-single .content-box::after {
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 65px;
  border-bottom: 25px solid var(--trnspot-base);
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  z-index: -1;
}

.office-location__location-single .content-box .img-box {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e4e4e4;
  padding: 3px 3px 3px;
  margin: -6px auto 8px;
  z-index: 2;
}

.office-location__location-single .content-box .img-box img {
  width: 100%;
}

.office-location__location-single .content-box .text-box {
  position: relative;
  display: block;
}

.office-location__location-single .content-box .text-box h4 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

.office-location__location-single .content-box .text-box p {
  color: var(--trnspot-black);
  font-size: 15px;
  line-height: 24px;
}

.office-location .testimonials-one__sliding-text-list li {
  color: rgba(var(--trnspot-white-rgb), .05);
  font-size: 95px;
}

/*==============================================
Skill One
===============================================*/
.skill-one {
  position: relative;
  display: block;
  background: var(--trnspot-black);
  padding: 120px 0px 120px;
  z-index: 1;
}

.skill-one__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% - 100px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.skill-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--trnspot-white);
  content: "";
}

.skill-one .shape1 {
  position: absolute;
  top: 50%;
  left: -110px;
  z-index: 0;
  transform: translateY(-50%);
  opacity: 0.2;
}

.skill-one__content {
  position: relative;
  display: block;
}

.skill-one__content .sec-title {
  padding-bottom: 26px;
}

.skill-one__content .sec-title__tagline .text h4 {
  color: var(--trnspot-white);
}

.skill-one__content .sec-title__tagline .icon-box span::before {
  color: var(--trnspot-white);
}

.skill-one__content .sec-title__title {
  color: var(--trnspot-white);
}

.skill-one__content-text {
  position: relative;
  display: block;
}

.skill-one__content-text p {
  color: var(--trnspot-white);
}

.skill-one__progress {
  position: relative;
  display: block;
  margin-top: 35px;
}

.skill-one__progress li {
  position: relative;
  display: block;
}

.skill-one__progress li + li {
  margin-top: 23px;
}

.skill-one__progress-single {
  position: relative;
  display: block;
}

.skill-one__progress-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.skill-one__progress-single .title-box p {
  color: var(--trnspot-white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.skill-one__progress-single .bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: rgba(var(--trnspot-white-rgb), 0.2);
  border-radius: 6px;
}

.skill-one__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--trnspot-white);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.skill-one__progress-single .count-text {
  position: absolute;
  top: -35px;
  right: -1px;
  color: var(--trnspot-white);
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  opacity: 0;
  font-family: var(--trnspot-font-two);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.skill-one__progress-single .bar-inner.counted .count-text {
  opacity: 1;
}

.skill-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 45px;
}

.skill-one__content .btn-box .thm-btn {
  background: var(--trnspot-white);
  color: var(--trnspot-black);
}

.skill-one__content .btn-box .thm-btn:hover {
  color: var(--trnspot-white);
}

.skill-one__content .btn-box .hover-btn {
  background-color: var(--trnspot-base);
}

/***
=============================================
Features One
=============================================
***/
.features-one {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
  margin-top: -60px;
  z-index: 99;
}

.features-one__single {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--trnspot-white);
  border: 1px solid var(--trnspot-base);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.features-one__single-icon {
  position: relative;
  display: block;
  width: 110px;
  height: 100%;
  background: var(--trnspot-base);
  padding: 25px 0px 26px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  margin-left: 10px;
}

.features-one__single-icon .icon {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.features-one__single-icon .icon span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 60px;
  line-height: 60px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.features-one__single:hover .features-one__single-icon .icon span {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.features-one__single-icon .text-box {
  position: relative;
  display: block;
}

.features-one__single-icon .text-box h2 {
  font-size: 40px;
  line-height: 50px;
  color: transparent;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: var(--trnspot-white);
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.features-one__single-content {
  position: relative;
  display: block;
  padding: 32px 30px 32px;
  flex: 1;
}

.features-one__single-content h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: capitalize;
}

.features-one__single-content h2 a {
  color: var(--trnspot-black);
}

.features-one__single-content h2 a:hover {
  color: var(--trnspot-base);
}

.features-one__single-content p {
  margin: 0;
}

/*==============================================
    Video One
===============================================*/
.video-one {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 2;
}

.video-one .shape1 {
  position: absolute;
  top: -30px;
  right: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(40deg);
  mix-blend-mode: luminosity;
  opacity: 0.8;
  z-index: 5;
}

.video-one .shape2 {
  position: absolute;
  top: 70px;
  right: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(40deg);
  mix-blend-mode: luminosity;
  opacity: 0.8;
  z-index: 5;
}

.video-one .shape3 {
  position: absolute;
  bottom: -30px;
  left: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(220deg);
  mix-blend-mode: luminosity;
  opacity: 0.8;
  z-index: 5;
}

.video-one .shape4 {
  position: absolute;
  bottom: 70px;
  left: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(220deg);
  mix-blend-mode: luminosity;
  opacity: 0.8;
  z-index: 5;
}

.video-one__inner {
  position: relative;
  display: block;
  padding: 192px 0px 200px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

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

.video-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--trnspot-black-rgb), 0.8);
  content: "";
  z-index: -1;
}

.video-one__title {
  position: relative;
  display: block;
  margin-bottom: 75px;
}

.video-one__title h2 {
  color: var(--trnspot-white);
  font-size: 60px;
  line-height: 64px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--trnspot-font-two);
}

.video-one__title h2 span {
  color: var(--trnspot-base);
}

.video-one__inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.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(--trnspot-base);
  background-color: var(--trnspot-white);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-one__icon:hover {
  color: var(--trnspot-white);
  background-color: var(--trnspot-base);
}

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

.video-one__box .border-animation {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid var(--trnspot-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;
}

/*==============================================
  Download App One 
===============================================*/

.download-app-one {
  position: relative;
  display: block;
  background-color: var(--trnspot-black);
  padding: 120px 0px 120px;
  z-index: 1;
}

.download-app-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.download-app-one__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.download-app-one__inner .row {
  align-items: center;
}

.download-app-one__content {
  position: relative;
  display: block;
}

.download-app-one__content .sec-title {
  padding-bottom: 25px;
}

.download-app-one__content .sec-title__title {
  color: var(--trnspot-white);
}

.download-app-one__text {
  font-size: 18px;
  color: var(--trnspot-white);
  line-height: 28px;
}

.download-app-one__google-and-app-store {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.download-app-one__google-and-app-store a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--trnspot-base);
  padding: 15px 30px 15px;
  border-radius: 5px;
}

.download-app-one__right {
  position: relative;
  display: block;
}

.download-app-one__img {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
  margin-left: -30px;
}

.download-app-one__img1 {
  position: relative;
  display: block;
}

.download-app-one__img1 img {
  width: 100%;
}

.download-app-one-car__img {
  position: absolute;
  right: -490px;
  top: 60px;
  z-index: -1;
}

.download-app-one-car__img img {
  width: auto;
}

/***
=============================================
Cta One
=============================================
***/
.cta-one {
  position: relative;
  display: block;
  z-index: 1;
}

.cta-one::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 200px;
  background: var(--trnspot-gray-bg);
  content: "";
  z-index: -1;
}

.cta-one__inner {
  position: relative;
  display: block;
  background: var(--trnspot-black);
  border-radius: var(--trnspot-bdr-radius);
  z-index: 1;
}

.cta-one__img {
  position: absolute;
  right: 130px;
  bottom: 0;
  z-index: 1;
}

.cta-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
  z-index: -1;
}

.cta-one__inner .shape1 {
  position: absolute;
  top: 175px;
  left: 530px;
  z-index: -1;
}

.cta-one__content .shape2 {
  position: absolute;
  top: -22px;
  right: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(40deg);
  mix-blend-mode: luminosity;
  opacity: 0.8;
  z-index: 5;
}

.cta-one__inner .shape3 {
  position: absolute;
  top: 70px;
  right: 50px;
  width: 100px;
  height: 450px;
  background: var(--trnspot-base);
  background: #FB5422;
  background: linear-gradient(180deg, rgba(251, 84, 34, 0.87) 0%, rgba(251, 84, 34, 0.62) 27%, rgba(251, 84, 34, 0.35) 64%, rgba(251, 84, 34, 0) 100%);
  transform: rotate(40deg);
  mix-blend-mode: luminosity;
  opacity: 0.8;
  z-index: 5;
}

.cta-one__content {
  position: relative;
  display: block;
  padding: 65px 95px 75px;
  overflow: hidden;
}

.cta-one__content h2 {
  color: var(--trnspot-white);
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-one__content h2 span {
  color: var(--trnspot-base);
}

.cta-one__content p {
  color: var(--trnspot-white);
}

.cta-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 37px;
}

.cta-one__content .btn-box .hover-btn {
  background-color: var(--trnspot-white);
}

.cta-one__content .btn-box .thm-btn:hover {
  color: var(--trnspot-black);
}



/***
=============================================
Page Header
=============================================
***/
.page-header {
  position: relative;
  display: block;
  padding: 100px 0px 100px;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #00000088;
  background-blend-mode: luminosity;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.page-header__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000052;
  content: "";
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}

.page-header__inner b {
  color: var(--trnspot-white);
  font-size: 65px;
  line-height: 1.1em;
  font-weight: 600;
  text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
}

.page-header__inner .thm-breadcrumb li {
  color: var(--trnspot-white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  margin-left: 5px;
  margin-right: 5px;
}

.page-header__inner .thm-breadcrumb li:first-child {
  margin-left: 0px;
}

.page-header__inner .thm-breadcrumb li:last-child {
  margin-right: 0px;
}

.page-header__inner .thm-breadcrumb li a {
  color: var(--trnspot-white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li a:hover {
  color: var(--trnspot-base);
}

.page-header__inner .thm-breadcrumb li span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  top: 2px;
}


/***
=============================================
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(--trnspot-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(--trnspot-base);
  border-radius: 50%;
  color: var(--trnspot-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(--trnspot-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: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.history-page__single-content p {
  margin: 0;
}

/*==============================================
  Services Details
===============================================*/
.services-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

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

.services-details__content-img1 {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.services-details__content-img1 img {
  width: 100%;
}

.services-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.services-details__content-text1 h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.services-details__content-text1 .text1 {
  margin: 0;
  margin-bottom: 25px;
}

.services-details__content-text1 .text2 {
  margin: 0;
}

.services-details__content-img2 {
  position: relative;
  display: block;
  margin-top: 37px;
  margin-bottom: 10px;
}

.services-details__content-img2-single {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.services-details__content-img2-single img {
  width: 100%;
}




.services-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.services-details__content-text2 h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.services-details__content-text2 p {
  margin: 0;
}

.services-details__content-text2-bottom {
  position: relative;
  display: block;
  margin-top: 37px;
}

.services-details__content-text2-bottom .row {
  align-items: center;
}

.services-details__content-text2-bottom-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.services-details__content-text2-bottom-img img {
  width: 100%;
}

.services-details__content-text2-bottom-content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.services-details__content-text2-bottom-content ul {
  position: relative;
  display: block;
}

.services-details__content-text2-bottom-content ul li {
  position: relative;
  display: block;
}

.services-details__content-text2-bottom-content ul li + li {
  margin-top: 16px;
}

.services-details__content-text2-bottom-content ul li p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
}

.services-details__content-text2-bottom-content ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  top: 1px;
  right: 5px;
}

.services-details__content-text3 {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  padding: 55px 50px 7px;
  border-radius: 10px;
  margin-top: 45px;
}

.services-details__content-text3-single {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.services-details__content-text3-single .icon-box {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.services-details__content-text3-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 60px;
  line-height: 60px;
}

.services-details__content-text3-single h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.services-details__content-text3-single p {
  margin: 0;
}

.faq-one--services {
  position: relative;
  display: block;
  margin-top: 45px;
}

.faq-one--services .faq-one-accrodion .accrodion-title h4 {
  color: var(--trnspot-black);
}

.faq-one--services .faq-one-accrodion .accrodion {
  background: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 10px;
}

.faq-one--services .faq-one-accrodion .accrodion-title h4::before {
  color: var(--trnspot-black);
}

.faq-one--services .faq-one-accrodion .accrodion-content {
  background: var(--trnspot-white);
  border-radius: 10px;
}

.faq-one--services .faq-one-accrodion .accrodion-content p {
  color: var(--trnspot-gray);
}



/*==============================================
  Sidebar
===============================================*/

.sidebar {
  position: relative;
  display: block;
}

.sidebar__single {
  position: relative;
  display: block;
  background-color: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  padding: 50px 30px 50px;
  border-radius: 10px;
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__single .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
  margin-top: -8px;
}

.sidebar__single .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--trnspot-base);
  content: "";
}

.sidebar__single .title-box::after {
  position: absolute;
  left: 36px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--trnspot-gray-bg);
  content: "";
}

.sidebar__single .title-box h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: capitalize;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: var(--trnspot-white);
  color: var(--trnspot-gray);
  font-size: 15px;
  font-weight: 600;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px solid var(--trnspot-bdr-color);
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--trnspot-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--trnspot-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--trnspot-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--trnspot-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--trnspot-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--trnspot-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--trnspot-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--trnspot-base);
  color: var(--trnspot-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;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--trnspot-black);
  color: var(--trnspot-white);
}

.sidebar__categories {
  position: relative;
  display: block;
}

.sidebar__categories-list {
  position: relative;
  display: block;
}

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

.sidebar__categories-list li + li {
  margin-top: 10px;
}

.sidebar__categories-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--trnspot-white);
  border-radius: 5px;
  padding: 0px 25px 0px;
  color: var(--trnspot-black);
  font-size: 18px;
  line-height: 55px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid var(--trnspot-bdr-color);
}

.sidebar__categories-list li a:hover,
.sidebar__categories-list li a.active {
  color: var(--trnspot-white);
  background: var(--trnspot-base);
}

.sidebar__categories-list li a span {
  position: relative;
  display: block;
}

.sidebar__categories-list li a span::before {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.sidebar__download {
  position: relative;
  display: block;
}

.sidebar__download-list {
  position: relative;
  display: block;
}

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

.sidebar__download-list li + li {
  margin-top: 10px;
}

.sidebar__download-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--trnspot-white);
  border-radius: 5px;
  padding: 0px 25px 0px;
  color: var(--trnspot-black);
  font-size: 18px;
  line-height: 55px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid var(--trnspot-bdr-color);
}

.sidebar__download-list li a:hover,
.sidebar__download-list li a.active {
  color: var(--trnspot-white);
  background: var(--trnspot-base);
}

.sidebar__download-list li a span {
  position: relative;
  display: block;
}

.sidebar__download-list li a span::before {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.sidebar__contact {
  position: relative;
  display: block;
  border: none;
  background: none;
  z-index: 1;
}

.sidebar__contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  z-index: -1;
}

.sidebar__contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--trnspot-black-rgb), 0.75);
  border-radius: 10px;
  content: "";
}

.sidebar__contact-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--trnspot-base);
  border-radius: 50%;
  margin-bottom: 24px;
}

.sidebar__contact-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 25px;
  line-height: 25px;
}

.sidebar__contact-text {
  position: relative;
  display: block;
}

.sidebar__contact-text p {
  color: var(--trnspot-white);
}

.sidebar__contact-text h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  margin-top: 5px;
}

.sidebar__contact-text h2 a {
  color: var(--trnspot-white);
}

.sidebar__contact-text h2 a:hover {
  color: var(--trnspot-base);
}

.sidebar__contact-btn {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 41px;
}

.sidebar__contact-btn .thm-btn {
  background: VAR(--trnspot-base);
}

.sidebar__contact-btn .thm-btn:hover {
  color: var(--trnspot-black);
}

.sidebar__contact-btn .thm-btn .hover-btn {
  background-color: var(--trnspot-white);
}


.sidebar__project-info {
  position: relative;
  display: block;
}

.sidebar__project-info-text {
  position: relative;
  display: block;
}

.sidebar__project-info-text p {
  margin: 0;
}


.sidebar__project-info-list {
  position: relative;
  display: block;
  margin-top: 27px;
}

.sidebar__project-info-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar__project-info-list li + li {
  margin-top: 22px;
}

.sidebar__project-info-list li span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
  font-size: 18px;
  font-weight: 500;
  min-width: 100px;
  margin-right: 18px;
}

.sidebar__project-info-list li a {
  color: var(--trnspot-gray);
}

.sidebar__project-info-list li a:hover {
  color: var(--trnspot-base);
}

.sidebar__project-info-list li span::before {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 18px;
  color: var(--thm-black);
  font-weight: 500;
  content: ":";
}

.sidebar__project-info-list li .rating-box a {
  color: var(--trnspot-base);
}

.sidebar__recent-post {
  position: relative;
  display: block;
}

.sidebar__recent-post-single {
  position: relative;
  display: block;
}

.sidebar__recent-post-single + .sidebar__recent-post-single {
  margin-top: 26px;
}

.sidebar__recent-post-img {
  position: relative;
  display: block;
  background: var(--trnspot-black);
  border-radius: 10px;
  overflow: hidden;
}

.sidebar__recent-post-img img {
  width: 100%;
  transition: all 500ms ease;
}

.sidebar__recent-post-single:hover .sidebar__recent-post-img img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.sidebar__recent-post-content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.sidebar__recent-post-content p {
  margin: 0;
}

.sidebar__recent-post-content p span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  padding-right: 2px;
  top: 1px;
}

.sidebar__recent-post-content h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-top: 6px;
}

.sidebar__recent-post-content h3 a {
  color: var(--trnspot-black);
}

.sidebar__recent-post-content h3 a:hover {
  color: var(--trnspot-base);
}

.sidebar__tags {
  position: relative;
  display: block;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
  overflow: hidden;
}

.sidebar__tags-list li {
  position: relative;
  display: block;
  padding: 0px 5px 0px;
  float: left;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  background: var(--trnspot-white);
  padding: 7px 15px 7px;
}

.sidebar__tags-list li a:hover {
  color: var(--trnspot-white);
  background: var(--trnspot-base);
}


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

.team-details__sidebar {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--trnspot-bdr-color);
  border-bottom: 5px solid var(--trnspot-base);
}

.team-details__sidebar-img {
  position: relative;
  display: block;
}

.team-details__sidebar-img img {
  width: 100%;
}

.team-details__sidebar-content {
  position: relative;
  display: block;
  padding: 42px 30px 45px;
}

.team-details__sidebar-content-text1 {
  position: relative;
  display: block;
}

.team-details__sidebar-content-text1 span {
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-details__sidebar-content-text1 h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 13px;
  margin-top: 5px;
}

.team-details__sidebar-content-text1 p {
  margin: 0;
}

.team-details__sidebar-content-text2 {
  position: relative;
  display: block;
  border-top: 1px solid var(--trnspot-bdr-color);
  margin-top: 27px;
  padding-top: 29px;
}

.team-details__sidebar-content-text2 ul {
  position: relative;
  display: block;
}

.team-details__sidebar-content-text2 ul li {
  position: relative;
  display: block;
  padding-left: 45px;
}

.team-details__sidebar-content-text2 ul li .icon-box {
  position: absolute;
  top: 6px;
  left: 0;
}

.team-details__sidebar-content-text2 ul li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  font-weight: 500;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(var(--trnspot-black-rgb), 0.4);
  text-align: center;
}

.team-details__sidebar-content-text2 ul li .text-box {
  position: relative;
  display: block;
}

.team-details__sidebar-content-text2 ul li + li {
  margin-top: 16px;
}

.team-details__sidebar-content-text2 ul li span {
  position: relative;
  display: block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-details__sidebar-content-text2 ul li p {
  margin: 0;
}

.team-details__sidebar-content-text2 ul li p a {
  color: var(--trnspot-gray);
}

.team-details__sidebar-content-text2 ul li p a:hover {
  color: var(--trnspot-base);
}

.team-details__sidebar-social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.team-details__sidebar-social-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(var(--trnspot-black-rgb), 0.4);
  font-size: 15px;
}

.team-details__sidebar-social-links a + a {
  margin-left: 8px;
}

.team-details__sidebar-social-links a:hover {
  color: var(--trnspot-white);
  border-color: var(--trnspot-base);
  background: var(--trnspot-base);
}

.team-details__content {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -7px;
}

.team-details__content-text1 {
  position: relative;
  display: block;
}

.team-details__content-text1 .title-box {
  position: relative;
  display: block;
}

.team-details__content-text1 .title-box h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 3px;
  margin-bottom: 18px;
}

.team-details__content-text1 .title-box h2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 2px;
  background: var(--trnspot-base);
  content: "";
}

.team-details__content-text1 .title-box h2::after {
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--trnspot-white);
  content: "";
}

.team-details__content-text1 .title-box p {
  margin: 0;
}

.team-details__content-text1 .skill-one__progress-single .title-box p {
  color: var(--trnspot-black);
}

.team-details__content-text1 .skill-one__progress-single .bar {
  background-color: rgba(var(--trnspot-gray-rgb), 0.2);
}

.team-details__content-text1 .skill-one__progress-single .bar-inner {
  background-color: var(--trnspot-base);
}

.team-details__content-text1 .skill-one__progress-single .count-text {
  color: var(--trnspot-black);
}

.team-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 48px;
}

.team-details__content-text2 .title-box {
  position: relative;
  display: block;
}

.team-details__content-text2 .title-box h2 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 3px;
  margin-bottom: 18px;
}

.team-details__content-text2 .title-box h2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 2px;
  background: var(--trnspot-base);
  content: "";
}

.team-details__content-text2 .title-box h2::after {
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--trnspot-white);
  content: "";
}

.team-details__content-text2 .title-box p {
  margin: 0;
}

.team-details__content-text2-bottom {
  position: relative;
  display: block;
  margin-top: 41px;
}

.team-details__content-text2-single {
  position: relative;
  display: block;
  border: 1px solid var(--trnspot-bdr-color);
  border-bottom: 5px solid var(--trnspot-base);
  border-radius: 10px;
  padding: 37px 40px 29px;
  overflow: hidden;
}

.team-details__content-text2-single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 50%;
  margin-bottom: 18px;
}

.team-details__content-text2-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 25px;
  line-height: 25px;
}

.team-details__content-text2-single .text-box {
  position: relative;
  display: block;
}

.team-details__content-text2-single .text-box h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.team-details__content-text2-single .text-box p {
  margin: 0;
  margin-bottom: 9px;
}

.team-details__content-text2-single .text-box span {
  position: relative;
  display: block;
}

/*==============================================
  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(--trnspot-bdr-color);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--trnspot-gray);
  display: block;
  border-radius: var(--trnspot-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(--trnspot-bdr-color);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--trnspot-gray);
  font-weight: 400;
  border-radius: var(--trnspot-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(--trnspot-gray);
  border-right: 2px solid var(--trnspot-gray);
  margin-top: 0px;
  z-index: 10;
}

.team-details-contact__input-box textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--trnspot-bdr-color);
  padding: 15px 30px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--trnspot-gray);
  position: relative;
  display: block;
  border-radius: var(--trnspot-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;
}

/*==============================================
  Projects Details
===============================================*/
.projects-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.projects-details__content {
  position: relative;
  display: block;
}

.projects-details__img1 {
  position: relative;
  display: block;
}

.projects-details__img1-single {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.projects-details__img1-single img {
  width: 100%;
}

.projects-details__img1-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__img1-carousel.owl-carousel .owl-nav button.owl-prev,
.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--trnspot-white);
  color: var(--trnspot-base);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--trnspot-white);
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-prev::before,
.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--trnspot-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__img1-carousel.owl-carousel .owl-nav button.owl-prev:hover::before,
.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-next:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-prev:hover,
.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-next:hover {
  border-color: var(--trnspot-base);
  color: var(--trnspot-white);
}

.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-prev span::before,
.projects-details__img1-carousel.owl-carousel .owl-nav button.owl-next span::before {
  font-weight: 700;
  line-height: 53px;
}

.projects-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 41px;
}

.projects-details__content-text1 h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.projects-details__content-text1 p {
  margin: 0;
}

.projects-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.projects-details__content-text2 h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.projects-details__content-text2 p {
  margin: 0;
}

.projects-details__content-img2 {
  position: relative;
  display: block;
  margin-top: 42px;
}

.projects-details__content-img2-single {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.projects-details__content-img2-single img {
  width: 100%;
}

.projects-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.projects-details__content-text3-single {
  position: relative;
  display: block;
}

.projects-details__content-text3-single ul {
  position: relative;
  display: block;
}

.projects-details__content-text3-single ul li {
  position: relative;
  display: block;
}

.projects-details__content-text3-single ul li + li {
  margin-top: 14px;
}

.projects-details__content-text3-single ul li p {
  margin: 0;
}

.projects-details__content-text3-single ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  margin-right: 5px;
  font-weight: 700;
}

.projects-details__content-text4 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.projects-details__content-text4 h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.projects-details__content-text4 p {
  margin: 0;
}

.projects-details__content-text5 {
  position: relative;
  display: block;
  margin-top: 34px;
}

.projects-details__content-text5 h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.projects-details__content-text5 p {
  margin: 0;
}

.projects-details__content-text6 {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  border-radius: 10px;
  padding: 35px 50px 35px;
  border-left: 5px solid var(--trnspot-base);
  margin-top: 42px;
}

.projects-details__content-text6 .img-box {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--trnspot-base);
  margin-bottom: 19px;
}

.projects-details__content-text6 .img-box img {
  width: 100%;
}

.projects-details__content-text6 p {
  margin: 0;
}

.projects-details__content-text6 h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 15px;
}

.projects-details__content-text6 .rating-box {
  position: relative;
  display: block;
}

.projects-details__prev-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 10px;
  padding: 16px 25px 15px;
  margin-top: 50px;
}

.projects-details__prev {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.projects-details__prev .content {
  position: relative;
  display: block;
  flex: 1;
}

.projects-details__prev .content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--trnspot-base);
  font-family: var(--trnspot-font-two);
  text-transform: uppercase;
}

.projects-details__prev .content p a {
  color: var(--trnspot-base);
}

.projects-details__prev .content p a:hover {
  color: var(--trnspot-black);
}

.projects-details__prev .content h5 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 600;
}

.projects-details__prev .content h5 a {
  color: var(--trnspot-black);
}

.projects-details__prev .content h5 a:hover {
  color: var(--trnspot-base);
}

.projects-details__prev .icon-box {
  position: relative;
  display: block;
}

.projects-details__prev .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 50px;
  border-radius: 5px;
  background: var(--trnspot-base);
}

.projects-details__prev .icon-box a:hover {
  background: var(--trnspot-black);
}

.projects-details__prev .icon-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 17px;
  line-height: 17px;
}

.projects-details__next {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.projects-details__next .content {
  position: relative;
  display: block;
  text-align: right;
  flex: 1;
}

.projects-details__next .content p {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--trnspot-font-two);
  text-transform: uppercase;
}

.projects-details__next .content p a {
  color: var(--trnspot-base);
}

.projects-details__next .content p a:hover {
  color: var(--trnspot-black);
}

.projects-details__next .content h5 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 600;
}

.projects-details__next .content h5 a {
  color: var(--trnspot-black);
}

.projects-details__next .content h5 a:hover {
  color: var(--trnspot-base);
}

.projects-details__next .icon-box {
  position: relative;
  display: block;
}

.projects-details__next .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 50px;
  border-radius: 5px;
  background: var(--trnspot-base);
}

.projects-details__next .icon-box a:hover {
  background: var(--trnspot-black);
}

.projects-details__next .icon-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 17px;
  line-height: 17px;
}

/*** 
=============================================
    Client Page
=============================================
***/
.client-page {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 120px 0px 90px;
}

.client-page__single {
  position: relative;
  display: block;
  max-width: 270px;
  width: 100%;
  margin: 0 auto 30px;
  -webkit-box-shadow: 0px 3px 6px 2px #ececec;
  box-shadow: 0px 3px 6px 2px #ececec;
  transition: all 700ms ease 100ms;
  z-index: 1;
}

.client-page__single:hover {
  box-shadow: none;
}

.client-page__single::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--trnspot-gray-bg);
  transform: scaleX(0);
  transition: all 700ms ease 100ms;
  z-index: -1;
  content: "";
}

.client-page__single:hover:before {
  transform: scaleY(1);
}

.client-page__single::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--trnspot-base);
  transform: scaleX(0);
  transition: all 700ms ease 100ms;
  z-index: -1;
  content: "";
}

.client-page__single:hover::after {
  transform: scaleY(1);
}

.client-page__single a {
  position: relative;
  display: inline-block;
  padding: 20px 0px 20px;
}

.client-page__single a img {
  opacity: .5;
  transition: all 0.2s ease-in-out 0.1s;
}

.client-page__single:hover a img {
  opacity: 1.0;
  transition: all 0.3s ease-in-out 0.1s;
}

/***
=====================================================
    Error Page
=====================================================
***/
.error-page {
  position: relative;
  display: block;
  padding: 82px 0px 120px;
  z-index: 1;
}

.error-page__wrapper {
  position: relative;
  display: block;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.error-page__content h2 {
  color: var(--trnspot-black);
  font-size: 270px;
  line-height: 0.9em;
  font-weight: 600;
  text-shadow: 3px 3px 3px var(--trnspot-base);
  font-family: var(--trnspot-font-two);
  margin-bottom: 0px;
}

.error-page__content h3 {
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 600;
  margin-bottom: 25px;
}

.error-page__content p {
  font-weight: 500;
  margin: 0px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 47px 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(--trnspot-base);
  font-size: 16px;
  color: var(--trnspot-gray);
  font-weight: 500;
  padding-left: 30px;
  padding-right: 60px;
  border-radius: 10px;
}

.error-page__form button[type="submit"] {
  background-color: var(--trnspot-base);
  color: var(--trnspot-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(--trnspot-black);
}

.error-page__content .btn-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 41px;
}

/***
=============================================
Coming Soon Page
=============================================
***/
.coming-soon-page {
  position: relative;
  display: block;
  overflow: hidden;
  border-top: 15px dashed rgba(var(--trnspot-black-rgb), .70);
  border-bottom: 15px dashed rgba(var(--trnspot-black-rgb), .70);
  border-left: 15px solid rgba(var(--trnspot-base-rgb), .10);
  border-right: 15px solid rgba(var(--trnspot-base-rgb), .10);
  z-index: 10;
}

.coming-soon-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--trnspot-black);
  background-blend-mode: luminosity;
  z-index: -1;
}

.coming-soon-page__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
}

.coming-soon-page__content {
  position: relative;
  display: block;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  top: 50%;
  transform: translateY(-50%);
}

.coming-soon-page__content .inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.coming-soon-page__content .big-title {
  position: relative;
  display: inline-block;
  color: var(--trnspot-white);
  font-size: 100px;
  font-weight: 600;
  text-transform: capitalize;
  word-spacing: 15px;
}

.coming-soon-page .timer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 57px 0 42px;
  z-index: 2;
}

.coming-soon-page .timer-box .countdown-timer li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 170px;
  height: 170px;
  margin: 0px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  border-radius: 50%;
}

.coming-soon-page .timer-box .countdown-timer li span.days,
.coming-soon-page .timer-box .countdown-timer li span.hours,
.coming-soon-page .timer-box .countdown-timer li span.minutes,
.coming-soon-page .timer-box .countdown-timer li span.seconds {
  color: var(--trnspot-white);
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--trnspot-font);
}

.coming-soon-page .timer-box .countdown-timer li span.timeRef {
  position: relative;
  display: block;
  color: var(--trnspot-white);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 11px;
  font-family: var(--trnspot-font);
}

.coming-soon-page__content .inner .text {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.coming-soon-page__content .inner .text p {
  color: var(--trnspot-white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.coming-soon-page__subscribe-box {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}

.coming-soon-page__subscribe-box form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.coming-soon-page__subscribe-box form input[type="email"] {
  position: relative;
  display: block;
  max-width: 490px;
  width: 100%;
  height: 56px;
  border-radius: 5px;
  background: var(--trnspot-black);
  border: none;
  color: var(--trnspot-white);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease 0s;
  font-family: var(--trnspot-font);
  outline: none;
}

.coming-soon-page__subscribe-box form .coming-soon-page__btn {
  border: none;
}

.coming-soon-page__subscribe-box form .coming-soon-page__btn::after {
  background-color: rgba(var(--trnspot-white-rgb), 1);
}

.coming-soon-page__subscribe-box form .coming-soon-page__btn:hover span {
  background-color: var(--trnspot-black);
  color: var(--trnspot-white);
}

.coming-soon-page__subscribe-box form .coming-soon-page__btn:hover {
  color: var(--trnspot-white);
}

/***
=============================================
Privacy Policy Page
=============================================
***/
.privacy-policy-page {
  position: relative;
  display: block;
  padding: 113px 0px 112px;
  z-index: 1;
}

.privacy-policy-page__text1 {
  position: relative;
  display: block;
}

.privacy-policy-page__text1 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  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(--trnspot-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::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  margin-right: 5px;
  font-weight: 700;
  top: 1px;
}

.privacy-policy-page__text2 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.privacy-policy-page__text2 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.privacy-policy-page__text2 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-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 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.privacy-policy-page__text3 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-base);
  content: "";
}

.privacy-policy-page__text3 p {
  margin: 0;
}

.privacy-policy-page__text4 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.privacy-policy-page__text4 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.privacy-policy-page__text4 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-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;
}


/***
=============================================
Terms Conditions Page
=============================================
***/
.terms-conditions-page {
  position: relative;
  display: block;
  padding: 113px 0px 112px;
  z-index: 1;
}

.terms-conditions-page__text1 {
  position: relative;
  display: block;
}

.terms-conditions-page__text1 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.terms-conditions-page__text1 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-base);
  content: "";
}

.terms-conditions-page__text1 p {
  margin: 0;
}

.terms-conditions-page__text2 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.terms-conditions-page__text2 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.terms-conditions-page__text2 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-base);
  content: "";
}

.terms-conditions-page__text2 p {
  margin: 0;
}

.terms-conditions-page__text2 .text2 {
  margin-top: 26px;
}

.terms-conditions-page__list {
  position: relative;
  display: block;
  margin-top: 31px;
}

.terms-conditions-page__list ul {
  position: relative;
  display: block;
}

.terms-conditions-page__list ul li {
  position: relative;
  display: block;
}

.terms-conditions-page__list ul li + li {
  margin-top: 8px;
}

.terms-conditions-page__list ul li p {
  margin: 0;
}

.terms-conditions-page__list ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  margin-right: 5px;
  font-weight: 700;
  top: 1px;
}

.terms-conditions-page__text3 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.terms-conditions-page__text3 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.terms-conditions-page__text3 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-base);
  content: "";
}

.terms-conditions-page__text3 p {
  margin: 0;
}

.terms-conditions-page__text4 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.terms-conditions-page__text4 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.terms-conditions-page__text4 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-base);
  content: "";
}

.terms-conditions-page__text4 p {
  margin: 0;
}

.terms-conditions-page__text5 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.terms-conditions-page__text5 h2 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 13px;
  margin-bottom: 25px;
}

.terms-conditions-page__text5 h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 7px;
  width: 3px;
  background: var(--trnspot-base);
  content: "";
}

.terms-conditions-page__text5 p {
  margin: 0;
}






















/***
=============================================
Product
=============================================
***/
.product {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.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(--trnspot-gray-bg);
  color: var(--trnspot-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: var(--trnspot-bdr-radius);
  border: 1px solid var(--trnspot-bdr-color);
  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(--trnspot-gray-bg);
  padding: 15px 15px 15px;
  border-radius: var(--trnspot-bdr-radius);
  border: 1px solid var(--trnspot-bdr-color);
}

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

.product__all-tab-button ul li + li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--trnspot-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(--trnspot-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 var(--trnspot-bdr-color);
  background-color: var(--trnspot-white);
  border-radius: var(--trnspot-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;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  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(--trnspot-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.13);
  color: var(--trnspot-base);
  line-height: 35px;
  font-weight: 600;
  border-radius: 3px;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li + li {
  margin-left: 8px;
}

.single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--trnspot-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--trnspot-white);
  background-color: var(--trnspot-base);
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: var(--trnspot-gray-bg);
  padding: 37px 20px 31px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}

.single-product-style1__content-left h4 a {
  color: var(--trnspot-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--trnspot-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--trnspot-gray);
  margin-top: 10px;
}

.single-product-style1__content-left p del {
  color: var(--trnspot-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(--trnspot-white);
  border-radius: 3px;
  padding: 3.5px 10px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 16px;
  margin-right: 8px;
  top: -2px;
}

.single-product-style1__review p {
  color: var(--trnspot-black);
  font-weight: 500;
}


.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid var(--trnspot-bdr-color);
  background-color: var(--trnspot-white);
  border-radius: var(--trnspot-bdr-radius);
  transition: all 500ms ease;
  overflow: hidden;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  border-right: 1px solid var(--trnspot-bdr-color);
  margin-right: 5px;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 20px 0px;
  z-index: 1;
}

.single-product-style2__content::before {
  position: absolute;
  top: -999px;
  left: -5px;
  bottom: -999px;
  right: 0;
  background: var(--trnspot-gray-bg);
  content: "";
  z-index: -1;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i {
  color: var(--trnspot-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: 24px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--trnspot-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--trnspot-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--trnspot-gray);
  margin-top: 8px;
}

.single-product-style2__text p del {
  color: var(--trnspot-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li + li {
  margin-left: 8px;
}

.single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--trnspot-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .15);
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--trnspot-white);
  background-color: var(--trnspot-base);
}

/***
=============================================
Product Sidebar
=============================================
***/
.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single + .product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  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(--trnspot-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: var(--trnspot-bdr-radius);
  padding: 35px 30px 35px;
}

.shop-search form {
  position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--trnspot-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--trnspot-gray);
  font-family: var(--trnspot-font);
  border-radius: var(--trnspot-bdr-radius);
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type="submit"] {
  background-color: var(--trnspot-base);
  color: var(--trnspot-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: var(--trnspot-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
  background-color: var(--trnspot-black);
  color: var(--trnspot-white);
}

.product__price-ranger {
  position: relative;
  padding: 33px 30px 31px;
  margin: 0;
  background-color: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: var(--trnspot-bdr-radius);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--trnspot-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--trnspot-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(--trnspot-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(--trnspot-base);
  float: right;
  text-align: center;
  border: none;
  color: var(--trnspot-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"]:hover {
  background: var(--trnspot-black);
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--trnspot-gray);
  font-size: 16px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}

.shop-category {
  position: relative;
  display: block;
  background-color: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  padding: 35px 30px 35px;
  border-radius: var(--trnspot-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(--trnspot-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(--trnspot-gray);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--trnspot-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--trnspot-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(--trnspot-base);
  font-family: 'icomoon' !important;
  content: "\e94f";
  opacity: 1;
  font-size: 15px;
  color: var(--trnspot-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-category ul li a:hover:after {
  background-color: var(--trnspot-black);
}

.shop-product-tags {
  position: relative;
  display: block;
  background-color: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  padding: 34px 30px 35px;
  border-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.shop-product-tags .product__sidebar-title {
  margin-left: 5px;
}

.shop-product__tags-list {
  margin-top: -10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--trnspot-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--trnspot-white);
  display: inline-block;
  padding: 5px 20px 5px;
  margin-left: 5px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.shop-product__tags-list a + a {
  margin-left: 5px;
  margin-top: 10px;
}

.shop-product__tags-list a:hover {
  color: var(--trnspot-white);
  background: var(--trnspot-base);
}

.shop-product-reviews {
  position: relative;
  display: block;
  background-color: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  padding: 34px 30px 33px;
  border-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li + li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio] + label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--trnspot-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--trnspot-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked + label i {
  border-color: var(--trnspot-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(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  padding: 34px 30px 35px;
  border-radius: var(--trnspot-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;
  border-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--trnspot-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(--trnspot-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(--trnspot-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: 22px;
  line-height: 22px;
  font-weight: 500;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--trnspot-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--trnspot-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(--trnspot-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 Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}


.product-details__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.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;
  background: var(--trnspot-gray-bg);
  border-radius: 10px;
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--trnspot-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;
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 15px;
}

.product-details__img img {
  width: 100%;
  border-radius: 15px;
}


.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--trnspot-black);
  background-color: var(--trnspot-gray-bg);
  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(--trnspot-white);
  background-color: var(--trnspot-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}

.product-details__right {
  position: relative;
  display: block;
  margin-top: -7px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--trnspot-bdr-color);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--trnspot-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(--trnspot-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-right: 15px;
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trnspot-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked + label {
  color: var(--trnspot-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type=radio] + label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid var(--trnspot-gray);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--trnspot-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked + label i {
  border-color: var(--trnspot-base);
}

.product-details__select-size ul li input[type=radio]:checked + label i::before {
  transform: scale(1.0);
  opacity: 1;
}

.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--trnspot-black);
  font-size: 22px;
  line-height: 32px;
  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 var(--trnspot-bdr-color);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--trnspot-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--trnspot-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--trnspot-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid var(--trnspot-bdr-color);
  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 var(--trnspot-bdr-color);
  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(--trnspot-black);
  font-size: 26px;
  line-height: 36px;
  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(--trnspot-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--trnspot-gray-bg);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a + a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--trnspot-white);
  background-color: var(--trnspot-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 116px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--trnspot-black);
  background-color: var(--trnspot-gray-bg);
  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(--trnspot-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(--trnspot-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 var(--trnspot-bdr-color);
}

.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(--trnspot-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-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: 32px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}


.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--trnspot-bdr-color);
}

.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: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.review-one__content-top .info h2 span {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-left: 5px;
  font-family: var(--trnspot-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--trnspot-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: 32px;
  font-weight: 600;
  line-height: 32px;
  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(--trnspot-base);
}

.review-form-one__rate i + i {
  margin-left: 5px;
}

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

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 16px;
  color: var(--trnspot-gray);
  height: 160px;
  width: 100%;
  background-color: var(--trnspot-white);
  padding: 20px 30px 30px;
  border: 1px solid var(--trnspot-bdr-color);
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
  border-radius: var(--trnspot-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: 60px;
  width: 100%;
  border: 1px solid var(--trnspot-bdr-color);
  background-color: var(--trnspot-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--trnspot-gray);
  display: block;
  font-weight: 400;
  border-radius: var(--trnspot-bdr-radius);
}

.review-form-one__form .thm-btn {
  position: relative;
  display: block;
}


/*--------------------------------------------------------------
  # 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: 600;
  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(--trnspot-white);
  padding: 114px 0px 120px;
}

.cart-page__left {
  position: relative;
  display: block;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}

.cart-table {
  margin-bottom: 0px;
}

.cart-table thead th {
  color: var(--trnspot-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  padding: 0;
  border: none;
  padding-bottom: 22px;
  font-family: var(--trnspot-font-two);
}

.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 var(--trnspot-bdr-color);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--trnspot-gray);
  vertical-align: middle;
  border-top: 1px solid var(--trnspot-bdr-color);
  border-bottom: 1px solid var(--trnspot-bdr-color);
  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 var(--trnspot-bdr-color);
  border-radius: 10px;
}

.cart-table h3 {
  color: var(--trnspot-black);
  font-size: 24px;
  margin-left: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}

.cart-table h3 a {
  color: var(--trnspot-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--trnspot-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 var(--trnspot-bdr-color);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--trnspot-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--trnspot-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 var(--trnspot-bdr-color);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--trnspot-bdr-color);
  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(--trnspot-black);
  font-size: 16px;
  cursor: pointer;
}

.cart-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.cart-page__sidebar {
  position: relative;
  display: block;
  padding: 38px 30px 40px;
  background-color: var(--trnspot-gray-bg);
  border-radius: var(--trnspot-bdr-radius);
  border: 1px solid var(--trnspot-bdr-color);
}

.cart-page__shipping {
  position: relative;
  display: block;
}

.cart-page__shipping-title {
  font-size: 26px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 26px;
  margin-bottom: 25px;
}

.cart-page__shipping-form {
  position: relative;
  display: block;
}

.cart-page__shipping-form .row {
  --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
  background-color: var(--trnspot-white);
  color: var(--trnspot-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 .nice-select .option:hover,
.cart-page__shipping-input-box .nice-select .option.focus,
.cart-page__shipping-input-box .nice-select .option.selected.focus {
  background-color: var(--trnspot-black);
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
  width: 100%;
  height: 50px;
  background-color: var(--trnspot-white);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--trnspot-gray);
  font-family: var(--trnspot-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%;
}

.cart-page__coupon-code {
  position: relative;
  display: block;
  border-top: 1px solid var(--trnspot-bdr-color);
  border-bottom: 1px solid var(--trnspot-bdr-color);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 23px;
  padding-bottom: 30px;
}

.cart-page__coupon-code-title {
  font-size: 26px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 26px;
  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(--trnspot-white);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--trnspot-gray);
  font-family: var(--trnspot-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
  width: 100%;
  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(--trnspot-gray);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li + li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--trnspot-black);
  font-size: 18px;
  margin-right: 80px;
  font-weight: 600;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--trnspot-base);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
  line-height: 0px;
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
  line-height: 0px;
}

/*--------------------------------------------------------------
  # 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 var(--trnspot-bdr-color);
  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(--trnspot-base);
}

.billing_title h2 {
  font-size: 34px;
  line-height: 34px;
  margin: 0;
  font-weight: 600;
  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 var(--trnspot-bdr-color);
  background-color: var(--trnspot-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--trnspot-gray);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--trnspot-gray);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid var(--trnspot-bdr-color);
  background-color: var(--trnspot-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 var(--trnspot-bdr-color);
}

.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(--trnspot-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--trnspot-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(--trnspot-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(--trnspot-white);
  border-right: 2px solid var(--trnspot-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(--trnspot-white);
}

.billing_details .checked-box input[type="checkbox"]:checked + label span:before {
  opacity: 1;
}

.billing_details_form .select-box .nice-select {
  border: 1px solid var(--trnspot-bdr-color);
  background-color: var(--trnspot-white);
  border-radius: 10px;
  color: var(--trnspot-gray);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.billing_details_form .nice-select .option:hover,
.billing_details_form .nice-select .option.focus,
.billing_details_form .nice-select .option.selected.focus {
  background-color: var(--trnspot-black);
}

.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-2 {
  position: relative;
  display: block;
}

.sidebar-order-summary {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--trnspot-bdr-color);
  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(--trnspot-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--trnspot-white);
  content: "";
}

.sidebar-order-summary .title-box h3 {
  font-size: 26px;
  line-height: 36px;
  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 var(--trnspot-bdr-color);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list > li:last-child {
  border-bottom: 1px solid var(--trnspot-bdr-color);
}

.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(--trnspot-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(--trnspot-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(--trnspot-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(--trnspot-black);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  align-items: center;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--trnspot-white);
  border: 2px solid var(--trnspot-bdr-color);
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 10px;
  color: var(--trnspot-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: -2px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--trnspot-base);
  border-color: var(--trnspot-base);
  content: '\f00c';
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--trnspot-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(--trnspot-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(--trnspot-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--trnspot-font);
}

.sidebar-order-summary__checked label a {
  color: var(--trnspot-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(--trnspot-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(--trnspot-white);
  border-right: 2px solid var(--trnspot-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(--trnspot-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(--trnspot-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(--trnspot-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  padding: 0;
  border: none;
  border-top: 1px solid var(--trnspot-bdr-color);
  padding-top: 22px;
  padding-bottom: 22px;
  font-family: var(--trnspot-font-two);
  text-align: center;
}

.wishlist-table tbody tr {
  vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
  border-bottom: 1px solid var(--trnspot-bdr-color);
}

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--trnspot-gray);
  vertical-align: middle;
  border-top: 1px solid var(--trnspot-bdr-color);
  border-bottom: 1px solid var(--trnspot-bdr-color);
  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(--trnspot-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 var(--trnspot-bdr-color);
  border-radius: 10px;
}

.wishlist-table h3 {
  color: var(--trnspot-black);
  font-size: 24px;
  margin-left: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--trnspot-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--trnspot-base);
}


.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--trnspot-white);
  padding: 115px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 70px;
  line-height: 1.0em;
  font-weight: 600;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--trnspot-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 60px 50px 52px;
  border-radius: var(--trnspot-bdr-radius);
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--trnspot-bdr-color-rgb), .50);
  background-color: rgba(var(--trnspot-bdr-color-rgb), .50);
  width: 100%;
  height: 60px;
  color: var(--trnspot-gray);
  font-size: 16px;
  font-family: var(--trnspot-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
  border-color: var(--trnspot-base);
  background-color: var(--trnspot-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--trnspot-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
}

.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(--trnspot-gray);
  background-color: var(--trnspot-white);
  color: var(--trnspot-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--trnspot-font);
  font-weight: 500;
  padding: 10px 15px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--trnspot-base);
  background-color: var(--trnspot-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(--trnspot-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--trnspot-white);
  padding: 115px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

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

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 70px;
  line-height: 1.0em;
  font-weight: 600;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--trnspot-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: var(--trnspot-bdr-radius);
  padding: 60px 50px 52px;
}

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

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--trnspot-bdr-color-rgb), .50);
  background-color: rgba(var(--trnspot-bdr-color-rgb), .50);
  width: 100%;
  height: 60px;
  color: var(--trnspot-gray);
  font-size: 16px;
  font-family: var(--trnspot-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus {
  border-color: var(--trnspot-base);
  background-color: var(--trnspot-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--trnspot-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
}

.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(--trnspot-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--trnspot-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(--trnspot-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(--trnspot-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(--trnspot-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--trnspot-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--trnspot-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--trnspot-black);
}

.login-one__form form .create-account p a {
  color: var(--trnspot-base);
  font-weight: 500;
}

/*==============================================
   Blog List Page
===============================================*/
.blog-list-page {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-list-page__content {
  position: relative;
  display: block;
}

.blog-list-page__single {
  position: relative;
  display: block;
  background: var(--trnspot-gray-bg);
  border-radius: 10px;
  margin-bottom: 30px;
  z-index: 1;
}

.blog-list-page__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 330px;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 2;
}

.blog-list-page__single-content {
  position: relative;
  display: block;
  padding: 39px 45px 37px;
  padding-left: 370px;
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 10px;
  z-index: 1;
}

.blog-list-page__single-content .meta-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 16px;
}

.blog-list-page__single-content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.blog-list-page__single-content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-list-page__single-content .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-list-page__single-content .meta-box li .icon span {
  position: relative;
  display: inline-block;
}

.blog-list-page__single-content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  top: 1px;
}

.blog-list-page__single-content .meta-box li .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.blog-list-page__single-content .meta-box li .text-box p {
  font-size: 15px;
  line-height: 25px;
  text-transform: capitalize;
}

.blog-list-page__single-content .meta-box li .text-box p a {
  color: var(--trnspot-gray);
}

.blog-list-page__single-content .meta-box li .text-box p a:hover {
  color: var(--trnspot-base);
}

.blog-list-page__single-content h2 {
  font-size: 30px;
  line-height: 37px;
  font-weight: 600;
  margin-bottom: 19px;
}

.blog-list-page__single-content h2 a {
  color: var(--trnspot-black);
}

.blog-list-page__single-content h2 a:hover {
  color: var(--trnspot-base);
}

.blog-list-page__single-content p {
  margin: 0;
}

.blog-list-page__single-content .btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.blog-list-page__single-content .btn-box a {
  color: var(--trnspot-black);
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-list-page__single-content .btn-box a:hover {
  color: var(--trnspot-base);
}

.blog-list-page__single-content .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 13px;
  margin-left: 2px;
  font-weight: 700;
}

/*==============================================
   Blog Standard Page
===============================================*/
.blog-standard-page {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-standard-page__content {
  position: relative;
  display: block;
  margin-right: 20px;
}

.blog-standard-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}


.blog-standard-page__single-img {
  position: relative;
  display: block;
  border-top-left-radius: var(--trnspot-bdr-radius);
  border-top-right-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
}

.blog-standard-page__single-img::before {
  background: rgba(255, 255, 255, 0.4);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.blog-standard-page__single:hover .blog-standard-page__single-img::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.blog-standard-page__single-img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-standard-page__single:hover .blog-standard-page__single-img img {
  transform: scale(1);
}

.blog-standard-page__single-content {
  position: relative;
  display: block;
  padding-top: 20px;
  margin-top: -60px;
  margin-right: 15px;
  z-index: 1;
}

.blog-standard-page__single-content .date-box {
  position: absolute;
  top: 0;
  right: 15px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--trnspot-base);
  z-index: 5;
}

.blog-standard-page__single-content .date-box::before {
  position: absolute;
  top: 0px;
  right: -15px;
  width: 15px;
  border-bottom: 20px solid #c1401a;
  border-right: 15px solid transparent;
  border-left: 0px solid transparent;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.blog-standard-page__single-content .date-box h2 {
  color: var(--trnspot-white);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.blog-standard-page__single-content .date-box p {
  color: var(--trnspot-white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-standard-page__single-content-inner {
  position: relative;
  display: block;
  background: var(--trnspot-white);
  padding: 18px 35px 42px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  border-bottom-left-radius: var(--trnspot-bdr-radius);
  border-bottom-right-radius: var(--trnspot-bdr-radius);
}

.blog-standard-page__single-content-inner .meta-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 34px;
}

.blog-standard-page__single-content-inner .meta-box::before {
  position: absolute;
  left: -35px;
  bottom: 0;
  right: -35px;
  height: 2px;
  background: rgba(var(--trnspot-bdr-color-rgb), 0.45);
  content: "";
}

.blog-standard-page__single-content-inner .meta-box::after {
  position: absolute;
  left: 0;
  width: 60px;
  height: 2px;
  bottom: 0px;
  background: var(--trnspot-base);
  content: "";
  z-index: 5;
}

.blog-standard-page__single-content-inner .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.blog-standard-page__single-content-inner .meta-box li:last-child {
  margin-right: 0px;
}

.blog-standard-page__single-content-inner .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-standard-page__single-content-inner .meta-box li .icon span {
  position: relative;
  display: inline-block;
}

.blog-standard-page__single-content-inner .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  top: 1px;
}

.blog-standard-page__single-content-inner .meta-box li .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.blog-standard-page__single-content-inner .meta-box li .text-box p {
  font-size: 15px;
  line-height: 25px;
  text-transform: capitalize;
}

.blog-standard-page__single-content-inner .meta-box li .text-box p a {
  color: var(--trnspot-gray);
}

.blog-standard-page__single-content-inner .meta-box li .text-box p a:hover {
  color: var(--trnspot-base);
}

.blog-standard-page__single-content-inner h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 19px;
}

.blog-standard-page__single-content-inner h2 a {
  color: var(--trnspot-black);
}

.blog-standard-page__single-content-inner h2 a:hover {
  color: var(--trnspot-base);
}

.blog-standard-page__single-content-inner p {
  margin: 0;
}

.blog-standard-page__single-content-inner .btn-box {
  position: relative;
  display: block;
  margin-top: 27px;
}

.blog-standard-page__single-content-inner .btn-box a {
  color: var(--trnspot-black);
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-standard-page__single-content-inner .btn-box a:hover {
  color: var(--trnspot-base);
}

.blog-standard-page__single-content-inner .btn-box a span:before {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 13px;
  margin-left: 2px;
  font-weight: 700;
}

/*==============================================
   Blog Details
===============================================*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-right: 20px;
}

.blog-details__content-top {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.blog-details__content-top .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--trnspot-bdr-radius);
  margin-bottom: 28px;
}

.blog-details__content-top .img-box img {
  width: 100%;
}

.blog-details__content-top .meta-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.blog-details__content-top .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.blog-details__content-top .meta-box li:last-child {
  margin-right: 0px;
}

.blog-details__content-top .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-details__content-top .meta-box li .icon span {
  position: relative;
  display: inline-block;
}

.blog-details__content-top .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  top: 1px;
}

.blog-details__content-top .meta-box li .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.blog-details__content-top .meta-box li .text-box p {
  font-size: 15px;
  line-height: 25px;
  text-transform: capitalize;
}

.blog-details__content-top .meta-box li .text-box p a {
  color: var(--trnspot-gray);
}

.blog-details__content-top .meta-box li .text-box p a:hover {
  color: var(--trnspot-base);
}

.blog-details__content-top h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.blog-details__content-top .text1 {
  margin: 0;
  margin-bottom: 26px;
}

.blog-details__content-top .text2 {
  margin: 0;
}

.blog-details__content-text1 {
  position: relative;
  display: block;
}

.blog-details__content-text1 h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.blog-details__content-text1 .text1 {
  margin: 0;
}

.blog-details__content-text1 .text2 {
  margin: 0;
  margin-top: 26px;
}

.blog-details__content-img1 {
  position: relative;
  display: block;
  margin-top: 42px;
}

.blog-details__content-img1-single {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.blog-details__content-img1-single img {
  width: 100%;
}

.blog-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 43px;
}

.blog-details__content-text2 h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-details__content-text2 .text1 {
  position: relative;
  display: block;
  margin-top: 24px;
}

.blog-details__content-text2-list {
  position: relative;
  display: block;
  margin-top: 23px;
}

.blog-details__content-text2-list li {
  position: relative;
  display: block;
}

.blog-details__content-text2-list li + li {
  margin-top: 12px;
}

.blog-details__content-text2-list li p {
  margin: 0;
}

.blog-details__content-text2-list li p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  line-height: 15px;
  margin-right: 5px;
  font-weight: 700;
}

.blog-details__content-text3 {
  position: relative;
  display: block;
  margin-top: 35px;
}

.blog-details__content-text3 h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-details__content-text3 p {
  position: relative;
  display: block;
  margin-top: 24px;
}

.blog-details__content-text4 {
  position: relative;
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--trnspot-bdr-color);
  border-bottom: 3px solid var(--trnspot-base);
  padding: 33px 40px 40px;
  margin-top: 42px;
  border-radius: 10px;
}

.blog-details__content-text4 .img-box {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 6px;
}

.blog-details__content-text4 .img-box img {
  width: 100%;
}

.blog-details__content-text4 .content-box {
  position: relative;
  display: block;
  margin-left: 40px;
  flex: 1;
}

.blog-details__content-text4 .content-box h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.blog-details__content-text4 .content-box > span {
  color: var(--trnspot-base);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--trnspot-font-two);
}

.blog-details__content-text4 .content-box p {
  margin: 0;
  margin-top: 10px;
}

.blog-details__content-text4 .content-box .social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
}

.blog-details__content-text4 .content-box .social-links > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trnspot-black);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--trnspot-bdr-color);
  z-index: 1;
}

.blog-details__content-text4 .content-box .social-links > a:hover {
  color: var(--trnspot-white);
  background: var(--trnspot-base);
  border-color: var(--trnspot-base);
}

.blog-details__content-text4 .content-box .social-links > a + a {
  margin-left: 10px;
}

.blog-details__content-text4 .content-box .social-links > a > span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  z-index: 1;
}

.blog-details__content-text5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  border-top: 1px solid var(--trnspot-bdr-color);
  border-bottom: 1px solid var(--trnspot-bdr-color);
  padding-top: 26px;
  padding-bottom: 24px;
}


.blog-details__content-text5-tag {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__content-text5-tag .title-box {
  position: relative;
  display: block;
}

.blog-details__content-text5-tag .title-box h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-details__content-text5-tag ul {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 25px;
}

.blog-details__content-text5-tag ul li {
  position: relative;
  display: block;
  margin-right: 15px;
}

.blog-details__content-text5-tag ul li:last-child {
  margin-right: 0px;
}

.blog-details__content-text5-tag ul li a {
  color: var(--trnspot-gray);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--trnspot-gray-bg);
  padding: 9px 20px 8px;
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 10px;
}

.blog-details__content-text5-tag ul li a:hover {
  color: var(--trnspot-white);
  background: var(--trnspot-base);
  border-color: var(--trnspot-base);
}


.blog-details__content-text5-share {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__content-text5-share .title-box {
  position: relative;
  display: block;
}

.blog-details__content-text5-share .title-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-details__content-text5-share ul {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 25px;
}

.blog-details__content-text5-share ul li {
  position: relative;
  display: block;
  margin-right: 10px;
}

.blog-details__content-text5-share ul li:last-child {
  margin-right: 0px;
}

.blog-details__content-text5-share ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--trnspot-black);
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 50%;
  overflow: hidden;
}

.blog-details__content-text5-share ul li a:hover {
  border-color: var(--trnspot-base);
  background: var(--trnspot-base);
  color: var(--trnspot-white);
}

.blog-details__content-text5-share ul li a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.comment-one {
  position: relative;
  display: block;
  margin-top: 48px;
}

.comment-one .title-box {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.comment-one .title-box h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

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

.comment-one__single.style2 {
  padding-left: 80px;
}

.comment-one__single + .comment-one__single {
  margin-top: 52px;
}

.comment-one__single-inner {
  position: relative;
  display: block;
  padding-left: 110px;
}

.comment-one__img {
  position: absolute;
  top: 4px;
  left: 0;
  width: 80px;
  border-radius: 10px;
  overflow: hidden;
}

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

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-one__content-top .title-box {
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.comment-one__content-top .title-box h2 {
  font-size: 25px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.comment-one__content-top .title-box p {
  font-weight: 500;
}

.comment-one__content-top .title-box p span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
  margin-right: 5px;
}

.comment-one__content-top .btn-box {
  position: relative;
  display: block;
}

.comment-one__content-top .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--trnspot-black);
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--trnspot-gray-bg);
  border: 1px solid var(--trnspot-bdr-color);
  padding: 7px 20px 4px;
  border-radius: 5px;
  font-family: var(--trnspot-font-two);
}

.comment-one__content-top .btn-box a:hover {
  background: var(--trnspot-base);
  color: var(--trnspot-white);
  border-color: var(--trnspot-base);
}

.comment-one__content-text {
  position: relative;
  display: block;
  margin-top: 11px;
}

.comment-one__content-text p {
  margin: 0;
}

.comment-form {
  position: relative;
  display: block;
  margin-top: 44px;
}

.comment-form .title-box {
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.comment-form .title-box h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 14px;
}

.comment-form .title-box p {
  margin: 0;
}

.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"],
.comment-form .input-box textarea {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--trnspot-bdr-color);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--trnspot-gray);
  border-radius: 5px;
  font-family: var(--trnspot-font);
  width: 100%;
  outline: none;
  resize: none;
}

.comment-form .input-box textarea {
  height: 120px;
  padding-top: 11px;
}


.comment-form .input-box .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.comment-form .input-box .icon.style2 {
  top: 11%;
  transform: translateY(0%);
}

.comment-form .input-box .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 16px;
}

.comment-form__checkbox {
  position: relative;
  display: block;
  margin-top: -10px;
  margin-bottom: 44px;
}

.comment-form__checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--trnspot-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  font-family: var(--trnspot-font);
  cursor: pointer;
}

.comment-form__checkbox input[type="checkbox"] {
  display: none;
}

.comment-form__checkbox input[type="checkbox"] + label span {
  position: absolute;
  display: block;
  top: 4px;
  left: 0px;
  width: 19px;
  height: 19px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid var(--trnspot-bdr-color);
  border-radius: 2px;
  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;
}

.comment-form__checkbox label span:before {
  position: absolute;
  top: 3px;
  left: 5px;
  display: block;
  border-bottom: 2px solid var(--trnspot-base);
  border-right: 2px solid var(--trnspot-base);
  content: '';
  width: 5px;
  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;
}

.comment-form__checkbox input[type="checkbox"]:checked + label span {
  border: 1px solid var(--trnspot-bdr-color);
}

.comment-form__checkbox input[type="checkbox"]:checked + label span:before {
  opacity: 1;
}

.comment-form__btn {
  position: relative;
  display: block;
}

/***
=============================================
Contact Page Info
=============================================
***/
.contact-page-info {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
  z-index: 1;
}

.contact-page-info__single {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--trnspot-white);
  border: 3px solid var(--trnspot-bdr-color);
  padding: 0px 30px 37px;
  border-radius: var(--trnspot-bdr-radius);
  overflow: hidden;
  margin-bottom: 30px;
}

.contact-page-info__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 80px;
  background: var(--trnspot-gray-bg);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  margin: 0 auto 23px;
  z-index: 1;
}

.contact-page-info__single-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--trnspot-base);
  transition-delay: 0.5s;
  transition: .5s;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(-70deg) scale(0.0);
  -ms-transform: perspective(400px) rotateX(-70deg) scale(0.0);
  transform: perspective(400px) rotateX(-70deg) scale(0.0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: -1;
}

.contact-page-info__single:hover .contact-page-info__single-icon:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.contact-page-info__single-icon span {
  position: relative;
  display: block;
  line-height: 0px;
}

.contact-page-info__single-icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 40px;
  line-height: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page-info__single:hover .contact-page-info__single-icon span::before {
  color: var(--trnspot-white);
}

.contact-page-info__single-text {
  position: relative;
  display: block;
}

.contact-page-info__single-text h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.contact-page-info__single-text p {
  margin: 0;
}

.contact-page-info__single-text p a {
  color: var(--trnspot-black);
}

.contact-page-info__single-text p a:hover {
  color: var(--trnspot-base);
}


/***
=============================================
Contact Page
=============================================
***/
.contact-page {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  z-index: 1;
}

.contact-page__google-map {
  position: relative;
  display: block;
  margin-right: 40px;
}

.contact-page__google-map-one {
  position: relative;
  display: block;
  border: none;
  height: 650px;
  width: 100%;
  border-radius: 10px;
  filter: grayscale(100%);
}

.contact-page__form-box {
  position: relative;
  display: block;
  z-index: 2;
}

.contact-page__form-box .sec-title {
  padding-bottom: 42px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-page__form .input-box .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.contact-page__form .input-box .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--trnspot-base);
  font-size: 15px;
}

.contact-page__form .input-box input[type="text"],
.contact-page__form .input-box input[type="email"] {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background-color: var(--trnspot-white);
  border: 1px solid var(--trnspot-bdr-color);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--trnspot-gray);
  border-radius: var(--trnspot-bdr-radius);
  font-family: var(--trnspot-font);
}

.contact-page__form .input-box .select-box {
  width: 100%;
}

.contact-page__form .input-box .nice-select {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background-color: var(--trnspot-white);
  border: 1px solid var(--trnspot-bdr-color);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 14px;
  line-height: 48px;
  font-weight: 400;
  color: var(--trnspot-gray);
  border-radius: var(--trnspot-bdr-radius);
  font-family: var(--trnspot-font);
  float: none;
}

.contact-page__form .input-box .nice-select:after {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--trnspot-base);
  border-right: 1px solid var(--trnspot-base);
  margin-top: 0px;
  z-index: 10;
}

.contact-page__form .input-box .nice-select .option {
  color: var(--trnspot-white);
}

.contact-page__form .input-box textarea {
  position: relative;
  display: block;
  height: 50px;
  width: 100%;
  background-color: var(--trnspot-white);
  border: 1px solid var(--trnspot-bdr-color);
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--trnspot-gray);
  border-radius: var(--trnspot-bdr-radius);
  font-family: var(--trnspot-font);
  width: 100%;
  height: 150px;
  padding-top: 11px;
  outline: none;
  resize: none;
}

.contact-page__form .input-box .icon.style2 {
  top: 11%;
  transform: translateY(0%);
}

.contact-page__form-btn {
  position: relative;
  display: block;
}


































/***
=============================================
End
=============================================
***/
.clients-one {
  position: relative;
  padding: 30px 0;
  background: #ffffff;
}

.clients-one .sec-title {
  margin-bottom: 10px;
}

.clients-one .sub-title {
  display: inline-block;
  color: var(--trnspot-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.clients-one .sec-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--trnspot-black);
  margin-bottom: 12px;
}

.clients-one .sec-title p {
  color: #777;
}

.client-item {
  background: #fff;
  height: 140px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: .4s;
  border: 1px solid #e8edf5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.client-item img {
  max-width: 200px;
  max-height: 150px;
  width: auto;
  transition: .4s;
  /* padding: 10px; */
}

.client-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

.client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.clients-carousel .owl-stage {
  display: flex;
  align-items: center;
  margin: 10px;
}

.clients-carousel .owl-nav {
  display: none;
}

.clients-carousel .owl-dots {
  margin-top: 35px;
  text-align: center;
}

.clients-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #cfd8e3;
  margin: 5px;
  display: block;
  border-radius: 50%;
}

.clients-carousel .owl-dot.active span {
  background: var(--trnspot-base);
}

@media(max-width:767px) {

  .clients-one {
    padding: 70px 0;
  }

  .clients-one .sec-title h2 {
    font-size: 30px;
  }

  .client-item {
    height: 120px;
  }

  .client-item img {
    max-width: 120px;
  }
}

/* ================================ */
.mission-vision-section {
  padding: 80px 0;
  background: #f5f7fa;
}

.mission-vision-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mission-vision-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 35px 30px;
  background: #ffffff;
  border-radius: 14px;
  border-left: 5px solid #00adef;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  background: rgba(0, 173, 239, 0.08);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.mission-vision-card:hover::before {
  transform: scale(1.3);
}

.mission-vision-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 65px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e3092, #00adef);
  color: #ffffff;
  border-radius: 12px;
  font-size: 27px;
  box-shadow: 0 8px 20px rgba(46, 48, 146, 0.22);
}

.mission-vision-content {
  position: relative;
  z-index: 1;
}

.mission-vision-content span {
  display: inline-block;
  margin-bottom: 5px;
  color: #00adef;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mission-vision-content h3 {
  margin: 0 0 10px;
  color: #262261;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.mission-vision-content p {
  margin: 0;
  color: #606060;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .mission-vision-section {
    padding: 55px 0;
  }

  .mission-vision-wrapper {
    grid-template-columns: 1fr;
  }

  .mission-vision-card {
    padding: 28px 22px;
    gap: 16px;
  }

  .mission-vision-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    font-size: 23px;
  }

  .mission-vision-content h3 {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .mission-vision-card {
    flex-direction: column;
  }
}

/* ==================== */
.project-one__single-img .inner {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

.project-one__single-img .inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Sticky Sidebar */
.sidebar {
  position: sticky;
  top: 120px;
  /* Adjust according to your header height */
  z-index: 10;
}

/* Mobile View */
@media (max-width: 991px) {
  .sidebar {
    position: relative;
    top: 0;
  }
}

/* ========================== */

/* ======================================
        ||         FULL STYLESHEET           ||
        ====================================== */



.theme-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.whatsappbtn {
  background-color: #25D366;
  border: none;
}

.whatsappbtn:hover {
  background-color: #128C7E;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  cursor: pointer;
}

/* --- Floating Buttons Container --- */
.floating-contact-btn {
  position: fixed;
  bottom: 20px;
  /* Space from the bottom */
  right: 10px;
  /* Space from the right */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Aligns items to the center of the container */
  gap: 10px;
  /* Creates space between the buttons */
  z-index: 1050;
}

/* Floating Button Styles */
.floating-contact-btn > div,
.floating-contact-btn > a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
  /* For the link element */
}

.floating-contact-btn > div:hover,
.floating-contact-btn > a:hover {
  transform: scale(1.1);
}

.floating-whatsapp-btn {
  background-color: #25D366;
}

.floating-phone-btn {
  background-color: #34B7F1;
}

.floating-brochure-btn {
  background-color: #f53030;
}

.floating-contact-btn img {
  width: 55px;
}

.floating-contact-btn i {
  color: white;
  font-size: 2rem;
}

.icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Modal Overlay and Container */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-content-wrapper {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-50px);
  opacity: 0;
}

.modal-overlay.show .modal-content-wrapper {
  transform: translateY(0);
  opacity: 1;
}

/* Modal Header */
.modal-header {
  background-color: #25D366;
  color: white;
  padding: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.modal-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
}

/* Form Styling */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  font-weight: 500;
  color: #4a4a4a;
  display: block;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-submit {
  background-color: #25d366;
  border: none;
  font-weight: bold;
  color: white;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.btn-submit:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

/* Corner Modal Specific Styles */
.corner-modal-overlay {
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px;
}

.corner-modal-overlay .modal-content-wrapper {
  width: 100%;
  max-width: 400px;
  transform: translateY(50px);
  margin: 0;
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 2rem;
    /* Space from the bottom on mobile */
    right: 1rem;
    /* Space from the right on mobile */
    gap: 0.75rem;
  }

  .floating-contact-btn > div,
  .floating-contact-btn > a {
    width: 50px;
    height: 50px;
  }

  .floating-contact-btn img {
    width: 50px;
  }
}

/* ---------------- */
.sp-career {
  padding: 80px 0;
  background: #f7f9fc;
}

.sp-career .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.sp-career-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.sp-career-heading span {
  color: #00adef;
  font-weight: 700;
  text-transform: uppercase;
}

.sp-career-heading h2 {
  margin: 10px 0 15px;
  color: #262261;
  font-size: 38px;
}

.sp-career-heading p {
  margin: 0;
  color: #666;
}

.sp-job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.sp-job-card {
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(38, 34, 97, 0.08);
  transition: 0.3s;
}

.sp-job-card:hover {
  transform: translateY(-5px);
}

.sp-job-card h3 {
  margin: 0 0 12px;
  color: #262261;
  font-size: 20px;
}

.sp-job-card p {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
}

.sp-job-card p i {
  margin-right: 7px;
  color: #00adef;
}

.sp-apply-btn {
  width: 100%;
  padding: 12px 18px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #2e3092, #00adef);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.sp-career-form {
  max-width: 850px;
  margin: auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(38, 34, 97, 0.1);
  scroll-margin-top: 100px;
}

.sp-career-form h2 {
  margin: 0 0 25px;
  color: #262261;
  text-align: center;
}

.sp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.sp-form-grid input,
.sp-form-grid select,
.sp-form-grid textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 7px;
  outline: none;
  font-family: inherit;
}

.sp-form-grid input:focus,
.sp-form-grid select:focus,
.sp-form-grid textarea:focus {
  border-color: #00adef;
}

.sp-full {
  grid-column: 1 / -1;
}

.sp-form-grid button {
  padding: 15px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #2e3092, #00adef);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.sp-form-grid button i {
  margin-left: 8px;
}

@media (max-width: 991px) {
  .sp-job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sp-career {
    padding: 60px 0;
  }

  .sp-job-grid,
  .sp-form-grid {
    grid-template-columns: 1fr;
  }

  .sp-career-heading h2 {
    font-size: 30px;
  }

  .sp-career-form {
    padding: 25px 20px;
  }

  .sp-full {
    grid-column: auto;
  }
}

/* ================================== */
.sp-director-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.sp-director-section .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.sp-director-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.sp-director-image {
  position: relative;
}

.sp-director-image img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(38, 34, 97, 0.16);
}

.sp-director-name {
  position: absolute;
  right: -25px;
  bottom: 25px;
  min-width: 230px;
  padding: 18px 22px;
  border-left: 4px solid #00adef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.sp-director-name h4 {
  margin: 0 0 4px;
  color: #262261;
  font-size: 19px;
}

.sp-director-name span {
  color: #666666;
  font-size: 14px;
}

.sp-director-subtitle {
  display: inline-block;
  margin-bottom: 10px;
  color: #00adef;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sp-director-content h2 {
  margin: 0 0 22px;
  color: #262261;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.sp-director-content p {
  margin: 0 0 16px;
  color: #626262;
  font-size: 16px;
  line-height: 1.8;
}

.sp-director-sign {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid #00adef;
}

.sp-director-sign strong {
  display: block;
  margin-bottom: 4px;
  color: #262261;
  font-size: 18px;
}

.sp-director-sign span {
  color: #777777;
  font-size: 14px;
}

@media (max-width: 991px) {
  .sp-director-wrapper {
    grid-template-columns: 1fr;
  }

  .sp-director-image {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .sp-director-section {
    padding: 60px 0;
  }

  .sp-director-wrapper {
    gap: 40px;
  }

  .sp-director-image img {
    height: 400px;
  }

  .sp-director-name {
    right: 15px;
    bottom: 15px;
  }

  .sp-director-content h2 {
    font-size: 30px;
  }
}


/* =================== */

.machine-facility-section {
  padding: 90px 0;
  background: #f5f8fc;
}

.machine-facility-section * {
  box-sizing: border-box;
}

.machine-facility-section .container {
  width: min(1250px, calc(100% - 30px));
  margin: auto;
}

.machine-facility-heading {
  max-width: 650px;
  margin: 0 auto 42px;
  text-align: center;
}

.machine-facility-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: #009d5b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.machine-facility-heading h2 {
  margin: 0 0 12px;
  color: #102b4e;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
}

.machine-facility-heading p {
  margin: 0;
  color: #627083;
  font-size: 16px;
  line-height: 1.7;
}

.machine-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.machine-facility-card {
  overflow: hidden;
  border: 1px solid #e4eaf1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(16, 43, 78, 0.08);
  transition: 0.35s ease;
}

.machine-facility-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(16, 43, 78, 0.14);
}

.machine-facility-image {
  position: relative;
  display: flex;
  height: 280px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, #ffffff 20%, #e8f2fb 100%);
}

.machine-facility-image::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 20px;
  left: 18%;
  height: 18px;
  border-radius: 50%;
  background: rgba(10, 35, 65, 0.15);
  filter: blur(12px);
}

.machine-facility-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}

.machine-facility-card:hover img {
  transform: scale(1.05);
}

.machine-facility-content {
  padding: 22px 24px 25px;
  border-top: 3px solid #0d6efd;
  text-align: center;
}

.machine-facility-content h3 {
  margin: 0 0 8px;
  color: #102b4e;
  font-size: 20px;
  font-weight: 750;
}

.machine-facility-content p {
  margin: 0;
  color: #687689;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .machine-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .machine-facility-section {
    padding: 65px 0;
  }

  .machine-facility-grid {
    grid-template-columns: 1fr;
  }

  .machine-facility-image {
    height: 250px;
  }
}

/* -- */
/* Welding Machines Content */
.services-details__content {
  position: relative;
}

/* Machine Image */
.services-details__content-img1 {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.services-details__content-img1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 55%,
      rgba(10, 35, 65, 0.22) 100%);
  pointer-events: none;
}

.services-details__content-img1 img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.services-details__content-img1:hover img {
  transform: scale(1.04);
}

/* Machine Information */
.services-details__content-text1 {
  position: relative;
  margin: -55px 30px 45px;
  padding: 26px 30px;
  background: #ffffff;
  border-radius: 14px;
  border-left: 5px solid #ff8a00;
  box-shadow: 0 12px 35px rgba(10, 35, 65, 0.12);
  z-index: 2;
  transition: all 0.35s ease;
}

.services-details__content-text1:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(10, 35, 65, 0.17);
}

.services-details__content-text1 h2 {
  margin-bottom: 10px;
  color: #102b4e;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.services-details__content-text1 p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.75;
}

/* Bottom Buttons */
.product-details__inner {
  margin-top: 10px;
  padding: 28px;
  background: linear-gradient(135deg, #f6f9fc, #ffffff);
  border: 1px solid #e8edf3;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}


/* Responsive */
@media (max-width: 767px) {
  .services-details__content-img1 {
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .services-details__content-img1 img {
    border-radius: 12px;
  }

  .services-details__content-text1 {
    margin: -25px 12px 32px;
    padding: 20px;
    border-radius: 12px;
  }

  .services-details__content-text1 h2 {
    font-size: 22px;
  }

  .services-details__content-text1 p {
    font-size: 15px;
  }

  .product-details__inner {
    padding: 20px;
  }

}

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

.machine-specification h5 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0d2b52;
}

.machine-model {
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ff8a00;
  text-transform: uppercase;
}

.machine-specification ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.machine-specification ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
}

.machine-specification ul li i {
  color: #ff8a00;
  font-size: 14px;
}

/* ------------------- */
.certification-section {
  padding: 90px 0;
  background: #fff;
}

.certification-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.certificate-box {
  width: 340px;
  flex-shrink: 0;
  text-align: center;
  padding: 35px 30px;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.certificate-image {
  margin-bottom: 25px;
}

.certificate-image img {
  width: 100%;
  max-width: 220px;
}

.certificate-box h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 20px 0 15px;
}

.certificate-box span {
  display: block;
  color: #ff8c00;
  font-size: 20px;
  font-weight: 600;
}

.qualification-box {
  flex: 1;
  padding-left: 50px;
  border-left: 3px solid #0b63ce;
}

.qualification-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}

.qualification-item {
  margin-bottom: 35px;
}

.qualification-item:last-child {
  margin-bottom: 0;
}

.qualification-item h3 {
  color: #0056b3;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.qualification-item p {
  color: #555;
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}

@media(max-width:991px) {

  .certification-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .certificate-box {
    width: 100%;
  }

  .qualification-box {
    border-left: none;
    border-top: 3px solid #0b63ce;
    padding-left: 0;
    padding-top: 35px;
  }

  .qualification-box h2 {
    font-size: 34px;
  }

}

@media(max-width:576px) {

  .certification-section {
    padding: 70px 0;
  }

  .certificate-box {
    padding: 25px;
  }

  .certificate-box h1 {
    font-size: 24px;
  }

  .certificate-box span {
    font-size: 18px;
  }

  .qualification-box h2 {
    font-size: 28px;
  }

  .qualification-item h3 {
    font-size: 20px;
  }

  .qualification-item p {
    font-size: 15px;
  }

}

/* --------------------- */
/* ================================
   S&P ROADMAP SECTION
================================ */

.sp-roadmap-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(20, 87, 166, 0.10), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(242, 119, 36, 0.10), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.sp-roadmap-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(20, 87, 166, 0.05);
}

.sp-roadmap-section::after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(242, 119, 36, 0.06);
}

.sp-roadmap-section .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
  padding: 0 15px;
}

.sp-roadmap-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.sp-roadmap-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #f07724;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sp-roadmap-subtitle::before,
.sp-roadmap-subtitle::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #f07724;
}

.sp-roadmap-heading h2 {
  margin: 0 0 18px;
  color: #102b4e;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

.sp-roadmap-heading p {
  max-width: 680px;
  margin: auto;
  color: #637083;
  font-size: 16px;
  line-height: 1.8;
}

.sp-roadmap-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 25px 10px 35px;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #1457a6 #e7edf5;
}

.sp-roadmap-scroll:active {
  cursor: grabbing;
}

.sp-roadmap-scroll::-webkit-scrollbar {
  height: 8px;
}

.sp-roadmap-scroll::-webkit-scrollbar-track {
  background: #e7edf5;
  border-radius: 20px;
}

.sp-roadmap-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #1457a6, #f07724);
  border-radius: 20px;
}

.sp-roadmap-track {
  position: relative;
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  padding: 0 50px;
}

.sp-roadmap-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 20px;
  background: linear-gradient(90deg,
      #1457a6 0%,
      #2e8acb 28%,
      #f3b400 48%,
      #f07724 68%,
      #1457a6 100%);
  box-shadow: 0 5px 16px rgba(18, 65, 115, 0.14);
}

.sp-roadmap-item {
  position: relative;
  flex: 0 0 280px;
  width: 280px;
  min-height: 590px;
  margin-right: 35px;
}

.sp-roadmap-item:last-child {
  margin-right: 0;
}

.sp-roadmap-card {
  position: absolute;
  left: 50%;
  width: 300px;
  padding: 25px 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(18, 65, 115, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 15px 45px rgba(16, 43, 78, 0.10);
  transition: 0.35s ease;
}

.sp-roadmap-card:hover {
  transform: translateX(-50%) translateY(-8px);
  border-color: rgba(240, 119, 36, 0.35);
  box-shadow: 0 22px 55px rgba(16, 43, 78, 0.16);
}

.item-top .sp-roadmap-card {
  top: 0;
}

.item-bottom .sp-roadmap-card {
  bottom: 0;
}

.sp-roadmap-year {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 17px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1457a6, #07356d);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(20, 87, 166, 0.22);
}

.sp-roadmap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: rgba(20, 87, 166, 0.09);
  color: #1457a6;
  font-size: 24px;
}

.sp-company-logo-text {
  min-height: 44px;
  margin-bottom: 12px;
  color: #1457a6;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.sp-roadmap-card h3 {
  margin: 0 0 10px;
  color: #102b4e;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.sp-roadmap-card p {
  margin: 0;
  color: #67758a;
  font-size: 14px;
  line-height: 1.7;
}

.sp-client-name {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #d8e1ec;
  color: #f07724;
  font-size: 13px;
  font-weight: 800;
}

.sp-roadmap-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 84px;
  transform: translate(-50%, -50%);
  background: #1457a6;
}

.item-top .sp-roadmap-line {
  margin-top: 0px;
}

.item-bottom .sp-roadmap-line {
  margin-top: 0px;
}

.sp-roadmap-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29px;
  height: 29px;
  transform: translate(-50%, -50%);
  border: 7px solid #ffffff;
  border-radius: 50%;
  background: #1457a6;
  box-shadow:
    0 0 0 5px rgba(20, 87, 166, 0.20),
    0 6px 18px rgba(16, 43, 78, 0.20);
  transition: 0.3s ease;
}

.sp-roadmap-item:nth-child(2) .sp-roadmap-line,
.sp-roadmap-item:nth-child(2) .sp-roadmap-dot {
  background: #f3b400;
}

.sp-roadmap-item:nth-child(4) .sp-roadmap-line,
.sp-roadmap-item:nth-child(4) .sp-roadmap-dot {
  background: #f07724;
}

.sp-roadmap-item:hover .sp-roadmap-dot {
  transform: translate(-50%, -50%) scale(1.18);
}

.sp-roadmap-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: #6d7989;
  font-size: 13px;
  font-weight: 600;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

  .sp-roadmap-section {
    padding: 75px 0;
  }

  .sp-roadmap-heading {
    margin-bottom: 45px;
  }

  .sp-roadmap-heading h2 {
    font-size: 36px;
  }

  .sp-roadmap-track {
    padding: 0 35px;
  }

  .sp-roadmap-track::before {
    left: 35px;
    right: 35px;
  }

  .sp-roadmap-scroll-hint {
    display: flex;
  }
}

@media (max-width: 767px) {

  .sp-roadmap-section {
    padding: 60px 0;
  }

  .sp-roadmap-heading {
    text-align: left;
  }

  .sp-roadmap-subtitle::after {
    display: none;
  }

  .sp-roadmap-heading h2 {
    font-size: 30px;
  }

  .sp-roadmap-heading p {
    font-size: 15px;
  }

  .sp-roadmap-scroll {
    margin-right: -15px;
    padding-right: 15px;
  }

  .sp-roadmap-track {
    padding: 0 25px;
  }

  .sp-roadmap-track::before {
    left: 25px;
    right: 25px;
  }

  .sp-roadmap-item {
    flex-basis: 250px;
    width: 250px;
    min-height: 560px;
    margin-right: 22px;
  }

  .sp-roadmap-card {
    width: 225px;
    padding: 22px 17px;
  }
}

.sp-roadmap-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #dce4ed;
}

.sp-roadmap-logos-top {
  min-height: 72px;
  margin-top: 0;
  margin-bottom: 16px;
  padding-top: 0;
  border-top: 0;
}

.sp-roadmap-logos-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sp-roadmap-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 82px;
  /* padding: 8px 10px; */
  border: 1px solid #edf1f5;
  border-radius: 12px;
  background: #ffffff;
  transition: 0.3s ease;
}

.sp-roadmap-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 87, 166, 0.25);
  box-shadow: 0 8px 22px rgba(16, 43, 78, 0.10);
}

.sp-roadmap-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.sp-roadmap-logos-two .sp-roadmap-logo img {
  max-height: 42px;
}

@media (max-width: 767px) {
  .sp-roadmap-logo {
    min-height: 56px;
    padding: 7px;
  }

  .sp-roadmap-logo img {
    max-height: 45px;
  }

  .sp-roadmap-logos-two .sp-roadmap-logo img {
    max-height: 36px;
  }
}

/* -------------------------------- */
.welding-table-section {
  padding: 80px 0;
  background: #fff;
}

.welding-table-heading {
  text-align: center;
  margin-bottom: 35px;
}

.welding-table-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: #174f9e;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.welding-table-heading h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  color: #1d2d44;
}

.welding-table-responsive {
  overflow-x: auto;
}

.welding-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  border: 2px solid #174f9e;
  background: #fff;
}

.welding-table th,
.welding-table td {
  padding: 15px 18px;
  border: 1px solid #d5dce5;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: middle;
}

.welding-table thead th {
  background: #174f9e;
  color: #fff;
  text-align: left;
  font-weight: 700;
  border: 1px solid #174f9e;
}

.welding-table tbody tr:nth-child(even) {
  background: #f8f9fb;
}

.welding-table tbody tr:hover {
  background: #eef5ff;
}

.welding-table th:first-child,
.welding-table td:first-child {
  width: 80px;
  text-align: center;
  font-weight: 700;
}

.welding-table th:nth-child(2),
.welding-table td:nth-child(2) {
  width: 120px;
  font-weight: 600;
}

.welding-table th:last-child,
.welding-table td:last-child {
  width: 180px;
}

@media (max-width: 767px) {

  .welding-table {
    min-width: 100%;
  }

  .welding-table thead {
    display: none;
  }

  .welding-table,
  .welding-table tbody,
  .welding-table tr,
  .welding-table td {
    display: block;
    width: 100%;
  }

  .welding-table tr {
    margin-bottom: 18px;
    border: 1px solid #d5dce5;
    background: #fff;
  }

  .welding-table td {
    position: relative;
    padding: 14px 15px 14px 42%;
    border: 1px solid #e5e5e5;
    text-align: left !important;
  }

  .welding-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 14px;
    width: 35%;
    font-weight: 700;
    color: #174f9e;
  }
}

@media (max-width: 480px) {
  .welding-table td {
    padding: 14px;
  }

  .welding-table td::before {
    position: static;
    display: block;
    width: 100%;
    margin-bottom: 6px;
  }
}

/* ===================================
   Fabrication Content
=================================== */

.fabrication-content {
  width: 100%;
}

.fabrication-text {
  margin: 0 0 25px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
}


/* ===================================
   Fabrication Stats Strip
=================================== */

.fabrication-strip {
  width: 100%;
  display: flex;
  align-items: stretch;
  background: #10283d;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}


/* Single Item */

.fabrication-item {
  position: relative;
  width: 33.333%;
  padding: 22px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.fabrication-item:last-child {
  border-right: none;
}


/* Orange Bottom Accent */

.fabrication-item::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: #f58220;
  transition: all 0.3s ease;
}


/* Hover Effect */

.fabrication-item:hover {
  background: #16364f;
}

.fabrication-item:hover::after {
  left: 0;
  width: 100%;
}


/* Number / Value */

.fabrication-item h2 {
  margin: 0 0 7px;
  padding: 0;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}


/* Label */

.fabrication-item p {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
  color: #cbd5df;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}


/* ===================================
   Tablet View
=================================== */

@media (max-width: 991px) {

  .fabrication-item {
    padding: 20px;
  }

  .fabrication-item::after {
    left: 20px;
  }

  .fabrication-item h2 {
    font-size: 24px;
  }
}


/* ===================================
   Mobile View
=================================== */

@media (max-width: 767px) {

  .fabrication-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .fabrication-strip {
    flex-direction: column;
  }

  .fabrication-item {
    width: 100%;
    padding: 18px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .fabrication-item:last-child {
    border-bottom: none;
  }

  .fabrication-item h2 {
    font-size: 23px;
  }

  .fabrication-item p {
    font-size: 10px;
  }

  .fabrication-item::after {
    left: 20px;
  }

  .fabrication-item:hover::after {
    left: 0;
  }
}

/* =============== */
.certificate-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.certificate-heading {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}

.certificate-heading span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #f58220;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certificate-heading h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  color: #10283d;
}

.certificate-heading p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.certificate-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8edf2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}

.certificate-image {
  position: relative;
  height: 340px;
  padding: 20px;
  background: #eef2f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.certificate-card:hover .certificate-image img {
  transform: scale(1.04);
}

.certificate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 40, 61, 0.65);
  opacity: 0;
  transition: 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

.certificate-overlay a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f58220;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.certificate-overlay a:hover {
  transform: scale(1.1);
  background: #ffffff;
  color: #f58220;
}

.certificate-content {
  padding: 20px;
  text-align: center;
  border-top: 3px solid #f58220;
}

.certificate-content h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: #10283d;
}

.certificate-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}


/* Tablet */
@media (max-width: 991px) {
  .certificate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile */
@media (max-width: 767px) {
  .certificate-section {
    padding: 50px 0;
  }

  .certificate-heading h2 {
    font-size: 28px;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-image {
    height: 300px;
  }
}

/* --------------- */
.infra-section {
  position: relative;
  padding: 90px 0;
  background: #f7f8fa;
  overflow: hidden;
}

.infra-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(197, 148, 72, 0.08);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.infra-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}


/* Heading */

.infra-heading {
  max-width: 800px;
  margin: 0 auto 45px;
}

.infra-heading span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #b88942;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.infra-heading h1 {
  margin: 0 0 15px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #08233f;
}

.infra-heading p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}


/* Main Layout */

.infra-main {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}


/* Gallery */

.infra-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.infra-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.infra-img-large {
  grid-column: span 2;
  height: 180px;
}

.infra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.infra-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 27, 45, 0.72),
      transparent 55%);
}

.infra-img:hover img {
  transform: scale(1.08);
}

.infra-img-label {
  position: absolute;
  left: 18px;
  bottom: 15px;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}


/* Content */

.infra-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.infra-item {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e8ebee;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.infra-item:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* Number */

.infra-number {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08233f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 4px solid #c79a50;
}


/* Content Information */

.infra-info {
  flex: 1;
}

.infra-tag {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #b88942;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.infra-info h2 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: #08233f;
}

.infra-info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}


/* Highlight */

.infra-highlight {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 10px;
  background: #f6f1e8;
  border-left: 3px solid #c79a50;
  font-size: 11px;
  font-weight: 600;
  color: #4a4a4a;
}


/* Construction Gallery */

.construction-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.construction-gallery div {
  overflow: hidden;
  border-radius: 7px;
}

.construction-gallery img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.construction-gallery img:hover {
  transform: scale(1.07);
}


/* Tablet */

@media (max-width: 991px) {

  .infra-main {
    grid-template-columns: 1fr;
  }

  .infra-heading h1 {
    font-size: 34px;
  }

  .infra-img-large {
    height: 320px;
  }

  .infra-img {
    height: 220px;
  }
}


/* Mobile */

@media (max-width: 767px) {

  .infra-section {
    padding: 55px 0;
  }

  .infra-heading {
    margin-bottom: 30px;
  }

  .infra-heading h1 {
    font-size: 27px;
  }

  .infra-heading p {
    font-size: 14px;
  }

  .infra-gallery {
    grid-template-columns: 1fr;
  }

  .infra-img-large {
    grid-column: span 1;
    height: 220px;
  }

  .infra-img {
    height: 220px;
  }

  .infra-item {
    padding: 18px 15px;
    gap: 12px;
  }

  .infra-number {
    min-width: 42px;
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .infra-info h2 {
    font-size: 16px;
  }

  .construction-gallery {
    grid-template-columns: 1fr;
  }

  .construction-gallery img {
    height: 180px;
  }
}

/* ----------------------- */
.catalogue-btn-img {
  width: 80px;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.catalogue-btn-img:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 767px) {
  .catalogue-btn-img {
    width: 145px;
  }
}

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

.design-process-section {
  padding: 80px 0;
  background: #f7f9fb;
}

.design-process-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.design-process-heading {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.design-process-heading span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #c59046;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.design-process-heading h2 {
  margin: 0 0 15px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #0b2942;
}

.design-process-heading p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}


/* Grid */
.design-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}


/* Item */
.design-process-item {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #e5e9ed;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.design-process-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #c59046;
}


/* Number */
.process-number {
  min-width: 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b2942;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 4px solid #c59046;
}


/* Content */
.process-content h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
  color: #0b2942;
}

.process-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}


/* Tablet */
@media (max-width: 991px) {
  .design-process-heading h2 {
    font-size: 32px;
  }
}


/* Mobile */
@media (max-width: 767px) {

  .design-process-section {
    padding: 55px 0;
  }

  .design-process-heading {
    margin-bottom: 30px;
  }

  .design-process-heading h2 {
    font-size: 27px;
  }

  .design-process-grid {
    grid-template-columns: 1fr;
  }

  .design-process-item {
    padding: 18px 15px;
    gap: 12px;
  }

  .process-number {
    min-width: 42px;
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .process-content h3 {
    font-size: 16px;
  }

  .process-content p {
    font-size: 12px;
  }
}

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

.feature-strip {
  width: 100%;
  display: flex;
  background: #0d2438;
  border: 1px solid #ffffff;
}

.feature-item {
  width: 33.333%;
  padding: 16px 10px 13px;
  text-align: center;
  position: relative;
}

/* Vertical Divider */
.feature-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-item h2 {
  margin: 0 0 5px;
  color: #ff7a00;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-item span {
  display: block;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .feature-strip {
    flex-direction: column;
  }

  .feature-item {
    width: 100%;
    padding: 15px 10px;
  }

  .feature-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }

  .feature-item h2 {
    font-size: 15px;
  }

  .feature-item span {
    font-size: 7px;
  }
}

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