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

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --tedlife-font: 'Rubik', sans-serif;
  --tedlife-font-two: "Teko", sans-serif;
  --tedlife-gray: #000;
  --tedlife-gray-rgb: 97, 99, 104;
  --tedlife-base: #f8a515;
  --tedlife-base-rgb: 248, 165, 21;
  --tedlife-black: #121212;
  --tedlife-black-rgb: 18, 18, 18;
  --tedlife-primary: #f6f6f6;
  --tedlife-primary-rgb: 246, 246, 246;
  --tedlife-white: #ffffff;
  --tedlife-white-rgb: 255, 255, 255;
  --tedlife-bdr-radius: 8px;
}







/*=============== scrollbar-Css =============*/
::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: var(--tedlife-base);
  border-radius: 10px;
}

::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--tedlife-base);
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-image: linear-gradient(0deg, var(--tedlife-base) 0%, var(--tedlife-black) 47.60%, var(--tedlife-black) 99.23%);
}

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}





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

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

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

body.locked {
  overflow: hidden;
}

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

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

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

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

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

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

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

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



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

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

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

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

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

#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(--tedlife-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(--tedlife-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(--tedlife-base);
  opacity: 0.4;
}

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

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-top: -3px;
  margin-bottom: 42px;
  z-index: 1;
}

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

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--tedlife-black);
  font-weight: 400;
  font-family: var(--tedlife-font-two);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title__tagline-shape {
  position: relative;
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--tedlife-black);
}

.section-title__title {
  color: var(--tedlife-black);
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 15px 0 0;
}

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

/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  background-color: var(--tedlife-base);
  padding: 10px 40px 10px;
  border-radius: var(--tedlife-bdr-radius);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  overflow: hidden;
  font-family: var(--tedlife-font-two);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
  border-radius: 50px;
}

.thm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.thm-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -63%;
  width: 150%;
  height: 500%;
  border-radius: 45%;
  background-position: bottom top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(1.0) translateX(-50%);
  background: var(--tedlife-black);
  z-index: -1;
}

.thm-btn:hover::after {
  width: 0px;
  height: 0px;
  transform: scaleY(1.0) translateX(-50%);
}

.thm-btn:hover {
  color: var(--tedlife-white);
  transition-delay: 400ms;
}

.thm-btn span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.thm-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -3px;
  bottom: 0;
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0.0);
  background-color: var(--tedlife-black);
  z-index: -1;
}

.thm-btn:hover span::before {
  transform: scaleY(1.0);
  transition-delay: 400ms;

}






/* Proloader Css */

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

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

.scroll-to-top:hover {
  color: var(--tedlife-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(--tedlife-base);
  position: relative;
  overflow: hidden;
}

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

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


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

.main-header:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--tedlife-white-rgb), 0.05);
  z-index: -1;
}

.main-menu__top {
  position: relative;
  display: block;
  background: var(--tedlife-black) !important;
  width: 97%;
  margin: auto;
  border-radius: 10px;
  margin-bottom: 7px;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 11.5px 55px 7.5px;
  border-bottom: 1px solid rgba(var(--tedlife-white-rgb), .10);
}

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

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

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

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

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

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

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

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

.main-menu__contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tedlife-white);
  text-transform: uppercase;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.1em;
  line-height: 16px;
}

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

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

.main-menu__top-welcome-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--tedlife-white);
  text-transform: uppercase;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.1em;
  line-height: 16px;
}

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

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

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

.main-menu__top-time-icon span {
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: var(--tedlife-base);
}

.main-menu__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--tedlife-white);
  text-transform: uppercase;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.1em;
  line-height: 16px;
  margin-left: 10px;
}

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

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

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

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

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

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

.main-menu {
  position: absolute;
  display: block;
  background: #ffff;
  width: 90%;
  margin-left: 5%;
  border-radius: 10px;
}

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

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

.main-menu__left {
  display: block;
}

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

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

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

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

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

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

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

.main-menu__call-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--tedlife-white-rgb), .90);
  line-height: 14px;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-menu__call-number {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

.main-menu__btn:hover {
  color: var(--tedlife-base);
}

.main-menu__btn span::before {
  background-color: var(--tedlife-white);
}

.stricky-header.main-menu {
  background-color: #fff;
  box-shadow: 1px 1px 1px 1px #000;
}

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

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

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--tedlife-font-two);
  line-height: 20px;
}

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

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

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

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

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 42%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--tedlife-white);
  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(--tedlife-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: fixed;
  top: 164px;
  left: 75px;
  min-width: 90%;
  -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);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 31px 20px 31px;
  border-radius: var(--tedlife-bdr-radius);
  z-index: 9999;
}

