/* =========================================================
   TeamBee - style.css limpo
   Baseado no template Mediplus, com remoção de blocos não usados
   e padronização visual em preto/amarelo.
   ========================================================= */

:root {
	--tb-black: #050505;
	--tb-black-2: #0b0b0b;
	--tb-dark: #111111;
	--tb-dark-2: #181818;
	--tb-gray: #777777;
	--tb-gray-2: #d7d7d7;
	--tb-border: #2a2a2a;
	--tb-yellow: #ffc400;
	--tb-yellow-2: #f0b400;
	--tb-white: #ffffff;
	--tb-shadow: 0 10px 30px rgba(0, 0, 0, .18);
	--tb-radius: 10px;
	--tb-honeycomb-bg: url('../img/bg-honeycomb.svg');
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: var(--tb-gray);
	background: var(--tb-white);
	line-height: 1.7;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--tb-dark);
	text-decoration: none;
	transition: all .3s ease;
}

a:hover,
a:focus {
	color: var(--tb-yellow);
	text-decoration: none;
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0;
	color: var(--tb-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--tb-dark);
	font-weight: 700;
	line-height: 1.3;
}

.section {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--tb-dark);
	margin-bottom: 18px;
}

.section-title img {
	max-width: 54px;
	margin: 8px 0 15px;
	filter: grayscale(1) brightness(.25) sepia(1) saturate(7) hue-rotate(3deg);
}

.section-title p {
	max-width: 720px;
	margin: 0 auto;
	font-size: 15px;
	color: var(--tb-gray);
}

.btn {
	display: inline-block;
	position: relative;
	overflow: hidden;
	border: none;
	border-radius: 6px;
	background: var(--tb-yellow);
	color: var(--tb-black) !important;
	padding: 13px 26px;
	font-size: 14px;
	font-weight: 700;
	text-transform: none;
	z-index: 1;
	box-shadow: 0 8px 20px rgba(255, 196, 0, .22);
}

.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 0;
	background: var(--tb-black);
	transition: all .35s ease;
	z-index: -1;
}

.btn:hover::before {
	width: 100%;
}

.btn:hover {
	color: var(--tb-yellow) !important;
	box-shadow: none;
}

.btn.primary,
.btn.second {
	background: var(--tb-black);
	color: var(--tb-white) !important;
	box-shadow: none;
}

.btn.primary::before,
.btn.second::before {
	background: var(--tb-yellow);
}

.btn.primary:hover,
.btn.second:hover {
	color: var(--tb-black) !important;
}

#scrollUp {
	bottom: 18px;
	right: 18px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	padding: 0;
	text-align: center;
	font-size: 24px;
	border-radius: 6px;
	background: var(--tb-yellow);
	color: var(--tb-black);
	box-shadow: var(--tb-shadow);
}

#scrollUp:hover {
	background: var(--tb-black);
	color: var(--tb-yellow);
}

/* Preloader */
.preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: var(--tb-black);
}

.preloader .loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 70px;
	height: 70px;
	transform: translate(-50%, -50%);
}

.preloader .loader-outter,
.preloader .loader-inner {
	position: absolute;
	border-radius: 50%;
	border: 4px solid transparent;
}

.preloader .loader-outter {
	inset: 0;
	border-top-color: var(--tb-yellow);
	border-left-color: var(--tb-yellow);
	animation: spin 1s linear infinite;
}

.preloader .loader-inner {
	inset: 12px;
	border-top-color: var(--tb-white);
	border-left-color: var(--tb-white);
	animation: spinReverse .8s linear infinite;
}

