.cta-container {
	background: linear-gradient(90deg, #2E5AA4 0%, #4B99E1 100%);
    position: relative;
}

.cta-container .dots-matrix {
	position: absolute;
	background-image: url("data: image/svg+xml;utf8, %3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23617DBC'/%3E%3C/svg%3E");
	background-color: transparent;
	background-repeat: space;
	left: 7%;
	top: 5px;
	bottom: 10%;
	width: 150px;
}

.cta-container .container-s {
	position: relative;
}

.cta-container .cta {
	justify-content: space-between;
    align-items: center;
    padding: 0 45px;
}

.cta-container .cta-text {
    color: #FFFFFF;
    margin: 0;
}

.cta-container .cta-action {
	background: #FFFFFF;
    box-shadow: 0px 4px 4px rgb(46 90 164 / 50%);
    border-radius: 28px;
    padding: 15px 30px;
    color: #414449;
    font-weight: bold;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
	text-align: center;
}

.cta-container .cta-action:hover {
    background: #FDC238;
}

@media (max-width: 1300px) {
	.cta-container .dots-matrix {
		display: none;
	}
}

@media (max-width: 745px) {
	.cta-container .cta {
		justify-content: center;
	}

	.cta-container .cta .cta-text {
		text-align: center;
		margin-bottom: 20px;
	}	
}

