#page-services {
	.container {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		.pse-bot {
			ul {
				display: flex;
				flex-direction: column;
				gap: 1rem;

				@media (min-width: 1024px) {
					display: grid;
					grid-template-columns: repeat(2, 1fr);
				}

				li {
					padding: 8px 8px 8px 8px;
					/* border: 1px solid var(--trans-dark-1); */
					position: relative;
					font-weight: var(--fw-bold);
					font-family: var(--font-secondary);
					/* box-shadow: 0 0 10px 0 var(--trans-dark-1); */
					/* border-radius: 7px; */

					&:nth-child(odd) {
						@media (min-width: 768px) {
							width: calc(100% - 2rem);
							left: 2rem;
						}

						@media (min-width: 1024px) {
							width: 100%;
							left: 0;
						}
					}

					&:nth-child(even) {
						@media (min-width: 768px) {
							width: calc(100% - 2rem);
						}
						@media (min-width: 1024px) {
							width: 100%;
						}
					}

					&:after {
						content: "";
						width: 5px;
						height: 5px;
						border: 2px solid var(--trans-dark-5);
						border-radius: 50%;
						position: absolute;
						top: 8px;
						right: 8px;
					}

					a {
						position: relative;
						z-index: 1;
						width: 100%;
						height: 100%;
						display: block;
						padding-right: 12px;
					}
				}
			}
		}
	}
}