.preloader .indicator {
	display: none;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes spinReverse {
	to { transform: rotate(-360deg); }
}

/* Header */
.header {
	position: relative;
	background: var(--tb-white);
	z-index: 999;
}

.header .topbar {
	padding: 12px 0;
	background: var(--tb-black);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header .top-link {
	float: left;
}

.header .top-link li,
.header .top-contact li {
	display: inline-block;
	margin-right: 18px;
}

.header .top-link li:last-child,
.header .top-contact li:last-child {
	margin-right: 0;
}

.header .top-link li a,
.header .top-contact li,
.header .top-contact li a {
	color: var(--tb-gray-2);
	font-size: 13px;
}

.header .top-link li a:hover,
.header .top-contact li a:hover {
	color: var(--tb-yellow);
}

.header .top-contact {
	float: right;
}

.header .top-contact li i {
	color: var(--tb-yellow);
	margin-right: 8px;
}

.header .header-inner {
	width: 100%;
	background: var(--tb-black-2);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.header.sticky .header-inner {
	position: fixed;
	top: 0;
	left: 0;
	animation: fadeInDown .45s both;
}

.header .logo {
	float: left;
	margin-top: 15px;
}

.header .logo img {
	max-height: 54px;
}

.header .main-menu {
	display: block;
}

.header .nav li {
	position: relative;
	float: left;
	margin-right: 10px;
}

.header .nav li:last-child {
	margin-right: 0;
}

.header .nav li a {
	display: inline-block;
	position: relative;
	padding: 26px 10px;
	color: var(--tb-yellow-2);
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
}

.header .nav li a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--tb-yellow);
	border-radius: 4px 4px 0 0;
	transition: all .3s ease;
}

.header .nav li.active > a,
.header .nav li:hover > a {
	color: var(--tb-yellow);
}

.header .nav li.active > a::before,
.header .nav li:hover > a::before {
	width: 100%;
}

.get-quote {
	margin-top: 14px;
	text-align: right;
}

.get-quote .btn {
	padding: 11px 16px;
	font-size: 13px;
}

.header .nav li .dropdown {
	position: absolute;
	left: -15px;
	top: 74px;
	z-index: 999;
	width: 220px;
	background: var(--tb-white);
	border-left: 3px solid var(--tb-yellow);
	box-shadow: var(--tb-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .3s ease;
}

.header .nav li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header .nav li .dropdown li {
	float: none;
	margin: 0;
	border-bottom: 1px solid #eeeeee;
}

.header .nav li .dropdown li a {
	display: block;
	padding: 12px 16px;
	color: var(--tb-dark);
	font-weight: 500;
}

.header .nav li .dropdown li a::before {
	display: none;
}

.header .nav li .dropdown li a:hover {
	color: var(--tb-yellow);
}

/* Hero */
.slider .single-slider {
	position: relative;
	height: 620px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.slider .single-slider::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
			linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .62) 45%, rgba(0, 0, 0, .15) 100%),
			linear-gradient(135deg, rgba(255, 196, 0, .09) 0%, rgba(255, 196, 0, 0) 45%);
}

.slider .single-slider .container,
.slider .single-slider .row,
.slider .single-slider .text {
	position: relative;
	z-index: 2;
}

.slider .single-slider .text {
	margin-top: 135px;
}

.slider .single-slider h1 {
	color: var(--tb-white);
	font-size: 42px;
	font-weight: 800;
	line-height: 1.18;
}

.slider .single-slider h1 span {
	color: var(--tb-yellow);
}

.slider .single-slider p {
	color: var(--tb-gray-2);
	max-width: 620px;
	margin-top: 25px;
	font-size: 16px;
}

.slider .single-slider .button {
	margin-top: 32px;
}

.slider .single-slider .btn {
	margin-right: 10px;
}

.slider .owl-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -25px;
}

.slider .owl-carousel .owl-nav div {
	position: absolute;
	width: 50px;
	height: 50px;
	line-height: 50px;
	padding: 0;
	border-radius: 50%;
	text-align: center;
	background: var(--tb-yellow);
	color: var(--tb-black);
	font-size: 25px;
	transition: all .3s ease;
}

.slider .owl-carousel .owl-nav div:hover {
	background: var(--tb-black);
	color: var(--tb-yellow);
}