/* Jab header sticky ho jaye tab top change ho jaye */
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    top: 100px;
}


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

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

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

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.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: 20px;
  line-height: 20px;
  color: var(--tedlife-gray);
  letter-spacing: 0.05em;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 13px 20px 7px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--tedlife-white);
  border-radius: var(--tedlife-bdr-radius);
  font-family: var(--tedlife-font-two);
  text-transform: uppercase;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--tedlife-primary);
  color: var(--tedlife-black);
}

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

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

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

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

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

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 90%;
  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(--tedlife-base);
  cursor: pointer;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

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

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

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

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

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

.mobile-nav__content .logo-box {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  padding: 10px;
  filter: drop-shadow(2px 4px 6px black);
  border-radius: 10px;
  margin-top: 28px;
}

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

.mobile-nav__content .main-menu__list li a.expanded {
  color: #fff;
}

.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(--tedlife-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(--tedlife-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(--tedlife-text-dark);
}

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

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

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

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

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

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

.mobile-nav__contact li {
  color: var(--tedlife-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

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

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



/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--tedlife-white);
  display: block !important;
  margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .megamenu-popup-content-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--tedlife-black);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--tedlife-base);
}

.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.megamenu-popup-content-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.megamenu-popup-content-one .row {
  --bs-gutter-y: 30px;
}

.megamenu-popup-content-one__single {
  background-color: var(--tedlife-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  text-align: center;
  border-radius: var(--tedlife-bdr-radius);
  transition: 500ms ease;
  transform: translateY(0px);
}

.megamenu-popup-content-one__single:hover {
  transform: translateY(-10px);
}

.megamenu-popup-content-one__image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--tedlife-bdr-radius);
  border-top-right-radius: var(--tedlife-bdr-radius);
}

.megamenu-popup-content-one__image img {
  max-width: 100%;
  width: 100%;
  border-top-left-radius: var(--tedlife-bdr-radius);
  border-top-right-radius: var(--tedlife-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.megamenu-popup-content-one__single:hover .megamenu-popup-content-one__image img {
  filter: blur(2px);
}

.megamenu-popup-content-one__btns {
  background-color: rgba(var(--tedlife-black-rgb), .70);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: top center;
  opacity: 0;
}

.megamenu-popup-content-one__single:hover .megamenu-popup-content-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: bottom center;
}

.megamenu-popup-content-one__title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  color: var(--tedlife-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 20px;
  padding-bottom: 17px;
}

.megamenu-popup-content-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.megamenu-popup-content-one__title a:hover {
  background-size: 100% 1px;
}

.megamenu-popup-content-one__btn {
  padding: 15px 20px 11px;
  width: 155px;
  text-align: center;
}

.megamenu-popup-content-one__btn span::before {
  background-color: var(--tedlife-white);
}

.megamenu-popup-content-one__btn:hover {
  color: var(--tedlife-base);
}


@media (max-width: 1199px) {
  .megamenu-popup-content-one__btns {
    flex-direction: column;
  }
}



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

.main-header-two:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--tedlife-black-rgb), 0.50);
  z-index: -1;
}

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

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 23px 55px 18px;
  border-bottom: 1px solid rgba(var(--tedlife-white-rgb), .10);
}

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

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

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--tedlife-white);
  font-weight: 400;
  font-family: var(--tedlife-font-two);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 18px;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--tedlife-base);
}

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

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

.main-menu-two__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--tedlife-white);
  text-transform: uppercase;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.1em;
  line-height: 16px;
  margin-left: 10px;
}

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

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

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

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

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

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

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

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

.main-menu-two__contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tedlife-white);
  text-transform: uppercase;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.1em;
  line-height: 16px;
}

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

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

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

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

.main-menu-two__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
}

.main-menu-two__logo {
  display: block;
  padding: 20px 0;
}

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

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

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

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

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

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

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

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

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

.main-menu-two__btn:hover {
  color: var(--tedlife-base);
}

.main-menu-two__btn span::before {
  background-color: var(--tedlife-white);
}

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

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

.main-header-three:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--tedlife-black-rgb), 0.50);
  z-index: -1;
}

.main-menu-four__top {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--tedlife-white-rgb), .10);
}

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

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

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

.main-menu-four__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--tedlife-white);
  font-weight: 400;
  font-family: var(--tedlife-font-two);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 18px;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-four__social a:hover {
  color: var(--tedlife-base);
}

.main-menu-four__social a+a {
  margin-left: 25px;
}

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

.main-menu-four__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--tedlife-white);
  text-transform: uppercase;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.1em;
  line-height: 16px;
  margin-left: 10px;
}

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

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

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

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

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

