
/* Common CSS Start */
html {
	scroll-padding-top: 80px;
	scroll-behavior: smooth;
}
body{
    background: #000;
}
.tb-common-btn a, .tb-common-btn button {
    font: 400 20px/34px "Outfit", sans-serif;
    color: #fff;
    padding: 8px 35px;
    background: #00a3ff;
    border-radius: 5px;
    transition: all 0.5s;
    display: inline-block;
    border: none;
    overflow: hidden;
}

#home {
	overflow-x: hidden;
}


.tb-common-btn a span {
	display: block;
	position: relative;
	/* mix-blend-mode: difference; */
	z-index: 10;
    margin: 0;
    color: #fff;
    fill: #fff;
}

.tb-common-btn a:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
	color: #fff;
	-webkit-animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
	to {
		transform: translate3d(0,-105%,0) scale3d(1,2,1);
		opacity: 0;
	}
}

@keyframes MoveScaleUpEnd {
	from {
		transform: translate3d(0,100%,0) scale3d(1,2,1);
		opacity: 0;
	}
	to {
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}

.tb-common-btn a::before {
	content: '';
	background: #000;
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	transform: translate3d(0,68%,0) scale3d(0,0,0);
}

.tb-common-btn a:hover::before {
	transform: translate3d(0,0,0) scale3d(1,1,1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.tb-common-btn a::after {
	content: '';
	background: #000;
	transform: translate3d(0,-100%,0);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.tb-common-btn a:hover::after {
	transform: translate3d(0,0,0);
	transition-duration: 0.05s;
	transition-delay: 0.4s;
	transition-timing-function: linear;
}






.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

/* .tb-common-btn a:hover, .tb-common-btn button:hover, 
.tb-common-btn a:active, .tb-common-btn button:active, 
.tb-common-btn a:focus, .tb-common-btn button:focus {
    background: #fff;
    color: #fff;
} */
/*  */

/*  */

a {
    text-decoration: none !important;
}

.common-text {
    margin: 0 auto 40px;
    text-align: center;
    width: 70%;
}
.common-text p b {
	font-weight: 600;
}
.common-text span {
    display: block;
    font: 500 18px/20px "Outfit", sans-serif;
    color: #00a3ff;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.common-text h2 {
    font: 600 38px/45px "Outfit", sans-serif;
    color: #fff;
    margin: 0 0 15px 0;
    text-align: center;
}

.common-text p {
    font: 400 18px/32px "Outfit", sans-serif;
    color: #7b7b7b;
    margin: 0;
}
.back-to-top {
	font-size: 20px;
	color: #fff;
	position: fixed;
	right: 26px;
	bottom: 120px;
	width: 42px;
	height: 42px;
	line-height: 42px;
	border-radius: 50%;
	background: url(../images/other/back_to_top.png) no-repeat scroll center center #00a3ff;
	text-align: center;
	z-index: 99;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	display: none;
}
@media (max-width:1299px) {
    .common-text {
        width: 90%;
    }
}
/* Common CSS End */
/* #tb-top-part {
	background-image: url(../images/header/tb-top-part.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
} */

/* header CSS Start */
#tb-header #navbarNav {
    justify-content: end;
}
#tb-header .navbar-brand {
	padding: 0;
	margin: 0;
}
#tb-header {
	/* position: absolute;
	left: 0;
	right: 0; */
	z-index: 1;
}
#tb-header nav .navbar-toggler {
	width: 25px;
	height: 25px;
	padding: 0;
}
#tb-header nav .navbar-toggler:is(:hover, :focus, :active, :focus-visible, :focus-within) {
    border: none;
    outline: none;
    box-shadow: none;
}
#tb-header nav .navbar-toggler .lines {
	width: 25px;
	height: 2px;
	background: #fff;
	display: block;
	position: relative;
	transition: transform 200ms;
	transition: -webkit-transform 200ms;
	-webkit-transition: -webkit-transform 200ms;
	-moz-transition: -webkit-transform 200ms;
	-ms-transition: -webkit-transform 200ms;
	-o-transition: -webkit-transform 200ms;
	margin: 0 0 -2px;
}
#tb-header nav .navbar-toggler[aria-expanded="false"] .line-1 {
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
}
#tb-header nav .navbar-toggler[aria-expanded="false"] .line-2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
#tb-header nav .navbar-toggler[aria-expanded="false"] .line-3 {
    -webkit-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
}
#tb-header nav .navbar-toggler .line-1 {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
}
#tb-header nav .navbar-toggler .line-2 {
    -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
    transform: translate3d(0, 0, 0) scale(0.1, 1);
}
#tb-header nav .navbar-toggler .line-3 {
    -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
    transform: translate3d(0, 0, 0) rotate(-45deg);
}
#tb-header.sticky{
    animation: 1s ease 0s normal both 1 running fixedmenu;
	-webkit-animation: 1s ease 0s normal both 1 running fixedmenu;
	-moz-animation: 1s ease 0s normal both 1 running fixedmenu;
	-o-animation: 1s ease 0s normal both 1 running fixedmenu;
	background: #111;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: none;
	left: 0;
	position: fixed !important;
	right: 0;
	top: 0;
	z-index: 9;
}
@-webkit-keyframes fixedmenu {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}
@-moz-keyframes fixedmenu {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}
@keyframes fixedmenu {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}
#tb-header #navbarNav ul li{
    padding: 10px 15px;
}
#tb-header #navbarNav ul li a {
    font: 400 17px/20px "Outfit", sans-serif;
    padding: 0;
    display: inline-block;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    position: relative;
}
#tb-header #navbarNav ul li a::after {
    width: 0;
    left: 0;
    right: 0;
    bottom: -10px;
    top: auto;
    margin: auto;
    height: 2px;
    background: #00a3ff;
    content: "";
    position: absolute;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