.slider .owl-carousel .owl-controls .owl-nav .owl-prev { left: 20px; }
.slider .owl-carousel .owl-controls .owl-nav .owl-next { right: 20px; }

.owl-item.active .single-slider h1 { animation: fadeInUp 1s both .4s; }
.owl-item.active .single-slider p { animation: fadeInUp 1s both .8s; }
.owl-item.active .single-slider .button { animation: fadeInDown 1s both 1.1s; }

/* Schedule cards */
.schedule {
	height: 230px;
	background: var(--tb-white);
}

.schedule .schedule-inner {
	position: relative;
	z-index: 9;
	transform: translateY(-50%);
}

.schedule .single-schedule {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	border-radius: var(--tb-radius);
	background: var(--tb-black);
	box-shadow: var(--tb-shadow);
	transition: all .3s ease;
}

.schedule .single-schedule::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .16;
	background-image: var(--tb-honeycomb-bg);
	background-repeat: repeat;
	background-size: 104px 90px;
}

.schedule .single-schedule:hover {
	transform: translateY(-6px);
}

.schedule .single-schedule .inner {
	position: relative;
	z-index: 2;
	padding: 32px;
}

.schedule .single-schedule .icon i {
	position: absolute;
	right: -20px;
	bottom: -30px;
	z-index: -1;
	font-size: 110px;
	color: var(--tb-yellow);
	opacity: .18;
}

.schedule .single-schedule span,
.schedule .single-schedule h4,
.schedule .single-schedule p,
.schedule .single-schedule a,
.schedule .single-schedule .time-sidual li {
	color: var(--tb-white);
}

.schedule .single-schedule span {
	display: block;
	color: var(--tb-yellow);
	font-weight: 600;
}

.schedule .single-schedule h4 {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 700;
}

.schedule .single-schedule p {
	margin-top: 18px;
}

.schedule .single-schedule a {
	display: inline-block;
	margin-top: 22px;
	color: var(--tb-yellow);
	font-weight: 700;
}

.schedule .single-schedule a i {
	margin-left: 10px;
}

.schedule .single-schedule .time-sidual {
	margin-top: 17px;
}

.schedule .single-schedule .time-sidual li {
	display: block;
	margin-bottom: 4px;
}

.schedule .single-schedule .time-sidual li span {
	float: right;
	color: var(--tb-yellow);
}

/* Features */
.Feautes {
	padding-top: 0;
}

.Feautes .single-features {
	position: relative;
	text-align: center;
	padding: 10px 20px;
}

.Feautes .single-features::before {
	content: "";
	position: absolute;
	right: -72px;
	top: 60px;
	width: 118px;
	border-bottom: 3px dotted var(--tb-yellow);
}

.Feautes .single-features.last::before {
	display: none;
}

.Feautes .single-features .signle-icon {
	position: relative;
}

.Feautes .single-features .signle-icon i {
	position: absolute;
	left: 50%;
	top: 0;
	width: 100px;
	height: 100px;
	margin-left: -50px;
	line-height: 100px;
	text-align: center;
	border: 1px solid #e1e1e1;
	border-radius: 50%;
	color: var(--tb-yellow);
	font-size: 50px;
	transition: all .3s ease;
}

.Feautes .single-features:hover .signle-icon i {
	background: var(--tb-black);
	border-color: var(--tb-black);
	color: var(--tb-yellow);
}

.Feautes .single-features h3 {
	padding-top: 128px;
	font-size: 21px;
	color: var(--tb-dark);
}

.Feautes .single-features p {
	margin-top: 18px;
}

/* Dark sections with honeycomb */
.fun-facts,
.call-action,
.clients {
	position: relative;
	overflow: hidden;
	background: var(--tb-black-2);
}

.fun-facts::before,
.call-action::before,
.clients::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .18;
	background-image: var(--tb-honeycomb-bg);
	background-repeat: repeat;
	background-size: 104px 90px;
}

