:root {
	--section-margins: 70px;
	--white: #fff;
	--light-blue: rgba(204, 233, 244, .25);
	--solid-light-blue: #CCE9F4;
	--solid-lighter-blue: #F3FAFC;
	--blue: rgba(204, 233, 244, .6);
	--solid-blue: #0093C9;
	--solid-dark-blue: #007AA7;
	--solid-red: #CF3339;
	--solid-dark-red: #B52B30;
	--black: #2D2A26
}

@media (min-width:768px) {
	:root {
		--section-margins: 70px
	}
}

@media (min-width:1025px) {
	:root {
		--section-margins: 96px
	}
}

.btn {
	font-family: 'Poppins', sans-serif;
	border: none;
	display: inline-block;
	text-align: center;
	background: var(--solid-blue);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.278em;
	padding: 15px 42px;
	text-transform: none;
	cursor: pointer;
	position: relative;
	border-radius: 30px !important;
	text-decoration: none
}

.btn + .btn {
    margin-top: 0;
    margin-left: 20px;
}

.btn-secondary {
    background: var(--solid-red);
}

@media (max-width: 767px) {
  #page-header .container {
        width:100%;
        max-width: 600px;
        padding: 0;
  }
  .btn + .btn {
      margin-top: 20px;
      margin-left: 0px;
    }
}