#tb-header #navbarNav ul li:hover a::after, 
#tb-header #navbarNav ul li.active a::after{
    width: 100%;
}

#tb-header #navbarNav ul li:hover a,
#tb-header #navbarNav ul li.active a, 
#tb-header #navbarNav ul li.active:hover a {
    color: #00a3ff;
}

#tb-header .navbar {
	padding: 28px 20px;
	border-bottom: 1px solid #222;
}
#tb-header.sticky .navbar {
	padding: 12px 20px;
}
#tb-header.sticky .navbar-brand {
	max-width: 194px;
}
/* header CSS End */

/* Slider Content CSS Start */
.tb-top-right-part {
	width: 60%;
	text-align: center;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.tb-top-right-part h1 {
	font: 600 54px/60px "Outfit", sans-serif;
	color: #fff;
	margin: 30px 0;
    text-transform: uppercase;
}
/* #tb-top-content {
	padding: 150px 0 85px 0;
} */
 .tb-top-right-part span {
	display: inline-block;
	color: #00a3ff;
}

.tb-top-right-part .home-sub-title {
    font: 400 20px/34px "Outfit", sans-serif;
    color: #fff;
    display: block;
    margin: 0 0 30px 0;
}
.slider-image {
	position: relative;
	margin: -7% 0 0 0;
	z-index: 1;
}
.tb-slider-info ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	width: 67%;
	flex-wrap: wrap;
	margin: 40px auto;
	list-style: none;
	gap: 36px 59px;
	justify-content: center;
}
.tb-slider-info ul li{
    font: 500 24px/32px "Outfit", sans-serif;
  color: #fff;
}
.tb-slider-info ul li img{
    margin-right: 10px;
}
@media (max-width:1199px) {
     .tb-slider-info ul li{
        font-size: 22px;
        line-height: 28px;
    }
    .tb-slider-info ul {
        width: 90%;
    }
}
@media (max-width:991px) {
    .tb-slider-info ul li{
        font-size: 20px;
        line-height: 26px;
    }
}
@media (max-width:767px) {
    .tb-top-right-part {
        width: 90%;
    }
}
/* Slider Content CSS End */
/*====================================
    features text slider css
=====================================*/
.tb-features-text-slider {
	margin: 40px 0 0 0;
	padding: 20px 0;
	background: #111111;
}
.tb-features-text-slider .tb-features-text-wrap{
  overflow: hidden;
}
.tb-features-text-slider .tb-features-text-wrap ul{
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.tb-features-text-slider .tb-features-text-wrap ul:first-child {
  margin: 0px;
}
.tb-features-text-slider .tb-features-text-wrap ul li{
  display: flex;
  font-family: "Outfit" sans-serif;
}
.tb-features-text-slider .tb-features-text-wrap ul li.text1{
  -webkit-animation: slide1 200s linear infinite;
  animation: slide1 200s linear infinite;
  -webkit-animation-delay: -200s;
  animation-delay: -200s;
}
.tb-features-text-slider .tb-features-text-wrap ul li.text2{
  -webkit-animation: slide2 200s linear infinite;
  animation: slide2 200s linear infinite;
  -webkit-animation-delay: -100s;
  animation-delay: -100s;
}
.tb-features-text-slider .tb-features-text-wrap:hover ul li,
.tb-features-text-slider .tb-features-text-wrap:focus-within ul li{
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes slide1{
  0%{
    transform: translateX(100%);
  } 100%{
    transform: translateX(-100%);
  }
}
@-moz-keyframes slide1{
  0%{
    transform: translateX(100%);
  } 100%{
    transform: translateX(-100%);
  }
}
@keyframes slide1{
  0%{
    transform: translateX(100%);
  } 100%{
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2{
  0%{
    transform: translateX(0%);
  } 100%{
    transform: translateX(-200%);
  }
}
@-moz-keyframes slide2{
  0%{
    transform: translateX(0%);
  } 100%{
    transform: translateX(-200%);
  }
}
@keyframes slide2{
  0%{
    transform: translateX(0%);
  } 100%{
    transform: translateX(-200%);
  }
}
.tb-features-text-slider .tb-features-text-wrap ul li .tb-features-text-block {
	position: relative;
	display: flex;
	align-items: center;
	white-space: nowrap;
	border-radius: var(--border-radius);
	/* background-color: #FFFFFF; */
	margin-left: 100px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	font-family: "Outfit" sans-serif;
}
.tb-features-text-slider .tb-features-text-wrap ul li .tb-features-text-block h2 {
  /* text-shadow: 2px 0 0 #000, 0 2px 0 #000, -2px 0 0 #000, 0 -2px 0 #000; */
  color: #00a3ff;
  font-size: 70px;
  font-weight: 700;
  opacity: 0.6;
  line-height: 1;
  font-family: "Outfit" sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .tb-features-text-slider .tb-features-text-wrap ul li .tb-features-text-block {
    margin-left: 50px;
  }
  .tb-features-text-slider .tb-features-text-wrap ul li .tb-features-text-block h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
    .tb-features-text-slider .tb-features-text-wrap ul li .tb-features-text-block h2 {
        font-size: 36px;
    }
}
@media (max-width: 479px) {
  .tb-features-text-slider .tb-features-text-wrap ul li .tb-features-text-block {
    margin-left: 30px;
  }
  .tb-features-text-slider .tb-features-text-wrap ul li .tb-features-text-block h2 {
    font-size: 32px;
  }
}


/* tb-languages CSS Start */
#tb-languages {
    text-align: center;
    padding: 40px 0 80px 0;
}

#tb-languages .tb-languages-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

#tb-languages .tb-languages-col {
    margin: 0 15px;
    position: relative;
}

#tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img {
    width: 130px;
    height: 130px;
    background: #eaeaea;
    line-height: 130px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}
#tb-languages .tb-languages-wrapper .tb-languages-col:hover .tb-languages-img-border{
    border-color: #00a3ff;
}
#tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img-border {
    border: 2px solid #eaeaea;
    padding: 5px;
    border-radius: 50%;
        transition: all 0.5s ease-in-out;
}

#tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-text {
	margin: 10px 0 0 0;
	position: relative;
	display: inline-block;
}

#tb-languages .tb-languages-col span {
	font: 400 16px/20px "Outfit", sans-serif;
	color: #fff;
	margin: 0;
	display: block;
	transition: all 0.5s ease-in-out;
	padding: 0;
	position: relative;
}
#tb-languages .tb-languages-wrapper .tb-languages-col svg {
	position: absolute;
	left: auto;
	right: 0;
	top: 3px;
	bottom: 0;
	margin: auto;
	opacity: 0;
	color: #fff;
	fill: #fff;
	transition: all 0.5s ease-in-out;
}
#tb-languages .tb-languages-col:hover span{
    padding: 0 20px 0 0;
}
#tb-languages .tb-languages-col:hover span:last-child{
    padding: 0;
}

#tb-languages .tb-languages-col:hover svg{
    opacity: 1;
}


/* .lag-btn {
	padding: 0;
	width: 35px;
	height: 35px;
	background: #00a3ff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	overflow: hidden;
	opacity: 0;
	transition: all 0.5s ease-in-out;
} */
#tb-languages .tb-languages-col:hover .lag-btn{
    opacity: 1;
    bottom: 25px;
}
.lag-btn svg{
    fill:#000;
}
.lag-btn:hover svg {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
	color: #000;
    fill:#000;
	-webkit-animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}