.fun-facts::after,
.call-action::after,
.clients::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.65));
}

.fun-facts .container,
.call-action .container,
.clients .container {
	position: relative;
	z-index: 2;
}

.fun-facts.section {
	padding: 105px 0;
}

.fun-facts .single-fun {
	position: relative;
	min-height: 80px;
}

.fun-facts .single-fun i {
	position: absolute;
	left: 0;
	top: 50%;
	width: 70px;
	height: 70px;
	margin-top: -35px;
	line-height: 67px;
	text-align: center;
	border: 2px solid var(--tb-yellow);
	border-radius: 50%;
	color: var(--tb-yellow);
	font-size: 28px;
	transition: all .3s ease;
}

.fun-facts .single-fun:hover i {
	background: var(--tb-yellow);
	color: var(--tb-black);
}

.fun-facts .single-fun .content {
	padding-left: 88px;
}

.fun-facts .single-fun span {
	margin-bottom: 5px;
	color: var(--tb-white);
	font-size: 30px;
	font-weight: 800;
}

.fun-facts .single-fun p {
	color: var(--tb-gray-2);
	font-size: 15px;
}

/* Why choose */
.why-choose {
	background: var(--tb-white);
}

.why-choose .choose-left h3 {
	position: relative;
	margin-bottom: 24px;
	padding-bottom: 20px;
	font-size: 24px;
	color: var(--tb-dark);
}

.why-choose .choose-left h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 3px;
	background: var(--tb-yellow);
}

.why-choose .choose-left p {
	margin-bottom: 28px;
}

.why-choose .choose-left .list li {
	margin-bottom: 12px;
	color: var(--tb-gray);
}

.why-choose .choose-left .list li i {
	width: 18px;
	height: 18px;
	line-height: 18px;
	margin-right: 12px;
	text-align: center;
	border-radius: 50%;
	background: var(--tb-yellow);
	color: var(--tb-black);
	font-size: 13px;
}

.why-choose .choose-right {
	position: relative;
	width: 100%;
	min-height: 390px;
	border-radius: var(--tb-radius);
	overflow: hidden;
	background-image: url('../img/video-bg.jpg');
	background-size: cover;
	background-position: center;
	box-shadow: var(--tb-shadow);
}

.why-choose .choose-right::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .38);
}

.why-choose .choose-right .video {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 72px;
	height: 72px;
	margin-left: -36px;
	margin-top: -36px;
	line-height: 72px;
	text-align: center;
	border-radius: 50%;
	background: var(--tb-yellow);
	color: var(--tb-black);
	font-size: 22px;
	padding-left: 4px;
	z-index: 3;
}

.why-choose .choose-right .video:hover {
	transform: scale(1.08);
}

.why-choose .video-image .waves-block .waves {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 200px;
	height: 200px;
	margin-left: -100px;
	margin-top: -100px;
	border-radius: 50%;
	background: rgba(255, 196, 0, .35);
	opacity: 0;
	animation: waves 3s ease-in-out infinite;
}

.why-choose .video-image .waves-block .wave-2 { animation-delay: 1s; }
.why-choose .video-image .waves-block .wave-3 { animation-delay: 2s; }

/* Call action */
.call-action .content {
	text-align: center;
	padding: 100px 220px;
}

.call-action .content h2 {
	color: var(--tb-white);
	font-size: 32px;
	line-height: 1.45;
}

.call-action .content p {
	margin: 25px 0 30px;
	color: var(--tb-gray-2);
	font-size: 15px;
}

.call-action .content .btn {
	margin-right: 16px;
}

.call-action .content .btn:last-child {
	margin-right: 0;
}

/* Portfolio */
.portfolio {
	background: #f7f7f7;
}

.portfolio .single-pf {
	position: relative;
	overflow: hidden;
}

.portfolio .single-pf img {
	width: 100%;
	height: 100%;
	display: block;
}

