.custom-footer {
	padding:  100px 0 50px 0;
	background: #161739;
}
.custom-footer-link {
	color:  white!important;
}
.auto__container {
  position: relative;
  /*max-width: 1420px;*/
  max-width: 1140px;
  padding: 0px 250px;
  margin: 0 auto;
}
.title-inner {
	height: 292px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
@media (max-width: 450px) {
  .title-inner {
    height: auto;
    padding-top: 50px;
  }
}
.navbar-container .title-inner .title {
	margin-top:  42px;
	line-height:  55px;
	color: white;
}


@media (max-width: 1800px) {
  /* main page */
  .auto__container {
    padding: 0 250px;
  }
}
@media (max-width: 1550px) {
  /* main page */
  .auto__container {
    padding: 0 150px;
  }
}
@media (max-width: 650px) {
  .auto__container {
    padding: 0 20px;
  }
}
.serviceHero__inner .title {
	margin-top: 55px;
}
.hero-message {
	color: white;
	margin-top: 15px;
	font-size: 2.7rem;
	font-weight: 550;
	line-height:  1;
}
.read-more-button {
  color: #0b1b31!important;
  background: white;
  border-radius: 22px;
  line-height: 44px;
  padding: 0 2rem;
  height: 44px;
  display: inline-block;
  font-weight: 600;
  transition: background .2s ease-out;
  margin-right: 15px;
}
.read-more-button.purple {
  color: white!important;
  background: #650764;
}
.read-more-button:hover {
	cursor: pointer;
}
.read-more-button.purple:hover {
	background: #871686;
}
$badge-background: #111;
$badge-color: #fff;
$badge-min-size: 11px;
$badge-max-size: 25px;

body {
	font-family: 'Allerta Stencil', sans-serif;
	padding: 0;
	margin: 70px 10px;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(99vh - 140px);
}

.badge {
	position: relative;
	letter-spacing: 0.08em;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease;
	transform: rotate(-14deg);
	text-align: center;
}

.badge::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 10em;
	height: 10em;
	border-radius: 100%;
	background: #32b377;
	opacity: 0.8;
	transition: opacity 0.3s linear;
}

.badge:hover {
    color: white;
    text-decoration: none;
    transform: rotate(-10deg) scale(1.05);
}
.badge svg {
    position: absolute;
    top: 50%;
    left: 50%;
		transform: translate(-50%, -50%);
    display: block;
    z-index: 0;
    width: 10em;
		height: 10em;
  }

.badge span {
    display: block;
    /*background: orange;*/
    border-radius: 0.4em;
    padding: 0.4em 1em;
    z-index: 1;
    /*min-width: 11em;*/
    font-size: 1.5rem;
    /*border: 1px solid;*/
    text-transform: uppercase;
}