
.btn {
	font-size: .8em;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	padding: 14px 25px;
	border-radius: 50px;
	border: 2px solid var(--light-blue);
	background: var(--light-blue);
	color: #fff;
	white-space: nowrap;
}

.btn {
	font-size: .8em;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	padding: 14px 25px;
	border: none;
	border-radius: 50px;
	background: var(--light-blue) !important;
	color: #fff !important;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s ease-in-out;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(270deg, #01599c -54.3%, #002345 100%);
}

.btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s ease-in-out;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 50px;
}

.btn:hover:before, .btn.active:before {
	opacity: 1;
}

.btn.btn-primary {
	background: #0077cd !important;
}

.btn.dark {
	background: #024 !important;
}

.btn.dark:before {
	background: #0077cd;
}

.btn.white {
	color: #000 !important;
	background: #fff !important;
}

.btn.white:hover, .btn.white.active {
	color: #fff !important;
}

.btn.white:before {
	background: #0077cd;
}

.btn.transparent {
	color: var(--light-blue) !important;
	background: transparent !important;
}

.btn.transparent.alt {
	color: var(--light-blue) !important;
	background: transparent !important;
}

.btn.transparent.alt:after {
	border-color: var(--light-blue);
}

.btn.transparent:hover, .btn.transparent.active {
	color: #fff !important;
}

.btn.transparent:after {
	opacity: 1;
	border: 2px solid var(--light-blue);
}

.btn.transparent:hover:after, .btn.transparent.active:after {
	opacity: 0;
}

.btn.transparent:before {
	background: #0077cd;
}

.btn.white.transparent {
	color: #fff !important;
}

.btn.white.transparent:after {
	border: 2px solid #fff;
}

.btn.active {
	pointer-events: none;
}

.flex-content.cta-section-logo-orbit-animation .inner a.arrow {
	display: inline-flex;
	align-items: center;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	text-decoration: none;
	color: var(--light-blue);
	margin: 54px 0 0;
}

a.arrow svg {
	display: block;
	width: 10px;
	height: 15px;
	margin: 1px 0 0 8px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right center;
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	transition: all 150ms linear;
}

a.arrow svg path {
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	transition: all 150ms linear;
}

a.arrow {
	display: inline-flex;
	align-items: center;
	font-size: .8em;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	text-decoration: none;
	color: var(--light-blue);
	white-space: nowrap;
}

a.arrow.white {
	color: #fff;
}

a.arrow:hover svg {
	margin-left: 15px;
}

a.arrow:hover svg path {
	fill: #000;
}

a.arrow.white svg path, a.arrow.white:hover svg path {
	fill: #fff;
}
