@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');*/
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', Arial, sans-serif !important;
	letter-spacing: -0.02em;
	/*background-color: #1E1E1E !important;*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

a {
	color: inherit;
	text-decoration: none;
}
	a:hover,
	a:focus,
	a:active {
		color: inherit;
		text-decoration: none;
	}
.dropdown-item:active {
	background-color: #268596; /* Itens de um menu */
	color: #ffffff;
}

.nav-tabs .nav-item .nav-link.active {
	border-bottom: 4px solid #268596 !important;
}

.custom-border-bottom {
	border-top: 0px;
	border-bottom: 0.5px solid;
	color: lightgray;
}

.custom-border {
	border: 2px solid #268596;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: #ffffff !important;
}

.btn-main {
	/*font-family: "Jost", sans-serif;*/
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid #fff;
	color: #fff;
	text-align: center;
	background-color: black;
}

.btn-main:hover {
	background: #8ebdb6;
	color: white !important;
	/*border: 2px solid #47b2e4;*/
}

.linha {
	padding-top: 3px;
	padding: 0px;
	margin: 0px;
	visibility: hidden;
}

.spinner-div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 80%;
}

.accordion-button {
	background-color: inherit !important; /* Manter a cor original quando fechado */
	color: inherit !important;
	border-color: inherit;
}

.accordion-button:not(.collapsed) {
	background-color: #89c7c2 !important; /* Cor quando o accordion está expandido */
	color: white !important;
}

.accordion-button:focus {
	box-shadow: none !important;
	outline: none !important;
}

a {
	color: inherit; /* This will make the link take on the color of its parent element */
	text-decoration: none; /* This removes the underline */
}

a:hover {
	color: inherit;
	text-decoration: none;
}

.centered-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.btn-ft {
	border: 1px solid hsla(0,0%,100%,.8);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: #1E1E1E !important;
}

.bg-ft {
	background-color: #1E1E1E !important;
}

.bg-pallete1 {
	background-color: #F3F3C8 !important;
}

.bg-pallete2 {
	background-color: #268596 !important;
}

.bg-pallete3 {
	background-color: #8C4F43 !important;
}

.bg-pallete4 {
	background-color: #929A56 !important;
}

.bg-pallete5 {
	background-color: #2C2C2C !important;
}

.bg-pallete6 {
	background-color: #8ebdb6 !important;
}

.text-ft {
	background-color: #1E1E1E !important;
}

.text-pallete1 {
	color: #F3F3C8 !important;
}

.text-pallete2 {
	color: #268596 !important;
}

.text-pallete3 {
	color: #8C4F43 !important;
}

.text-pallete4 {
	color: #929A56 !important;
}

.header {
	position: sticky;
	top: 0;
}

.a {
	color: #268596 !important;
}

.box1 {
	padding: 20px;
	background: #fff;
	text-align: center;
	border: 1px solid #eef0ef;
	border-radius: 0;
	position: relative;
	overflow: hidden;
}

.box {
	background: #fff;
	text-align: center;
	border: 1px solid #eef0ef;
	border-radius: 0;
	position: relative;
	overflow: hidden;
}

.advanced {
	width: 200px;
	position: absolute;
	top: 18px;
	right: -68px;
	transform: rotate(45deg);
	z-index: 1;
	font-size: 14px;
	padding: 1px 0 3px 0;
	background: #ff0000;
	color: #fff;
}

.btn-get-started {
	/*font-family: "Raleway", sans-serif;*/
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 35px;
	border-radius: 50px;
	transition: 0.5s;
	margin-top: 20px;
	border: 2px solid #fff;
	color: #fff;
}

.btn-get-started:hover {
	background: #268596;
	color: white;
	border: 2px solid #5fcf80;
}

/*-------------------------------------------       animation       */
transiction {
	transition-property: opacity, left, top, height;
	transition-duration: 3s, 5s, 3s, 5s;
}

.animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}

/*GREAT ANIMATIONS*/

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/*DOWN*/

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/*pulse*/

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInBottomRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}