@media (max-width:991px) {
   .lag-btn {
        position: static;
        margin: 10px auto;
        opacity: 1;
    }
    #tb-languages .tb-languages-wrapper .tb-languages-col svg {
	opacity: 1;
}
#tb-languages .tb-languages-col span {
	padding: 0 20px 0 0;
}
#tb-languages .tb-languages-col span:last-child {
	padding: 0 !important;
}
}
/* tb-languages CSS End */
/* Pages CSS start */
#pages {
	padding: 80px 0 40px;
	background: #111;
}

#pages .demo-inner .image-wrapper {
	position: relative;
	padding: 10px;
	background: #111;
	box-sizing: border-box;
	box-shadow: 0 0 8px 0 rgba(181, 181, 181, 0.2);
	border-radius: 8px;
}

#pages .demo-inner {
    /* margin: 0 0 30px 0; */
}

#pages .demo-inner .image-wrapper .demo_image {
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

#pages .demo-inner .image-wrapper .demo_image img {
    left: 0;
    position: absolute;
    top: 0px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transition-duration: 5s;
    -webkit-transition-duration: 5s;
    -moz-transition-duration: 5s;
    -ms-transition-duration: 5s;
    -o-transition-duration: 5s;
    max-width: 100%;
}
#pages .demo-inner .image-wrapper .demo_image .tb-common-btn{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
#pages .demo-inner .image-wrapper .demo_image:hover .tb-common-btn{
 transform: scale(1);
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
}
#pages .demo-inner .image-wrapper .demo_image .tb-common-btn a {
	padding: 0;
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 45px;
}

#pages .image-shop-scroll::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
#pages .demo-inner .image-wrapper .demo_image:hover .image-shop-scroll::after{
    opacity: 1;
}
#pages .demo-inner .demo_content {
    display: block;
    position: relative;
    margin-top: 25px;
    text-align: center;
}
#pages .demo-inner .demo_content .tb-common-btn{
    display: none;
}

#pages .demo-inner .demo_content .demo_title {
    margin: 0 0 15px 0;
    font: 600 22px/26px "Outfit", sans-serif;
    color: #fff;
}

#pages .demo-inner .demo_content a {
    display: inline-block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
}

#pages .demo-inner:hover .demo_content a {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}
.swiper.pageswiper{
	overflow: visible;
}
.pageswiper .swiper-slide{
	width: 30%;
}
.swiper-button-next, .swiper-button-prev{
	width: 52px;
	height:52px;
	background-color: #00a3ff;
	border-radius: 50%;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    display: none;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 16px;
	color:#fff;
}
.pageswiper .swiper-scrollbar{
	background-color: rgba(0, 0, 0, 0.13);
}
.pageswiper .swiper-scrollbar-drag{
	background-color:#00a3ff;
}
.db-swiper-paginetion {
	padding: 50px 0 0 0;
}
@media (max-width:767px) {
    .pageswiper .swiper-slide {
        width: 45%;
    }
}
/* Pages CSS End */
/* features CSS Start */
#features {
    padding: 80px 0;
}

#features .features-wrapper {
    width: 20%;
}

#features .features-col {
	background: #111;
	border-radius: 5px;
	transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	position: relative;
	padding: 15px 15px;
	text-align: center;
	border: 3px solid #111;
	margin: 2px;
	border-radius: 8px;
	width: 290px;
}

