html {
	width: 100%;
	height: 100%;
	position:relative;
	overflow: hidden;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: url('./assets/bg.png') no-repeat;
	background-size: cover;
	background-position: center;
}
.container {
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    padding:1.5rem;
    position: relative;
	text-transform: uppercase;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
h2.title.title_2 {
    font-size: 48px;
    margin: 0;
    font-weight: 900;
}
.text_lp {
	font-family: 'Montserrat', sans-serif;
}

.title {
    color: #fbfbfb;
    font-weight: bold;
    font-size: 1.15rem;
}
.percent_lp {
	font-size: 230px;
    line-height: 100px;
    color: #fcfcfc;
    font-weight: bolder;
}
.p_ {
	font-size: 3rem;
	position: absolute;
	color: #fcfcfc;
	font-weight: bold;
}
a.cta {
    color: #000000;
    text-decoration: none;
	font-family: Montserrat, sans-serif;
	background-color: #fcfcfc;
    font-size: 18px;
    padding: 1rem 1rem;
	margin-top: 20px;
	padding: 15px 40px;
    border-radius: 41px;
	font-weight: 700;
    position: relative;
    float: left;
    transition-duration: 0.2s;
}
.arrow {
	display: inline-block;
	background-color: black;
	color: white;
	padding: 5px 10px;
	border-radius: 50%;
	font-size: 1.2rem;
}

a.cta:hover{
	background: conic-gradient(from 209.59deg at 50% 50%, #C6F1DB 0deg, #A4E8C0 50.06deg, #B8E2FB 85.94deg, #E8F2F1 134.97deg, #DCE6F9 172.05deg, #C1E4E5 200.75deg, #99BAFF 224.67deg, #C7EDEB 259.36deg, #E7F5EF 298.82deg, #E7E7F2 328.72deg, #C6F1DB 360deg);
	transition: all 1s ease-in-out;
}

.title_2{
	background: conic-gradient(from 209.59deg at 50% 50%, #C6F1DB 0deg, #A4E8C0 50.06deg, #B8E2FB 85.94deg, #E8F2F1 134.97deg, #DCE6F9 172.05deg, #C1E4E5 200.75deg, #99BAFF 224.67deg, #C7EDEB 259.36deg, #E7F5EF 298.82deg, #E7E7F2 328.72deg, #C6F1DB 360deg);
	border: 1px solid #fff;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	margin-bottom: 20px;
	font-size: 16px;
	border-radius: 5px;
	font-weight: bold;
}

.title_2 span{
	background: linear-gradient(90deg, #2B9581 0%, #3432AC 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

h3{
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	font-size: 53px;
    margin: 0;
    font-weight: 900;
	font-family: 'Montserrat', sans-serif;
	width: 100%;
	margin-top: 20px;
}

p{
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
    margin: 0;
    font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	width: 100%;
}

@media (max-width: 1025px) {
	body {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position-x: center;
	    background-position-y: bottom;
	    background-color: #000000ad;
	}
	.container {
		justify-content: center;
		align-items: flex-start;
    	flex-direction: column;
    	background: none;
	}
	.title {
	    font-size: 1rem;
	    text-align: left;
	}
	.title_2 {
		font-size: 22px !important;
	}
	.text_lp {
		display: flex;
    	justify-content: center;
    	align-items: flex-start;
    	flex-direction: column;
	}
	.percent_lp {
		font-size: 9rem;
	    line-height: 100px;
	}

	h3{
		font-size: 28px;
		bottom: 40%;
		text-align: left;
	}
}

