*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
	color: #000;
	text-decoration: none;
}
img{
    max-width: 100%;
    display:block;
}
body{
font-family: Inter, sans-serif;
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #000;
background: #fff;
margin: 0;
overflow-x: hidden;
}
.container{
max-width: 1400px;
padding: 0 20px;
margin: 0 auto;
}

.hidden-desktop{
	display: none;
}

.cta{
	padding: 240px 0;
	position: relative;
	overflow: hidden;
}
.bg-video{
	position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.cta-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    pointer-events: none;
    z-index: 2;
}
.heading{
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: #fff;
	position: relative;
	z-index: 5;
	text-align: center;
	justify-content: center;

}
h2{
	font-size: 52px;
	line-height: 120%;
	font-weight: 700;
}
.heading p{
	font-size: 20px;
	line-height: 120%;
}
.heading-action{
	margin: 20px 0 0;
	display: flex;
	gap: 20px;
	justify-content: center;
}
.btn-primary{
	display: inline-flex;
	padding: 20px 40px;
	border-radius: 100px;
	background-color: #fff;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
}
@media (max-width: 1280px){

}

@media (max-width: 992px){
.hidden-desktop{
	display: block;
}
.hidden-mobile{
	display: none;
}
}

@media (max-width: 768px){
}

@media (max-width: 479px){
h2{
	font-size: 32px;
}
.cta{
	padding: 120px 0;
}
.heading p {
    font-size: 16px;
}
.btn-primary{
	font-size: 14px;
	padding: 18px 30px;
}
}