#features .features-col:hover {
    box-shadow: 0 0px 6px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 0px 6px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
}

#features .features-col .feature-name {
	font: 600 16px/26px "Outfit", sans-serif;
	color: #fff;
	padding: 10px 0;
	text-transform: capitalize;
}

#features .features-col .feature-desc {
    font: 400 14px/25px "Outfit", sans-serif;
    color: #555;
    margin: 0;
    min-height: 126px;
}

/* features CSS End */


/* responsive section CSS Start */
#responsive {
	padding: 50px 0;
	overflow: hidden;
	background: #111;
	margin: 0;
}

#responsive .responsive-content ul {
    padding:0;
    margin: 0;
}

#responsive .responsive-content ul li {
    margin: 0 0 20px 0;
    font: 500 22px/24px "Outfit", sans-serif;
    color: #fff;
    list-style: auto;
    list-style: none;
    padding: 14px 20px;
    background: #000;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    cursor: pointer;
    opacity: 0.7;
}
#responsive .responsive-content ul li.active,
#responsive .responsive-content ul li:is(:hover, :focus, :active, :focus-visible, :focus-within){
    background: #00a3ff;
    color: #fff;
    opacity: 1;
}
#responsive .responsive-content {
	padding: 0 50px;
}

#responsive .responsive-img {
    text-align: center;
}

/* responsive section CSS End */

/* All Section Start */

#features .first-features-slider-marquee {
    margin-top: 40px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

#features .first__features__marquee__content {
    width: 300%;
    display: flex;
    line-height: 30px;
    -webkit-animation: marquee-left 30s linear infinite forwards;
    animation: marquee-left 30s linear infinite forwards;
}

#features .first-features-marquee-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* width: 33.33%; */
    list-style: none;
    padding: 0;
    margin: 0;
}

#features .first__features__marquee__content ul li {
    max-width: 20%;
    width: 100%;
    padding: 0px 15px;
}

#features .first__features__marquee__content ul li img {
	/* border: 1px solid #C1C1C1; */
	border-radius: 8px;
	overflow: hidden;
	padding: 0;
    /* width: 100%; */
}

@-webkit-keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-66.6%);
    }
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-66.6%);
    }
}

#features .second-features-slider-marquee {
    margin-top: 40px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

#features .second__features__marquee__content {
    width: 300%;
    display: flex;
    line-height: 30px;
    -webkit-animation: marquee-right 30s linear infinite forwards;
    animation: marquee-right 30s linear infinite forwards;
}

#features .second-features-marquee-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* width: 33.33%; */
    list-style: none;
    padding: 0;
    margin: 0;
}

#features .second__features__marquee__content ul li {
    max-width: 20%;
    width: 100%;
    padding: 0px 15px;
}

#features .second__features__marquee__content ul li img {
    /* border: 1px solid #C1C1C1; */
    border-radius: 8px;
    overflow: hidden;
    padding: 0px;
    /* width: 100%; */
}

@-webkit-keyframes marquee-right {
    0% {
        transform: translateX(-66.6%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-66.6%);
    }

    100% {
        transform: translateX(0);
    }
}

/* All Section End */
/* recommend CSS Start */
#recommend {
	/* background: #f7f6f9; */
	/* padding: 80px 0; */
	text-align: center;
	margin: 0 0 80px 0;
	padding: 80px 0 0 0;
}
#recommend .recommend-wrapper .owl-item{
    padding: 15px;
}
#recommend .recommend-item {
	position: relative;
	padding: 15px;
	background: #111;
	box-sizing: border-box;
	border-radius: 8px;
	box-shadow: 2px 7px 15px rgb(0 0 0 / 5%);
}
#recommend .recommend-item a{
    display: inline-block;
}
#recommend .recommend-item a img{
    border-radius: 8px;
}
#recommend .recommend-item a span {
	font: 400 17px/21px "Outfit", sans-serif;
	color: #fff;
	margin: 14px 0 4px 0;
	text-decoration: underline;
	display: block;
	transition: all 0.5s;
}
#recommend .recommend-item a:hover span{
    color: #00a3ff;
}
/* recommend CSS End */
/* bottom-purchase CSS Start */