.main-menu-four__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: -2px;
}

.main-menu-four__contact-list li .icon i {
  font-size: 17px;
  color: var(--tedlife-base);
  position: relative;
  display: inline-block;
}

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

.main-menu-four__contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tedlife-white);
  text-transform: uppercase;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.1em;
  line-height: 16px;
}

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

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

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

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

.main-menu-three__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
}

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

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

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

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

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

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

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

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

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

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

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

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

.main-menu-three__call-icon:hover {
  background-color: var(--tedlife-white);
  color: var(--tedlife-base);
}

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

.main-menu-three__call-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--tedlife-white-rgb), .90);
  line-height: 14px;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-menu-three__call-number {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

.main-menu-four__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
}

.main-menu-four__logo {
  display: block;
  padding: 20px 0;
}

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

.main-menu-four__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

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

.main-menu-four__search:hover {
  color: var(--tedlife-base);
}

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

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

.main-menu-four__call-icon:hover {
  background-color: var(--tedlife-white);
  color: var(--tedlife-base);
}

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

.main-menu-four__call-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--tedlife-white-rgb), .90);
  line-height: 14px;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-menu-four__call-number {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
  font-family: var(--tedlife-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

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

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




/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

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

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--tedlife-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--tedlife-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn::after {
  display: none;
}

.search-popup__content .thm-btn::before {
  background-color: var(--tedlife-black);
  border-radius: 0;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
}

.search-popup__content .thm-btn:hover::before {
  transform: scaleY(1.0);
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--tedlife-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--tedlife-white);
}


/*--------------------------------------------------------------
# Edit All Css
--------------------------------------------------------------*/
.cta-one-sec__btn span::before {
  background-color: var(--tedlife-white);
}

.cta-one-sec__btn:hover {
  color: var(--tedlife-base);
}

.site-footer__newsletter-btn {
  border: none;
  color: var(--tedlife-white);
}

.site-footer__newsletter-btn::after {
  background-color: var(--tedlife-black);
}

.site-footer__newsletter-btn::before {
  background-color: rgba(var(--tedlife-black-rgb), .80);
}

.site-footer__newsletter-btn span::before {
  background-color: var(--tedlife-white);
}

.site-footer__newsletter-btn:hover {
  color: var(--tedlife-black);
}

.divider-two__btn span::before {
  background-color: var(--tedlife-white);
}

.divider-two__btn:hover {
  color: var(--tedlife-base);
}

.newsletter-one__btn {
  border: none;
  color: var(--tedlife-white);
}

.newsletter-one__btn::after {
  background-color: var(--tedlife-black);
}

.newsletter-one__btn::before {
  background-color: rgba(var(--tedlife-black-rgb), .80);
}

.newsletter-one__btn span::before {
  background-color: var(--tedlife-white);
}

.newsletter-one__btn:hover {
  color: var(--tedlife-black);
}

.newsletter-one__btn span::before {
  background-color: var(--tedlife-white);
}

.newsletter-one__btn:hover {
  color: var(--tedlife-base);
}


.main-slider__btn:hover {
  color: var(--tedlife-base);
}

.main-slider__btn span::before {
  background-color: var(--tedlife-white);
}


.main-slider-two__btn:hover {
  color: var(--tedlife-base);
}

.main-slider-two__btn span::before {
  background-color: var(--tedlife-white);
}

.main-slider-three__btn:hover {
  color: var(--tedlife-base);
}

.main-slider-three__btn span::before {
  background-color: var(--tedlife-white);
}

.main-slider-four__btn:hover {
  color: var(--tedlife-base);
}

.main-slider-four__btn span::before {
  background-color: var(--tedlife-white);
}

.main-slider-five__btn:hover {
  color: var(--tedlife-base);
}

.main-slider-five__btn span::before {
  background-color: var(--tedlife-white);
}

.cta-two__btn span::before {
  background-color: var(--tedlife-white);
}

.cta-two__btn:hover {
  color: var(--tedlife-black);
}

.news-four__btn {
  padding: 12px 35px 8px;
  font-size: 17px;
}

.contact-two__btn:hover {
  color: var(--tedlife-base);
}

.contact-two__btn span::before {
  background-color: var(--tedlife-white);
}


.two-section__btn-1 {
  border: none;
  color: var(--tedlife-white);
}

.two-section__btn-1::after {
  background-color: var(--tedlife-black);
}

.two-section__btn-1::before {
  background-color: rgba(var(--tedlife-black-rgb), .80);
}

.two-section__btn-1 span::before {
  background-color: var(--tedlife-white);
}

.two-section__btn-1:hover {
  color: var(--tedlife-black);
}

.two-section__btn-2:hover {
  color: var(--tedlife-base);
}

.two-section__btn-2 span::before {
  background-color: var(--tedlife-white);
}

.grow-business__btn:hover {
  color: var(--tedlife-base);
}

.grow-business__btn span::before {
  background-color: var(--tedlife-white);
}

.coming-soon-page__btn span::before {
  background-color: var(--tedlife-white);
}

.coming-soon-page__btn:hover {
  color: var(--tedlife-black);
}

.product__all-btn {
  font-size: 15px;
  padding: 7px 25px 3px;
}

.product-details__btn-1 {
  border: none;
  color: var(--tedlife-white);
}

.product-details__btn-1::after {
  background-color: var(--tedlife-black);
}

.product-details__btn-1::before {
  background-color: rgba(var(--tedlife-black-rgb), .80);
}

.product-details__btn-1 span::before {
  background-color: var(--tedlife-base);
}

.product-details__btn-1:hover {
  color: var(--tedlife-black);
}

.cart-page__btn-1 {
  border: none;
  color: var(--tedlife-white);
}

.cart-page__btn-1::after {
  background-color: var(--tedlife-black);
}

.cart-page__btn-1::before {
  background-color: rgba(var(--tedlife-black-rgb), .80);
}

.cart-page__btn-1 span::before {
  background-color: var(--tedlife-base);
}

.cart-page__btn-1:hover {
  color: var(--tedlife-black);
}


/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

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

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tedlife-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--tedlife-black);
}

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

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

