.footer {
    position: relative;
    min-height: 50px;
    margin-top: 100px;
    clear: both;
    z-index: 999;
    background-color: white; 
}

.feature {
	border: 1px solid black;
	padding: 15px;

	padding-bottom: 20px;
	border-style: solid;
	border-image: 
	  linear-gradient(
		to bottom, 
		rgb(4, 4, 76), 
		rgba(0, 0, 0, 0)
	  ) 1 100%;
	  border-width: 2px;
	margin-bottom: 30px;
	width: 35%;
	border-radius: 5px;
}

h3 {
	margin-top: 0.5cm;
	margin-bottom: 1.5cm;
	font-size: 16px;
	text-align: center;
}

h1 {
	font-size: 14px;
	margin-top: 1cm;
	margin-bottom: 0.5cm;
	text-transform: uppercase;
}

p {
	font-size: 12px;
}

section {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-evenly;
	position: relative;
	top: 4.5cm;
	margin-right: 1cm;
	margin-left: 1.5cm;
	        border-style: solid;
        border-image: 
          linear-gradient(
            to bottom, 
            rgb(4, 4, 76), 
            rgba(0, 0, 0, 0)
          ) 1 100%;
          border-width: 1px;
	scale: 90%;

}

.draw-border {
	box-shadow: inset 0 0 0 1px rgb(4, 4, 76);
	color: #232995;
	transition: color 0.25s 0.0833333333s;
	position: relative;
}

.draw-border::before,
.draw-border::after {
	border: 0 solid transparent;
	box-sizing: border-box;
	content: "";
	pointer-events: none;
	position: absolute;
	width: 0;
	height: 0;
	bottom: 0;
	right: 0;
}

.draw-border::before {
	border-bottom-width: 1px;
	border-left-width: 1px;
}

.draw-border::after {
	border-top-width: 1px;
	border-right-width: 1px;
}

.draw-border:hover {
	color: white;
	background-color: rgb(4, 4, 76);
}

.draw-border:hover::before,
.draw-border:hover::after {
	border-color: #1d2166;
	transition: border-color 0s, width 0.25s, height 0.25s;
	width: 100%;
	height: 100%;
}

.draw-border:hover::before {
	transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
	transition-delay: 0s, 0.25s, 0s;
}

.btn {
	background: none;
	justify-content: center;
	border: none;
	cursor: pointer;
	line-height: 1;
	padding: 0.5em 1em;
	letter-spacing: 0.05rem;
	border-radius: 5px;
	font-size: 14px;
	margin: 0;
	font-weight:bbold;
	left: 50.5%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: relative;
	min-height: 50px;
	margin-top: 200px;
	clear: both;
	background-color: transparent;

}

.btn:focus {
	outline: 1px #1d2166;
	font-weight: bold;
}

@media screen and (max-width: 1480px) {


	.feature {
		border: 1px solid black;
		padding: 15px;
		margin-bottom: 30px;
		width: 40%;
		border-style: solid;
        border-image: 
          linear-gradient(
            to bottom, 
            rgb(4, 4, 76), 
            rgba(0, 0, 0, 0)
          ) 1 100%;
          border-width: 1px;
	}

	
}


@media screen and (max-width: 870px) {


	.feature {
		border: 1px solid black;
		padding: 15px;
		margin-bottom: 30px;
		width: 100%;
		border-style: solid;
        border-image: 
          linear-gradient(
            to bottom, 
            rgb(4, 4, 76), 
            rgba(0, 0, 0, 0)
          ) 1 100%;
          border-width: 1px;
	}

	h3 {
		margin-top: 0.5cm;
		margin-bottom: 1.5cm;
		font-size: 18px;
		text-align: center;
	}

	h1 {
		font-size: 16px;
		margin-top: 1cm;
		margin-bottom: 0.5cm;
		text-transform: uppercase;
	}

	p {
		font-size: 14px;
	}

	section {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		top: 0cm;
		margin-right: 1cm;
		margin-left: 1cm;
		float: left;
		scale: 80%;
		gap: 50px;

	}

	.btn {
		background: none;
		justify-content: center;
		border: none;
		cursor: pointer;
		line-height: 1;
		padding: 0.5em 1em;
		letter-spacing: 0.05rem;
		margin-top: 1cm;
		border-radius: 5px;
		font-size: 16px;
		margin: 0;
		font-weight: lighter;
		left: 50%;
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		position: relative;
		min-height: 50px;
		margin-top: -80px;
		clear: both;
		background-color: transparent;
	
	}

}



