.design-block.background-img {
	position: relative;
}

.design-block.background-img .static-bars {
	display: flex;
	gap: 15px;
	margin-bottom: 33px;
}

.design-block.background-img .static-bars .bar {
	height: 15px;
    	background: #3498db;
    	border-radius: 10px;
	color: white;
}

.design-block.background-img .static-bars .bar:nth-child(1) {
	width: 300px;
	background: linear-gradient(to right, #004986 1%, #0096d3);
}

.design-block.background-img .static-bars .bar:nth-child(2) {
	width: 120px;
}

.design-block.background-img .static-bars .bar:nth-child(3) {
	width: 220px;
}

.design-block.background-img img {
	height: 670px;
    	width: 100%;
    	object-fit: cover;
}

.design-block.background-img .text-div {
	position: absolute;
	top: 140px;
    	left: 175px;
	width: 100%;
}

.design-block.background-img h2 {
	color: white;
	font-size: 45px;
	margin-bottom: 20px;
	max-width: 90%;
  	word-break: break-word;
}

.design-block.background-img p {
	color: white;
	font-family: PrimaryFontMedium !important;
	margin-bottom: 47px !important;
	max-width: 90%;
  	word-break: break-word;
}

.design-block.background-img a {
	font-family: PrimaryFont !important;
	background-color: #00a3e0;
	width: fit-content;
	margin: auto;
	color: white !important;
	padding: 23px 53px;
	border-radius: 35px;
}

@media only screen and (min-width:1200px) {
	
	.design-block.background-img h2 {
		max-width: 670px;
	}

	.design-block.background-img p {
		max-width: 670px;
	}
}

@media only screen and (min-width:768px) and (max-width:1199px) {
	
	.design-block.background-img .text-div {
		left: 50px;
	}
}

@media only screen and (max-width:767px) {
	
	.design-block.background-img .text-div {
		top: 60px;
		left: 15px;
	}
	
	.design-block.background-img a {
		padding: 20px 40px;
	}

        .design-block.background-img h2 {
                font-size: 35px;
		max-width: 90%;
		word-break: break-word;
		margin-bottom: 10px;
        }

        .design-block.background-img .static-bars {
	        margin-bottom: 15px;
        }

        .design-block.background-img p {
                max-width: 90%;
  		line-height: 22px;
		margin-bottom: 40px !important;
        }

        .design-block.background-img .static-bars .bar:nth-child(1) {
                width: 280px;
        }
}