@import url("https://fonts.googleapis.com/css2?family=Poppins: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");

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

.border-b-yellow {
	border-bottom: 3px solid #e5b80b;
}

.border-t-yellow {
	border-top: 3px solid #e5b80b;
}

.gradient-black {
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(
		138deg,
		rgba(0, 0, 0, 0.75) 11%,
		rgba(0, 0, 0, 0) 100%
	), var(--image);
	background: -webkit-linear-gradient(
		138deg,
		rgba(0, 0, 0, 0.75) 11%,
		rgba(0, 0, 0, 0) 100%
	), var(--image);
	background: linear-gradient(
		138deg,
		rgba(0, 0, 0, 0.75) 11%,
		rgba(0, 0, 0, 0) 100%
	), var(--image);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#054eaf",GradientType=1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hr-short-yellow{
    border-color: #e5b80b;
    border-width: 2px;
    width: 4em;
}

.hr-short-blue{
    border-color: #003473;
    border-width: 2px;
    width: 4em;
}

.card-outline{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #999;
    border-radius: 5px;
    padding: 2em;
    position: relative;
}

.card-outline h2{
    text-align: center;
}

.card-outline p{
    text-align: justify;
}

.card-outline i{
    position: absolute;
    top: -1em;
    background: #003473;
    color: #fff;
    padding: 0.5em 0.75em;
    border-radius: 100%;
}

.text-blue{
    color: #003473;
}

.text-yellow{
    color: #e5b80b;
}

.bg-blue{
    background: #003473;
    color: #fff;
}

.bg-yellow{
    background: #e5b80b;
    color: #fff;
}

.btn-yellow{
    background: #e5b80b;
    border-color: #e5b80b;
    color: #003473;
}