.iconimg{
  width: 80px;
}

.testimonialp{
  height: 84px;
  overflow-y: scroll;
}

.oi{
  margin: auto;
 
}
.dddflex{
  display: flex;
}

.newtxt{
  color: var(--tedlife-black) !important;
}

.ogbtn{
  float: right;
    bottom: -75px;
    right: 10%;
    margin-left: 10px;
}

.newhrlevelnew{
  margin-top: 30px;
  margin-bottom: 30px;
}

.hidden {
  display: none !important;
}
/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

.ognew{
  background-color: var(--tedlife-black) !important;
  color: #fff !important;
  padding: 6px;
  border-radius: 5px;
  width: 100%;
  float: left;
  margin-bottom: 10px;
}

.newulforli{
  list-style-type: none;
  color: #000;
  padding: 10px;
}

.newulforli li a{
  color: #000;
}

.iconimg1 {
  width: 25px;
  /* background: var(--tedlife-base); */
  border-radius: 5px;
}

.iconimg2 {
  width: 25px;
  background: #fff;
  border-radius: 5px;
}

.newhrlevel{
  margin: 0;
    margin-top: 4px;
    margin-bottom: 3px;
    border: 1px solid var(--tedlife-base);
}

.newspppnnnnaaa{
  width: 30px;
  height: 30px;
  float: left;
  background: var(--tedlife-black);
  text-align: center;
  line-height: 31px;
  border-radius: 50%;
  color: #fff;
  margin-left: 0%;
  margin-top: 10px;
}


.newwidth{
  width: 100%;
  float: left;
}

.newifffght{
  float: left;
  width: 50px;
}

.newifffght1{
  width: 35%;
  float: left;
  margin-left: 10px;
}

.newvideos{
  width: 100%;
    height: auto;
    box-shadow: 1px 1px 1px 1px var(--tedlife-base);
    border-radius: 10px;
    margin-top: 10px;
}
.newimmfffff{
  width: 100%;
  height: 250px;
  object-fit: contain;
  box-shadow: 1px 1px 1px 1px #0d6efd;
  border-radius: 10px;
}

.newslideimgghhsss{
  background: var(--tedlife-black);
  width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  padding: 10px;
  margin-top: 20px;
}


/* UL Reset */
.newulforli {
  list-style: none;
  padding: 0;
  margin: 0;
}

.newulforli li {
  margin: 10px 0;
  /* width: 100%; */
}

/* Link Styling */
.newulforli li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px;
  background: #fff;
  border-radius: 50px;
  color: var(--tedlife-black); /* Blue text like your example */
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  width: 100%;
  font-size: 14px;
}

/* Left Icon */
.newulforli li a .iconimg1 {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Right Arrow (auto inject via CSS) */
.newulforli li a::after {
  content: "➜"; /* Arrow */
  font-size: 16px;
  color: var(--tedlife-base);
  transition: transform 0.3s ease;
}

/* Hover effect */
.newulforli li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.newulforli li a:hover::after {
  transform: translateX(5px);
}

.newulforli1 li a{
  display: unset !important;
}


.newjhxgh77733 {
  position: relative;
  background: url("assets/images/bg-pattern.webp") no-repeat center center;
  background-size: cover;
  /* padding: 60px 20px; */
  border-radius: 12px;
  overflow: hidden;
}

.newjhxgh77733::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,248,255,0.95), rgba(220,235,255,0.95));
  z-index: -1;
}