/* bottom-purchase CSS End */
/* footer CSS Start */
#footer {
	background: #000;
	text-align: center;
	padding: 80px 0;
}
#footer .common-text h2, #footer .common-text p{
    color: #fff;
}
#footer .tb-common-btn button:hover, 
#footer .tb-common-btn button:active, 
#footer .tb-common-btn button:focus{
    background-color: #fff;
    color: #fff;
}
#footer-bottom {
	padding: 15px;
	text-align: center;
	background: #00a3ff;
	color: #fff;
    font: 400 17px/30px "Outfit", sans-serif;
}
@media (max-width:1199px) {
    #footer {
        padding: 60px 0;
    }
}
/* footer CSS End */


/*---------------------- The Modal Start-----------------------------------*/


.tb-password.modal {
	display: none;
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.6);
}
.modal-backdrop{
    z-index: 1;
}
.tb-password .modal-header {
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	padding: 0;
	background: #fff;
	border-radius: 0;
	width: 30px;
	height: 30px;
	text-align: center;
}
.tb-password a.primary-btn {
	font-size: 16px;
	padding: 15px 25px;
}
.tb-password .modal-body{
    padding: 0;
}
.tb-password .modal-title {
	margin: 10px 0 22px;
	font-size: 17px;
	line-height: 28px;
	font-weight: 600;
	text-transform: capitalize;
	color: #fff;
}
.tb-close-btn{
    background-color: none;
}
.tb-password .modal-title .subTitle {
	background: #00a3ff;
	color: #fff;
	margin: 0 8px;
	padding: 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	font-weight: 600;
	width: 25px;
	height: 25px;
	display: inline-block;
	line-height: 26px;
}

.tb-password a.enter-password {
    margin-left: 8px;
    float: none;
    width: auto;
    display: inline-block;
    vertical-align: top;
}

.tb-password svg.preview-password:hover {
    fill: #5ab4d1;
}

.tb-password .modal-content {
	position: relative;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.8);
	text-align: center;
	padding: 25px;
}

.tb-password .modal-content .modal-button.btn-default {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: auto;
    text-align: center;
    padding: 12px 18px;
    margin-top: 20px;
    text-transform: capitalize;
    font-size: 14px;
}  
.tb-password .tb-close-btn {
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	background: none;
	border: none;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tb-password .tb-close-btn:hover{
    transform: rotate(180deg);
}
@media (max-width:1199px) {
    .testimonial {
        padding: 60px 0;
    }
}
/*---------------------- The Modal End-----------------------------------*/
 /* -------------------------------- testimonial ------------------------------- */
.testimonial {
	padding: 80px 0;
	background: #111111;
}

.testimonial .testimonial-content {
	text-align: center;
}

.testimonial .testimonial-content h2 {
	margin-bottom: 20px;
}

.testimonial .testimonial-content p {
	font-size: 16px;
	margin: 0 auto 40px;
	width: 38%;
}

.testimonial .content .support,
.testimonial .content .name {
	font-size: 15px;
	font-weight: 600;
}

.testimonial .content .support span,
.testimonial .content .name span {
	font-weight: 400;
	color: #666666;
}

.testimonial .content .support {
	margin-bottom: 12px;
}

.testimonial .content .rating {
	margin-bottom: 14px;
}

.testimonial .content .rating svg {
	color: #ffc107;
}

.testimonial .content p {
	font-size: 15px;
	line-height: 22px;
	color: #fff;
	margin-bottom: 12px;
}

.testimonial .testimonial-list {
	/* display: flex;
	flex-wrap: wrap;
	justify-content: center; */
	/* gap: 20px 0; */
}

.testimonial .testimonial-list .item {
	transition: 0.5s;
}

.testimonial .testimonial-list .item:hover {
	transform: translateY(-8px);
}

.testimonial .content {
	height: auto;
	width: 100%;
	background-color: #222;
	border-radius: 10px;
	display: none;
	padding: 20px;
	margin: 0 0 30px 0;
}

/* .testimonial .testimonial-list .item {
	flex: 18%;
	max-width: 100%;
	width: 18%;
	padding-left: 0;
	padding-right: 0;
} */

.testimonial #loadMore {
    width: fit-content;
    cursor: pointer;
    padding: 11px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-align: center;
    margin: auto;
    border-radius: 50px;
    background-color: #fff;
    transition: .3s;
    text-decoration: none;
    margin-top: 20px;
}