.portfolio .single-pf::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .72);
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.portfolio .single-pf:hover::before {
	opacity: 1;
	visibility: visible;
}

.portfolio .single-pf .btn {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 150px;
	height: 48px;
	margin-left: -75px;
	margin-top: -24px;
	padding: 0;
	line-height: 48px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
}

.portfolio .single-pf:hover .btn {
	opacity: 1;
	visibility: visible;
}

.portfolio .owl-nav {
	display: none;
}

/* Services */
.services .single-service {
	position: relative;
	margin: 30px 0;
	padding-left: 72px;
}

.services .single-service i {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--tb-yellow);
	font-size: 45px;
	transition: all .3s ease;
}

.services .single-service:hover i {
	color: var(--tb-black);
}

.services .single-service h4 {
	margin-bottom: 18px;
}

.services .single-service h4 a {
	color: var(--tb-dark);
	font-size: 20px;
	font-weight: 700;
}

.services .single-service h4 a:hover {
	color: var(--tb-yellow);
}

/* Differentials cards */
.pricing-table {
	background: #f7f7f7;
}

.pricing-table .single-table {
	position: relative;
	overflow: hidden;
	min-height: 100%;
	margin: 15px 0;
	padding: 45px 35px 32px;
	text-align: center;
	border: 1px solid #e6e6e6;
	border-radius: var(--tb-radius);
	background: var(--tb-white);
	box-shadow: 0 8px 24px rgba(0,0,0,.06);
	transition: all .3s ease;
}

.pricing-table .single-table:hover {
	transform: translateY(-6px);
	box-shadow: var(--tb-shadow);
}

.pricing-table .single-table .icon i {
	color: var(--tb-yellow);
	font-size: 65px;
}

.pricing-table .single-table .title {
	margin: 28px 0 12px;
	font-size: 21px;
	color: var(--tb-dark);
}

.pricing-table .single-table .amount {
	color: var(--tb-black);
	font-size: 30px;
	font-weight: 800;
}

.pricing-table .single-table .amount span {
	display: block;
	margin-top: 4px;
	color: var(--tb-gray);
	font-size: 14px;
	font-weight: 400;
}

.pricing-table .table-list {
	margin-top: 28px;
	padding: 10px 0;
	text-align: left;
}

.pricing-table .table-list li {
	position: relative;
	margin-bottom: 15px;
	padding-right: 32px;
	color: var(--tb-gray);
	text-transform: none;
}

.pricing-table .table-list i {
	position: absolute;
	right: 0;
	top: 4px;
	width: 17px;
	height: 17px;
	line-height: 17px;
	border-radius: 50%;
	text-align: center;
	background: var(--tb-yellow);
	color: var(--tb-black);
	font-size: 8px;
}

.pricing-table .table-bottom {
	margin-top: 25px;
}

.pricing-table .btn {
	width: 100%;
	padding: 12px 20px;
}

/* Blog */
.blog {
	background: var(--tb-white);
}

.blog .single-news {
	background: var(--tb-white);
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	border-radius: var(--tb-radius);
	overflow: hidden;
	transition: all .3s ease;
}

.blog .single-news:hover {
	transform: translateY(-5px);
	box-shadow: var(--tb-shadow);
}

.blog .single-news img {
	width: 100%;
	display: block;
}

.blog .single-news .news-content {
	position: relative;
	padding: 28px;
	background: var(--tb-white);
}

.blog .single-news .news-content::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--tb-yellow);
	transition: all .3s ease;
}

.blog .single-news:hover .news-content::before {
	width: 100%;
}

.blog .single-news .news-body .date {
	display: inline-block;
	margin-bottom: 12px;
	padding: 5px 14px;
	border-radius: 4px;
	background: var(--tb-yellow);
	color: var(--tb-black);
	font-size: 13px;
	font-weight: 700;
}

.blog .single-news .news-body h2 {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.35;
}

.blog .single-news .news-body h2 a {
	color: var(--tb-dark);
	font-weight: 700;
}