/* ===== SERP-Wizard style footer (FULL CSS) ===== */
.sw-footer{
  --sw-bg:#243247;               /* dark blue */
  --sw-card:#2c3b53;             /* badge strip bg */
  --sw-text: #fff;
  --sw-white:#ffffff;
  --sw-accent:#69a6ff;
  --sw-muted: #fff;
  background: var(--tedlife-black);
  color: var(--sw-text);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* space for left line and right strip */
  padding-left:80px;
  padding-right:70px;
}

/* dotted world map / noise effect */
.sw-footer::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.06) 0 2px, transparent 3px) 0 0 / 14px 14px,
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.05) 0 2px, transparent 3px) 0 0 / 16px 16px;
  opacity:.35; pointer-events:none;
}

.sw-footer__inner{ 
  max-width:1200px; margin:auto; padding:56px 20px 26px; position:relative;
}

/* ===== Left vertical line + ANIMATED dot ===== */
.sw-left-line{
  position:absolute;
  top:0; left:40px; bottom:0;
  width:2px; 
  background:rgba(255,255,255,.2);
}

/* animated dot */
.sw-left-line .sw-dot{
  position:absolute;
  top:120px;              /* need ho to adjust kar lena */
  left:-14px;             /* line ke center me */
  width:28px;
  height:28px;
  background: #fff;               /* footer bg */
  border: 6px solid var(--tedlife-base);     /* blue ring */
  border-radius:50%;
  box-shadow:0 0 12px rgba(58,134,255,.55);
  animation: swDotFloat 4s ease-in-out infinite, 
             swDotGlow 2.2s ease-in-out infinite;
}

/* ripple rings */
.sw-left-line .sw-dot::before,
.sw-left-line .sw-dot::after{
  content:"";
  position:absolute; inset:-6px;
  border:2px solid var(--sw-accent);
  border-radius:50%;
  opacity:.7;
  transform:scale(.85);
  animation: swDotRing 2.4s ease-out infinite;
  pointer-events:none;
}
.sw-left-line .sw-dot::after{
  animation-delay:1.2s;
  opacity:.55;
}

/* float (up/down) */
@keyframes swDotFloat{
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-6px); }
}

/* soft glow pulse */
@keyframes swDotGlow{
  0%,100%{ box-shadow:0 0 10px rgba(58,134,255,.45), 0 0 0 4px rgba(58,134,255,.28); }
  50%    { box-shadow:0 0 18px rgba(58,134,255,.75), 0 0 0 6px rgba(58,134,255,.18); }
}

/* outward ripple */
@keyframes swDotRing{
  0%   { transform:scale(.85); opacity:.7; }
  70%  { transform:scale(1.75); opacity:0; }
  100% { transform:scale(1.75); opacity:0; }
}

/* motion preference */
@media (prefers-reduced-motion: reduce){
  .sw-left-line .sw-dot{ animation:none; }
  .sw-left-line .sw-dot::before,
  .sw-left-line .sw-dot::after{ animation:none; }
}

