@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap");

* {
	font-family: "Anek Latin", sans-serif;
}

.bg-purple {
	background: #054eaf;
	color: white;
}

.bg-neutral {
	background: #252525;
}

.text-purple {
	color: #054eaf !important;
}

.btn-purple-outline:hover {
	border-color: #054eaf;
	color: #054eaf;
	background: transparent;
}

.background-image,
.background-image2 {
	color: white;
}

.background-image:nth-child(1) {
	background-image: linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.75) 23%,
			rgba(255, 255, 255, 0) 100%
		),
		url("./../img/business.jpg");

	background-size: cover;
}
.background-image:nth-child(2) {
	background-image: linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.75) 23%,
			rgba(255, 255, 255, 0) 100%
		),
		url("./../img/people-working-laptop-meeting.jpg");

	background-size: cover;
}
.background-image:nth-child(3) {
	background-image: linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.75) 23%,
			rgba(255, 255, 255, 0) 100%
		),
		url("./../img/man-laptop.jpg");

	background-size: cover;
}
.background-image:nth-child(4) {
	background-image: linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.75) 23%,
			rgba(255, 255, 255, 0) 100%
		),
		url("./../img/close-up-employees-shaking-hands.jpg");

	background-size: cover;
}


.bg-purple-gradient {
	background: rgb(5, 78, 175);
	background: -moz-linear-gradient(
		145deg,
		rgba(5, 78, 175, 1) 0%,
		rgba(0, 0, 0, 1) 40%
	);
	background: -webkit-linear-gradient(
		145deg,
		rgba(5, 78, 175, 1) 0%,
		rgba(0, 0, 0, 1) 40%
	);
	background: linear-gradient(
		145deg,
		rgba(5, 78, 175, 1) 0%,
		rgba(0, 0, 0, 1) 40%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#054eaf",endColorstr="#000000",GradientType=1);

	color: white;
}

.hr-3-layer {
	background: rgb(46, 77, 154);
	background: -moz-linear-gradient(
		90deg,
		rgba(46, 77, 154, 1) 33%,
		rgba(50, 81, 156, 1) 33%,
		rgba(115, 135, 183, 1) 33%,
		rgba(119, 138, 185, 1) 66%,
		rgba(190, 197, 215, 1) 66%,
		rgba(205, 210, 221, 1) 100%
	);
	background: -webkit-linear-gradient(
		90deg,
		rgba(46, 77, 154, 1) 33%,
		rgba(50, 81, 156, 1) 33%,
		rgba(115, 135, 183, 1) 33%,
		rgba(119, 138, 185, 1) 66%,
		rgba(190, 197, 215, 1) 66%,
		rgba(205, 210, 221, 1) 100%
	);
	background: linear-gradient(
		90deg,
		rgba(46, 77, 154, 1) 33%,
		rgba(50, 81, 156, 1) 33%,
		rgba(115, 135, 183, 1) 33%,
		rgba(119, 138, 185, 1) 66%,
		rgba(190, 197, 215, 1) 66%,
		rgba(205, 210, 221, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2e4d9a",endColorstr="#cdd2dd",GradientType=1);
}

.square-1,
.square-2,
.square-3 {
	padding: 0.5em;
	border-radius: 5px 0;
}

.glass {
	/* From https://css.glass */
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
}

.square-1 {
	border: 2px solid #2e4d9a;
}

.square-2 {
	border: 2px solid #778ab9;
}

.square-3 {
	border: 2px solid #cdd2dd;
}

.glass-no-opacity {
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
}
