@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=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap");
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-brands/css/uicons-brands.css');

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

.text-serif {
	font-family: "Playfair Display", serif;
}

.bg-gray{
	background: #afafaf;
	border-color: #afafaf;
	color: black;
}

.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/assesoria-mulher.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/assessoria-grafico.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/handshake.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/people-working-laptop-meeting.jpg");

	background-size: cover;
}

.bg-black-gradient {
	background: #000000; /* fallback for old browsers */
	background: -webkit-linear-gradient(
		to right,
		#434343,
		#000000
	); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(
		to right,
		#434343,
		#000000
	); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

	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 #4b4b4b;
}

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

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

.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;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
}

.slider-items {
    display: flex;
    justify-content: space-between;
	gap: 3em;
    align-items: center;
    animation: scrolling 40s linear infinite;
}

.slider-items img{
	width: 25%;
	height: 100px;
	object-fit: contain;
}

@keyframes scrolling {

    0% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(-120%);
    }
}

.slider-items img {
	object-fit: contain;
	flex-grow: 1;
    margin: 20px;
	opacity: 75%;
	filter: grayscale() invert();
}

@media screen and (max-width: 720px) {
	.slider-items img {
		object-fit: contain;
		flex-grow: 1;
		margin: 5px;
		opacity: 75%;
		filter: grayscale() invert();
		width: 40%;
	}	
}