/* ===== Right vertical social strip ===== */
.sw-social-strip{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:54px;
  background: linear-gradient(180deg,var(--tedlife-base), #212529);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  z-index:10;
}
.sw-social-strip a{
  color:#fff; font-size:18px; 
  transition:.25s ease;
}
.sw-social-strip a:hover{ color:#0b1730; transform:translateY(-2px); }

/* ===== Top: Brand + Offices ===== */
.sw-top{margin-bottom: 10px;}
.sw-logo{ 
  display:inline-block; font-weight:800; letter-spacing:.5px;
  font-size:48px; line-height:1; color:var(--sw-white);
}
.sw-logo b{ color:var(--sw-white); }

.sw-offices{
  display:grid; grid-template-columns: repeat(4,1fr);
  gap:28px; margin-top:30px;
}
.sw-office__title{
  font-size:22px; font-weight:700; color:var(--sw-white); display:flex; align-items:center; gap:10px;
}
.sw-hq{ font-weight:700; color:var(--sw-text); opacity:.95; }
.sw-flag{ font-size:24px; display:inline-block; transform:translateY(2px); }
.sw-office p{ margin:8px 0 0; color:var(--sw-text); font-size:16px; }

.sw-divider{
  border:0;
  height:1px;
  color: #fff;
  margin: 18px 0;
}

/* ===== Contacts ===== */
.sw-section-title{
  color:var(--sw-white); font-size:26px; margin:8px 0 18px; font-weight:700;
}
.sw-contact-grid{
  display:grid; grid-template-columns: repeat(5,1fr); gap:22px;
}
.sw-contact{
  display:flex; align-items:center; gap:14px;
  padding:10px 8px;
}
.sw-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background: var(--tedlife-black);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:20px;
  flex:0 0 44px;
  box-shadow:0 6px 16px rgba(0,0,0,.25), inset 0 0 0 2px rgba(255,255,255,.15);
}
.sw-contact__label{ color:var(--sw-muted); font-size:14px; }
.sw-contact__value{
  color:var(--sw-white); font-weight:800; text-decoration:none; display:inline-block; margin-top:2px;
}
.sw-contact__value:hover{ color:var(--sw-accent); }

/* ===== Badges strip ===== */
.sw-badges{ margin:26px 0 16px; }
.sw-badges__wrap{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.08)), var(--sw-card);
  border-radius:14px;
  padding:14px 18px;
  display:flex;
  gap:22px;
  overflow:auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 24px rgba(0,0,0,.25);
  scrollbar-width:thin;
}
.sw-badges__wrap img{
  width: 100px;
  height: 100px;
  object-fit:cover;
  border-radius:80px;
  background:#1f2a3d;
  padding:10px;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  margin: auto;
}

/* ===== Bottom ===== */
.sw-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:18px; padding-top:16px; text-align:left;
}
.sw-bottom p{ color:var(--sw-muted); font-size:14px; }

/* ===== Responsive breakpoints ===== */
@media (max-width:1100px){
  .sw-offices{ grid-template-columns: repeat(2,1fr); }
  .sw-contact-grid{ grid-template-columns: repeat(3,1fr); }
}

@media (max-width:820px){
  /* Reduce the side paddings so left/right rails don't crush content */
  .sw-footer{ padding-left:60px; padding-right:60px; }
  .sw-left-line{ left:28px; }
}

@media (max-width:720px){
  .sw-logo{ font-size:40px; }
  .sw-contact-grid{ grid-template-columns: repeat(2,1fr); }
  .sw-badges__wrap img{ width:100px; height:100px; }
}

@media (max-width:520px){
  .sw-offices{ grid-template-columns:1fr; }
  .sw-contact-grid{ grid-template-columns:1fr; }
  .sw-badges__wrap img{ width:92px; height:92px; }
  .sw-footer{ padding-left:48px; padding-right:54px; }
  .sw-left-line{ left:24px; }
  .sw-social-strip{ width:48px; }
}

/* go-to-top button inside strip */
.sw-go-top{
  margin-top:50px;        /* push to bottom */
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  writing-mode: vertical-rl;   /* vertical text */
  transform: rotate(180deg);   /* flip text to read top-down */
  gap:8px;
  padding:12px 0;
  transition:.3s;
}

.sw-go-top i{
  font-size:20px;
  margin-bottom:8px;
  transform: rotate(180deg);  /* arrow upar dikhe */
}

.sw-go-top:hover{
  color:#0b1730;
}


/* animation for social icons up-down */
.sw-social-strip a {
  color:#fff; font-size:18px;
  transition:.25s ease;
  display:inline-block;

  /* animation */
  animation: swIconBounce 3s ease-in-out infinite;
}

/* hover override (stop bounce, zoom thoda) */
.sw-social-strip a:hover {
  color:#0b1730;
  transform: translateY(-2px) scale(1.1);
  animation-play-state: paused;
}

/* keyframes for up-down 20px movement */
@keyframes swIconBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}



/* ---- Base wrapper ---- */
.ns-tech{
  --ink:#151a22;
  --bg:#f4f6f9;
  --brand:#ff8c2a;      /* eyebrow orange */
  --primary:#1fb6ff;    /* border/cyan */
  --border:#d9e4ef;
  --card:#ffffff;
  --stroke:#18a4e8;

  background: var(--bg);
  padding: 40px 16px;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.ns-tech__inner{
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 32px;
}

/* ---- Left side ---- */
.ns-eyebrow{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--tedlife-black);
  font-family: var(--tedlife-font-two);
}
.ns-title{
  margin: 0 0 24px;
  font-size: clamp(32px, 3.2vw, 56px);
  line-height: 1.05;
  letter-spacing: .5px;
  color: #0f1726;
  font-family: var(--tedlife-font-two);
}