.blog .single-news .news-body h2 a:hover {
	color: var(--tb-yellow);
}

.blog .single-news .news-content p {
	font-size: 13px;
	line-height: 1.7;
	text-transform: none;
}

/* Clients */
.clients {
	padding: 90px 0;
}

.clients .single-clients img {
	width: 100%;
	padding: 0 35px;
	filter: grayscale(1) brightness(2);
	opacity: .85;
	transition: all .3s ease;
}

.clients .single-clients img:hover {
	filter: none;
	opacity: 1;
}

/* Appointment / Contact */
.appointment {
	padding-top: 100px;
	background: var(--tb-white);
}

.appointment .form {
	margin-top: 30px;
}

.appointment .form input,
.appointment .form textarea,
.appointment .form-group .nice-select {
	width: 100%;
	border: 1px solid #e7e7e7;
	border-radius: 6px;
	color: #555555;
	background: var(--tb-white);
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
	transition: all .3s ease;
}

.appointment .form input,
.appointment .form-group .nice-select {
	height: 50px;
	line-height: 50px;
	padding: 0 18px;
}

.appointment .form textarea {
	height: 190px;
	padding: 18px;
	resize: none;
}

.appointment .form input:focus,
.appointment .form textarea:focus {
	border-color: var(--tb-yellow);
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 196, 0, .15);
}

.appointment .form-group .nice-select::after {
	right: 20px;
}

.appointment .form-group .list li:hover {
	background: var(--tb-yellow);
	color: var(--tb-black);
}

.appointment .button .btn {
	font-weight: 700;
}

.appointment .form p {
	margin-top: 10px;
	color: var(--tb-gray);
}

.appointment .appointment-image img {
	display: block;
	margin: 0 auto;
}

/* Newsletter */
.newsletter {
	background: var(--tb-black);
}

.newsletter .subscribe-text h6 {
	margin-bottom: 10px;
	color: var(--tb-white);
	font-size: 22px;
}

.newsletter .subscribe-text p {
	color: var(--tb-gray-2);
}

.newsletter .subscribe-form {
	position: relative;
}

.newsletter .common-input {
	width: 300px;
	height: 60px;
	padding: 0 25px;
	border: 1px solid var(--tb-border);
	border-radius: 6px;
	background: var(--tb-dark);
	color: var(--tb-white);
	font-size: 14px;
}

.newsletter .common-input:focus {
	border-color: var(--tb-yellow);
	outline: none;
}

.newsletter .btn {
	width: 180px;
	height: 60px;
	line-height: 60px;
	margin-left: 10px;
	padding: 0;
	border-radius: 6px;
	font-size: 13px;
}

/* Footer */
.footer {
	position: relative;
	background: var(--tb-black);
}

.footer .footer-top {
	position: relative;
	padding: 90px 0;
	background: var(--tb-black);
	overflow: hidden;
}

.footer .footer-top::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .14;
	background-image: var(--tb-honeycomb-bg);
	background-repeat: repeat;
	background-size: 104px 90px;
}

.footer .footer-top .container {
	position: relative;
	z-index: 2;
}

.footer .single-footer h2 {
	position: relative;
	margin-bottom: 34px;
	padding-bottom: 18px;
	color: var(--tb-white);
	font-size: 20px;
	font-weight: 700;
	text-transform: none;
}

.footer .single-footer h2::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--tb-yellow);
}

.footer .single-footer p,
.footer .single-footer .time-sidual li,
.footer .single-footer.f-link li a {
	color: var(--tb-gray-2);
}

.footer .single-footer.f-link li {
	display: block;
	margin-bottom: 12px;
}

.footer .single-footer.f-link li a:hover {
	padding-left: 8px;
	color: var(--tb-yellow);
}

.footer .single-footer.f-link li a i {
	margin-right: 10px;
	color: var(--tb-yellow);
}

.footer .single-footer .social {
	margin-top: 24px;
}

