.header {
    background: linear-gradient(180deg, #407180 0%, rgba(64, 113, 128, 0) 100%);
    padding-top: 20px;
    padding-bottom: 20px;
}

.header .container {
    display: flex;
}

.header img {
    display: block;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 181, 18, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(253, 181, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 181, 18, 0);
  }
}
.btn-cta p {
	margin-bottom: 1px;
}
.header-logo {
    width: 200px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
}
.btn-cta {
	border-radius: 20px;
	background-color: #FDB512;
	outline: none;
	color: black;
	justify-content: center;
	display: flex;
	align-items: center;
	box-shadow: 0 0 0 0 #FDB512;
	animation: pulse 2s infinite;
	border: 2px solid transparent;
	padding: 0.5rem 1.25rem;
	height: auto;
	min-height: 10px;
	align-self: center;
}

.btn-cta:hover {
	background-color: #414141;
	cursor: pointer;
	color: #FDB512;
}
.btn-cta:hover svg path {
	fill: #FDB512;
}