/* grid of rounded-corner cards (like screenshot) */
.ns-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}
.ns-card{
  background: var(--card);
  border: 2px solid var(--tedlife-black);
  border-radius: 26px;
  padding: 22px 16px 18px;
  text-align: center;
  text-decoration: none;
  color: #132033;
  position: relative;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  /* corner accent like screenshot */
  clip-path: path("M0,26 Q0,0 26,0 L calc(100% - 26px),0 Q100%,0 100%,26 L100%,calc(100% - 26px) Q100%,100% calc(100% - 26px),100% L26,100% Q0,100% 0,calc(100% - 26px) Z");
  font-family: var(--tedlife-font-two);
}
.ns-card::after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:20px;
  border: 2px solid var(--tedlife-black);
  opacity:.45;
  clip-path: path("M0,26 Q0,0 26,0 L calc(100% - 26px),0 Q100%,0 100%,26 L100%,calc(100% - 26px) Q100%,100% calc(100% - 26px),100% L26,100% Q0,100% 0,calc(100% - 26px) Z");
}
.ns-card:hover{
  transform: translateY(-3px);
  border-color: var(--tedlife-base);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.ns-card img{
  width: 58px; height: 58px; object-fit: contain; display:block; margin:0 auto 10px;
}
.ns-card span{
  font-weight: 800;
  letter-spacing: .04em;
}

/* Left decorative dot like SS */
.ns-dot{
  position: absolute;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(147,128,255,.9);
  left: -34px; top: 38%;
  box-shadow: 0 10px 28px rgba(147,128,255,.45);
}
.ns-left{ position: relative; }

/* ---- Right side ---- */
.ns-right{position: relative;width: 100%;margin-top: 50px;}
.ns-hero{
  position: relative;
  width: 100%;
  margin-left: auto;
  aspect-ratio: 1/1;           /* square container */
}
.ns-hero-img{
  width:100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;           /* circular mask like screenshot */
  /* filter: saturate(0.3) hue-rotate(190deg); */
  /* crop right edge arc */
  clip-path: ellipse(94% 98% at 70% 50%);
}

/* --- Animated logo badge (left<->right 20px) --- */
.ns-hero-badge{
  position: absolute;
  top: 8%;
  left: 8%;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
  animation: nsSlide 3.2s ease-in-out infinite;
}
.ns-hero-badge img{display:block;height: 100px;width: auto;}

/* 20px left-to-right moving */
@keyframes nsSlide{
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(20px); }
}

/* ---- Responsive ---- */
@media (max-width: 1100px){
  .ns-tech__inner{ grid-template-columns: 1fr; }
  .ns-right{ order: -1; }  /* image on top for small screens */
  .ns-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ns-dot{ left: -18px; }
}
@media (max-width: 720px){
  .ns-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
  .ns-hero-badge img{height: 80px;}
}
@media (max-width: 480px){
  .ns-hero{ width: 100%; }
  .ns-hero-badge{ left: 6%; top: 14%; }
}




/* ===== Section base ===== */
.dp-wrap{
  --ink:#121829; --muted:#76819a;
  --orange:#ff8c2a;
  --hex1:#08b6db; --hex2:#039fc7;
  background:#f7f8fb;
  padding:48px 16px 64px;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.dp-inner{ max-width:1240px; margin:auto; text-align:center; }

.dp-eyebrow{
  margin:0 0 8px;
  font-weight:800;
  letter-spacing:.1em;
  color: var(--tedlife-black);
  font-family: var(--tedlife-font-two);
}
.dp-title{
  margin:0 0 28px;
  font-size:clamp(32px,3.4vw,56px);
  line-height:1.05;
  color:#1b2235;
  font-weight:900;
  letter-spacing:.5px;
  font-family: var(--tedlife-font-two);
}

/* ===== Grid ===== */
.dp-grid{
  display:grid; grid-template-columns:repeat(6,minmax(0,1fr));
  gap: 40px 28px; align-items:end;
}
.dp-item{ position:relative; display:flex; flex-direction:column; align-items:center; }

/* top labels (“Design / Develop / Deliver”) */
.dp-toptext{
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  font-size:22px;
  font-weight:600;
  color:#000;
  /* padding-bottom: 20px; */
  font-family: var(--tedlife-font-two);
}

/* hexagon blocks */
.dp-hex{
  width:200px;
  height:176px;
  background: var(--tedlife-black);
  clip-path:polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%);
  display:grid;
  place-items:center;
  box-shadow:0 18px 28px rgba(0,0,0,.12);
}
.dp-hex--top{margin-bottom: -13px;margin-top: 20px;}
.dp-hex--bottom{margin-top: -13px;}
.dp-hex img{width: 100%;height: 120px;object-fit:contain;}