.footer .single-footer .social li {
	display: inline-block;
	margin-right: 10px;
}

.footer .single-footer .social li a {
	display: block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border: 1px solid var(--tb-yellow);
	border-radius: 50%;
	color: var(--tb-yellow);
	font-size: 16px;
}

.footer .single-footer .social li a:hover {
	background: var(--tb-yellow);
	color: var(--tb-black);
}

.footer .single-footer .time-sidual {
	margin-top: 15px;
}

.footer .single-footer .time-sidual li {
	display: block;
	margin-bottom: 5px;
}

.footer .single-footer .time-sidual li span {
	float: right;
	color: var(--tb-yellow);
}

.footer .single-footer .newsletter-inner {
	position: relative;
	margin-top: 20px;
}

.footer .single-footer .newsletter-inner input {
	width: 100%;
	height: 50px;
	padding: 0 70px 0 18px;
	border: 1px solid var(--tb-border);
	border-radius: 6px;
	background: var(--tb-dark);
	color: var(--tb-white);
}

.footer .single-footer .newsletter-inner input:focus {
	border-color: var(--tb-yellow);
	outline: none;
}

.footer .single-footer .newsletter-inner input::placeholder {
	color: var(--tb-gray-2);
}

.footer .single-footer .newsletter-inner .button {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 0 6px 6px 0;
	background: var(--tb-yellow);
	color: var(--tb-black);
	font-size: 22px;
}

.footer .single-footer .newsletter-inner .button:hover {
	background: var(--tb-white);
}

.footer .copyright {
	padding: 24px 0;
	text-align: center;
	background: #000000;
	border-top: 1px solid rgba(255,255,255,.08);
}

.footer .copyright .copyright-content p,
.footer .copyright .copyright-content p a {
	color: var(--tb-gray-2);
}

.footer .copyright .copyright-content p a:hover {
	color: var(--tb-yellow);
}

/* Responsive complements */
@media only screen and (max-width: 991px) {
	.section { padding: 80px 0; }
	.header .top-link,
	.header .top-contact { float: none; text-align: center; }
	.header .top-link { margin-bottom: 8px; }
	.get-quote { display: none; }
	.slider .single-slider { height: 560px; }
	.slider .single-slider .text { margin-top: 110px; }
	.slider .single-slider h1 { font-size: 34px; }
	.schedule { height: auto; padding: 60px 0 30px; }
	.schedule .schedule-inner { transform: none; }
	.schedule .single-schedule { margin-bottom: 30px; }
	.Feautes { padding-top: 80px; }
	.Feautes .single-features::before { display: none; }
	.call-action .content { padding: 80px 30px; }
	.newsletter .common-input { width: 100%; margin-bottom: 12px; }
	.newsletter .btn { width: 100%; margin-left: 0; }
}

@media only screen and (max-width: 767px) {
	body { font-size: 13px; }
	.section { padding: 70px 0; }
	.section-title { margin-bottom: 45px; }
	.section-title h2 { font-size: 26px; }
	.header .topbar { display: none; }
	.header .logo { margin-top: 14px; }
	.header .logo img { max-height: 46px; }
	.slider .single-slider { height: 520px; }
	.slider .single-slider .text { margin-top: 90px; }
	.slider .single-slider h1 { font-size: 29px; }
	.slider .single-slider p { font-size: 14px; }
	.slider .single-slider .btn { margin-bottom: 10px; }
	.slider .owl-carousel .owl-nav { display: none; }
	.schedule .single-schedule { min-height: auto; }
	.fun-facts .single-fun { margin-bottom: 35px; }
	.fun-facts .row > div:last-child .single-fun { margin-bottom: 0; }
	.call-action .content { padding: 70px 0; }
	.call-action .content h2 { font-size: 25px; }
	.call-action .content .btn { margin: 0 0 10px 0; }
	.services .single-service { padding-left: 60px; }
	.footer .single-footer { margin-bottom: 35px; }
}
