@import url('https://fonts.googleapis.com/css2?family=Amiko:wght@400;600;700&display=swap');

/*
rosa #b61a6e
rosa2 #2e9bec
*/

::-webkit-scrollbar {
	width: 6px;
	background: #F4F4F4;
}

::-webkit-scrollbar-button {
	background-color: #ccc;
}

::-webkit-scrollbar-button:hover {
	background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb {
	background: #aaa;
}

::-webkit-scrollbar-thumb:hover {
	background: #ccc;
}

body {
	background: #fff;
	color: #333;
	font-family: 'Amiko', sans-serif;
	margin: auto;
	transition: ease-in 500ms;
}

a,
a:hover {
	text-decoration: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.text-white {
	color: #fff;
}

.text-dark {
	color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #0c1a3f;
}


hr {
	background: #0c1a3f;
	height: 3px;
}

.rodape {
	background: #feb614;
	color: #0c1a3f;
}

.rodape a,
.rodape small,
.rodape a i {
	color: #0c1a3f;
}

.rodape a:hover {
	color: #323232;
}

.rodape small {
	color: #0c1a3f;
}


.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 15px;
	right: 15px;
	background-color: #388e3c;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #000;
	z-index: 100;
}

.float:hover {
	color: #fff;
	opacity: .8;
}

.my-float {
	margin-top: 15px;
}

/* Styles Button */
.btn i {
	display: block;
	position: relative;
	color: #fff;
	z-index: 1;
	transition: ease-in 500ms;
	border: 1pz solid #fff;
}

/* Drop-down Menu Styling */
ul.menu {
	margin: 0 auto;
	padding: 0;
	/*z-index: 0;*/
	transition: ease-in 500ms;
}

ul.menu a {
	color: #333;
	text-decoration: none;
	transition: ease-in 500ms;
}

ul.menu a:hover {
	color: #0c1a3f;
	display: block;
	text-decoration: underline;
	transition: ease-in 500ms;
}

ul.menu li {
	list-style: none;
	letter-spacing: 2px;
	text-align: center;
	color: #333;
	transition: ease-in 500ms;
}


.primary {
	margin: 0 15px 0 15px;
	padding: 12px 30px 12px 30px;
	background-color: transparent;
	border: 4px solid #fff;
	border-radius: 6px;
	font-weight: 400;
	font-size: 1.1em;
	letter-spacing: 2px;
	color: #fff;
	text-decoration: none;
}

.secondary {
	margin: 0 15px 0 15px;
	padding: 16px 30px 16px 30px;
	background-color: #2e9bec;
	border: 0;
	border-radius: 6px;
	font-weight: 400;
	font-size: 1.1em;
	letter-spacing: 2px;
	color: #fff;
	text-decoration: none;
	transition: ease-in 500ms;
}

.primary:hover {
	border: 4px solid #b61a6e;
	color: #2e9bec;
	transition: ease-in 500ms;
}

.secondary:hover {
	background: #b61a6e;
	color: #fff;
	transition: ease-in 500ms;
}

.terciary {
	margin: 0 15px 0 15px;
	padding: 10px 20px;
	background-color: transparent;
	border: 3px solid #b61a6e;
	border-radius: 6px;
	font-weight: 400;
	font-size: 0.8em;
	letter-spacing: 2px;
	color: #b61a6e;
	text-decoration: none;
}

.terciary:hover {
	border: 3px solid #2e9bec;
	color: #2e9bec;
	transition: ease-in 500ms;
}

/* Makes Buttons & Logo Responsive */
@media screen and (max-width: 600px) and (min-width: 320px) {
	label {
		margin: 50px;
	}

	.logo img {
		padding-top: 20px;
	}
}

@media screen and (max-width: 500px) {
	.cta {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		max-width: 400px;
		padding: 10px 0 0 0;
		margin: 0 auto;
		justify-content: center;
	}

	a.primary {
		width: 100%;
		max-width: 250px;
	}

	a.secondary {
		width: 100%;
		max-width: 250px;
		margin: 25px 0 40px 0;
	}
}


.slick-nexti,
.slick-previ {
	position: absolute;
	background-color: transparent;
	top: 50%;
	bottom: 0;
	width: 40px;
	color: #feb614;
	font-size: 60px;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	opacity: .7;
	z-index: 99;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
}

.slick-previ:hover,
.slick-nexti:hover,
.slick-nexti:focus,
.slick-previ:focus {
	text-decoration: none;
	filter: alpha(opacity=0);
	outline: 0;
	opacity: 1;
}

.slick-previ {
	left: 0;
	left: 0px;
}

.slick-nexti {
	right: 0;
	right: 0px;
}