/* vertical line segments */
.dp-line{width:2px;height: 70px;background:#111;display:block;}

/* orange step badge (hex) */
.dp-badge{
  width:64px;
  height:64px;
  margin:-8px 0; /* breaks the line visually */
  background: var(--tedlife-black);
  color:#fff;
  font-weight:800;
  display:grid;
  place-items:center;
  clip-path:polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow:0 10px 16px rgba(0,0,0,.12);
  font-size:20px;
}

/* caption */
.dp-caption{
  margin-top:10px;
  font-size:20px;
  font-weight:600;
  color:#101828;
  font-family: var(--tedlife-font-two);
}

/* subtle hover like SS */
.dp-item:hover .dp-hex--top{ transform:translateY(-4px); transition:.2s; }
.dp-item:hover .dp-hex--bottom{ transform:translateY(4px); transition:.2s; }

/* ===== Responsive ===== */
@media (max-width:1200px){
  .dp-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
  .dp-toptext{ top:-18px; font-size:18px; }
}
@media (max-width:720px){
  .dp-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 18px; }
  .dp-hex{ width:176px; height:156px; }
  .dp-badge{ width:56px; height:56px; font-size:18px; }
}
@media (max-width:420px){
  .dp-grid{grid-template-columns:1fr;display: flex;flex-wrap: wrap;}
  .dp-hex{ width:220px; height:190px; }
}

.newbggacountforne{
  background: linear-gradient(180deg, var(--tedlife-base),#212529);
      position: unset;    padding-bottom: 0px;
}


.nddgdfhgsfhgsfhgfhsgfsgfsdfsdffd{
    height: 150px;
    overflow-y: scroll;
}




@media only screen and (max-width: 1100px) {
  .about-two__right {
    max-width: 100% !important;
    margin: 0px !important;
    padding: 20px;
}
.why-choose-two {
  padding: 50px 0 50px !important;
}
.page-header__inner h2 {
  font-size: 70px;
}
.newifffght1 {
    margin-left: 0px;
}

}


@media only screen and (max-width: 900px) {
  .about-two__right {
    max-width: 100% !important;
    margin: 0px !important;
    padding: 20px;
}
.why-choose-two {
  padding: 50px 0 50px !important;
}

.page-header__inner h2 {
  font-size: 50px;
}

.page-header {
  padding: 164px 0 48px !important;
}

.ogbtn {
  bottom: -20px;
}

.section-title {
  margin-bottom: 0px !important;
}

.why-choose-two__right {
  margin-top: 10px !important;
}

.services-one-sec__content-inner {
  padding: 0px;
}
.brand-one {
    margin-top: 0px;
}

}


@media only screen and (max-width: 800px) {
  
.ogbtn {
  bottom: -20px;
        right: 0px;
        
}

.portfolio-two .portfolio-filter.style1 li .filter-text {
  font-size: 20px;
}

.portfolio-two .portfolio-filter {
  margin-bottom: 20px;
}

.services-one-sec__single {
  margin-bottom: 10px;
}

.brand-one {
  box-shadow: 1px 1px 1px 1px var(--tedlife-base);
}

.portfolio-one-sec__img img {
  padding: 10px;
}

.thm-btn {
  width: 90%;
  margin-bottom: 10px;
  padding: 10px;
  margin-right: 5%;
}

.cta-one-sec__inner {
  padding: 28px 0px 28px;
}

.about-two {
  padding: 30px 0 30px;
}

.why-choose-two {
  padding: 30px 0 30px !important;
}

.portfolio-two {
  padding: 30px 0 30px;
}

.testimonial-three {
  padding: 30px 0 60px;
}

.services-three {
  padding: 30px 0 30px;
}

.faq-page {
  padding: 30px 0 30px;
}

.portfolio-one-sec {
  padding: 30px 0 30px;
}


.team-four {
  padding: 30px 0 30px;
}

.dp-item{
  width: 47%;
}

    .dp-hex {
        width: 200px;
        height: 190px;
    }


    .newulforli li a {
    padding: 4px;
    font-size: 12px;
}

.newifffght1 {
    margin-left: 0px;
}

.services-two {
    padding: 20px 0 20px;
}

.error-page__title {
    font-size: 200px !important;
}

.about-one-sec {
    padding: 20px 0 20px;
}

      .about-one-sec__small-img>img {
        height: 300px;
        object-fit: cover;
    }

        .about-one-sec__small-img {
        height: 300px !important;
    }
        .vission-mission__single {
        margin-bottom: 10px;
        text-align: center;
        filter: drop-shadow(1px 1px 2px blue);
    }

}