.testimonial #loadMore:hover {
	color: #fff;
	background-color: #777;
}

.testimonial .noContent {
	width: 190px !important;
}
.testimonial .content .name {
    text-align: right;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

/* Responsive CSS START */
@media (max-width: 1399px){
.tb-top-right-part h1 {
	font-size: 36px;
	line-height: 45px;
	margin: 20px 0 10px 0;
}
    #tb-languages .tb-languages-col {
        margin: 0 6px;
    }
    #pages .demo-inner .image-wrapper .demo_image{
        min-height: 420px;
    }
    #features .features-col .feature-name{
        font-size: 15px;
    }
    #responsive .responsive-content {
        padding: 0;
    }
}
@media (max-width: 1299px){
    #tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img{
        width: 110px;
        height: 110px;
        line-height: 110px;
    }
    #features .features-wrapper {
        width: 25%;
    }
}
@media (max-width: 1199px){
    #features, #builder, #features, #recommend, #bottom-purchase{
        margin: 0 0 60px 0;
    }
    #recommend {
	padding: 60px 0 0 0;
}
    #tb-header #navbarNav ul li {
        padding: 10px 10px;
    }
    #tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img {
        width: 90px;
        height: 90px;
        line-height: 90px;
    }
    #pages .demo-inner .image-wrapper .demo_image {
        min-height: 320px;
    }
    #features .features-col{
        padding: 10px;
    }
    #builder .builder-bottom .builder-col {
        padding: 0 25px;
    }
    #responsive .responsive-content ul li {
        font-size: 18px;
        line-height: 20px;
    }
    .common-text{
        width: 90%;
    }
    .common-text h2{
        font-size: 34px;
        line-height: 40px;
    }
    #pages {
        padding: 50px 0 40px;
    }
    #tb-languages {
        padding: 40px 0 50px 0;
    }
}
@media (max-width: 991px){
    #features, #builder, #features, #recommend, #bottom-purchase{
        margin: 0 0 40px 0;
    }
    #recommend {
	padding: 40px 0 0 0;
}
    .common-text{
        width: 100%;
    }
    .tb-top-right-part {
        text-align: center;
        padding: 30px 0 0 0;
    }
    #tb-languages .tb-languages-col {
        margin: 0;
        display: inline-block;
    }
    #tb-languages .tb-languages-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
    #tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img-border{
        display: inline-block;
    }
    #pages .demo-inner .image-wrapper .demo_image {
        min-height: 220px;
    }
    #tb-header .navbar {
        padding: 15px 20px;
    }
    #tb-header {
        /* background: #fff; */
        border-bottom: 1px solid #00a3ff;
    }
    #tb-header .navbar-nav{
        margin: 30px 0 0 0;
    }
    #features .features-wrapper {
        width: 33.33%;
    }
    #builder .builder-bottom .builder-col {
        padding: 0 15px;
    }
    #builder .builder-bottom .builder-col .builder-text{
        font-size: 16px;
    }
    #features .first__features__marquee__content, #features .second__features__marquee__content{
        width: 500%;
    }
    #bottom-purchase .common-text{
        width: 100%;
    }
    #tb-header .navbar-brand{
        width: 130px;
    }
    #responsive .responsive-content ul li {
        font-size: 17px;
        line-height: 21px;
    }
    .db-swiper-paginetion {
        padding: 30px 0 0 0;
    }
}
@media (max-width: 767px){
    #tb-languages, #features, #builder, #features, #recommend, #bottom-purchase, #footer,.testimonial{
        padding: 40px 0;
    }
    #pages {
        padding: 40px 0;
    }
    #more-stylist{
        padding: 50px 0 20px;
    }
    #tb-password-line h2{
        font-size: 22px;
    }
    .common-text h2{
        font-size: 30px;
        line-height: 38px;
    }
    #features .features-wrapper {
        width: 50%;
    }
    #features .features-content {
        padding: 0 15px;
    }
    #builder .builder-bottom .builder-col .builder-text {
        font-size: 16px;
        line-height: 20px;
    }
    .common-text p{
        font-size: 16px;
        line-height: 30px;
    }
    #pages .demo-inner .demo_content a{
        opacity: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        -khtml-opacity: 1;
    }
    .tb-common-btn a span, .tb-common-btn button span{
        font-size: 17px;
        line-height: 19px;
    }
    .tb-common-btn a{
        padding: 10px 22px;
    }
    .tb-top-right-part h1 {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 5px 0;
    }
    .tb-slider-info ul {
        width: 100%;
        gap: 16px;
    }
    .tb-slider-info ul li {
        font-size: 17px;
        line-height: 20px;
    }
    #pages .image-shop-scroll::after {
        opacity: 1;
    }
    #pages .demo-inner .image-wrapper .demo_image .tb-common-btn{
        transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    }
    #pages .demo-inner .image-wrapper .demo_image .tb-common-btn a span{
        line-height: 45px;
    }
    .tb-top-right-part .home-sub-title{
        font-size: 16px;
        line-height: 25px;
        margin: 0 0 10px 0;
    }
    
}
@media (max-width: 575px){
    #tb-password-line{
        padding: 15px;
    }
    #tb-password-line h2 {
        font-size: 18px;
    }
    #features .features-wrapper {
        width: 100%;
    }
    #features .features-col .feature-desc{
        min-height: auto;
    }
    #pages .demo-inner .image-wrapper{
        padding: 8px;
    }
    .pageswiper .swiper-slide {
        width: 55%;
    }
    #features .features-col{
        width: 220px;
    }
    #features .second__features__marquee__content ul li ,#features .first__features__marquee__content ul li{
        padding: 0;
    }
}
@media (max-width: 480px){
    #tb-languages, #features, #builder, #features, #recommend, #bottom-purchase, #footer, .testimonial {
	padding: 20px 0;
}
    #features, #builder,  #features, #recommend, #bottom-purchase {
	margin: 0 0 20px 0;
}
/* #responsive{
    margin: 0;
} */
    .tb-slider-info ul {
        justify-content: left;
        padding: 0 15px;
    }
    .tb-top-right-part h1 {
        font-size: 24px;
        line-height: 33px;
    }
    .tb-top-right-part .home-sub-title{
        margin: 0 0 10px 0;
    }
    .tb-top-right-part h1 {
        margin: 10px 0;
    }

    #tb-languages .tb-languages-wrapper{
        grid-template-columns: repeat(3, 1fr);
    }
    #builder .builder-bottom{
        display: block;
    }
    #builder .builder-bottom .builder-col {
        padding: 15px;
    }
    #builder .builder-wrapper .builder-img{
        margin: 0;
    }
    #features .first__features__marquee__content, #features .second__features__marquee__content {
        width: 700%;
    }
    .common-text h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .common-text p {
        font-size: 14px;
        line-height: 28px;
    }
    .common-text {
        margin: 0 auto 20px;
    }
    #features .features-wrapper {
        padding: 0 0 15px 0;
    }
    .pageswiper .swiper-slide {
        width: 70%;
    }
    #responsive, #pages {
	padding: 20px 0;
}
}
@media (max-width: 360px){
    .tb-top-right-part h1 {
        font-size: 18px;
        line-height: 26px;
    }
    .tb-top-right-part .home-sub-title {
        font-size: 15px;
        line-height: 22px;
    }
    #tb-languages .tb-languages-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    #features{
        padding: 20px 0;
    }
    #footer-bottom{
        font-size: 15px;
        line-height: 28px;
    }
   
}
/* Responsive CSS END */
/* cursor */
.cursor {
	border-radius: 50%;
	position: fixed;
	transform: translate(-50%, -50%);
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .default-cursor {
	width: 8px;
	height: 8px;
	background-color: #00a3ff;
	z-index: 9999;
	color: #00a3ff;
  }
  .default-cursor-follower {
	width: 36px;
	height: 36px;
	background-color: #00a3ff;
	opacity: 0.2;
  }
  .cursor-follower {
	border-radius: 50%;
	position: fixed;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 999;
  }



  /*  */
 