*,
:after,
:before {
	box-sizing: border-box
}

:root {
	--color-text: #fff;
	--color-bg: #4433a5;
	--color-link: #fff;
	--color-link-hover: #fff;
	--page-padding: 1.5rem 2rem;
	font-size: 16px
}

body {
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	font-family: area-normal, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
	overflow-x: hidden
}

.splash {
	background-image: linear-gradient(#4433a5 0%, #522fa2 50%, #4433a5 100%)
}

a {
	color: var(--color-link);
	cursor: pointer;
	outline: none;
	text-decoration: none
}

a:hover {
	color: var(--color-link-hover);
	outline: none
}

a:focus {
	background: #d3d3d3;
	outline: none
}

a:focus:not(:focus-visible) {
	background: 0 0
}

a:focus-visible {
	background: 0 0;
	outline: 2px solid red
}

.frame {
	color: var(--color-title);
	padding: var(--page-padding);
	grid-gap: .5rem;
	grid-template: "title""prev" /1fr;
	justify-content: start;
	place-items: start end;
	margin-bottom: 3rem;
	font-size: 14px;
	font-weight: 600;
	display: grid
}

.frame a:not(.frame__av-link),
.line {
	white-space: nowrap;
	position: relative;
	overflow: hidden
}

.frame a:not(.frame__av-link):before,
.line:before {
	content: "";
	transform-origin: 0%;
	background: currentColor;
	width: 100%;
	height: 1px;
	transition: transform .3s;
	position: absolute;
	top: 90%
}

.frame a:not(.frame__av-link):hover:before,
.line:hover:before {
	transform-origin: 100%;
	transform: scaleX(0)
}

.frame__av {
	grid-area: title;
	align-items: center;
	display: flex
}

.frame__av-main {
	margin: 0;
	font-size: 1rem;
	font-weight: 400
}

.frame__av-link {
	align-items: flex-end;
	display: flex;
	position: relative;
	opacity: .7
}

.frame__av-link svg {
	fill: currentColor
}

.frame__cta {
	grid-area: prev;
	align-self: start
}

.frame__cta-link {
	gap: 1rem;
	display: flex
}

.frame__cta-link span {
	opacity: .7
}

.intro {
	text-align: center;
	place-items: center;
	height: 100vh;
	display: grid
}

.intro__title {
	place-items: center;
	margin: 0;
	font-weight: 300;
	line-height: .9;
	display: grid
}

.intro__title-sub {
	font-family: "area-normal",sans-serif;
	margin-top: 2%;
	font-size: clamp(1rem, 4vw, 2.5rem)
}

.intro__info {
	opacity: .6;
	max-width: 20ch;
	margin-bottom: 7rem;
	padding-bottom: 1rem;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	position: relative
}

.intro__info:after {
	content: "";
	background: #fff;
	width: 1px;
	height: 2rem;
	position: absolute;
	top: 100%;
	left: 50%
}

.content {
	padding: var(--page-padding);
	flex-direction: column;
	width: 100vw;
	display: flex;
	text-align: center;
	position: relative
}

.content:last-child {
	padding-bottom: 20vh
}

.content--full {
	padding: 0
}

.content p {
	max-width: 660px;
	margin: 1.5rem auto;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5
}

.content--highlight p {
	font-family: area-normal, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(0.95rem, 3vw, 1.55rem)
}


.font {
	font-family: halogen, sans-serif;
	font-weight: 700
}


.font-height-medium {
	line-height: .9
}

.font-medium {
	margin-top: 7.5rem;
	font-size: 15vw
}

.column {
    width: 650px;
    display: inline-block;
    text-align: left;
}

.txt {
    margin:auto;
}

.btn {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  align-self: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  font-family: "area-normal", sans-serif;
  width: 75%;
  position:relative;
  top:-21px;
}

.btn:hover, .btn:focus {
  color: #fff;
  outline: 0;
}

.cta {
  border-color: #fff;
  border-radius: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 150ms ease-in-out;
}

.cta:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: width 150ms ease-in-out;
}

.cta:hover {
  color: #4433a5;
}

.cta:hover:after {
  width: 110%;
}

@media screen and (min-width:53em) {
	.frame {
		grid-gap: 2rem;
		grid-template: "title prev" /auto auto 1fr auto;
		justify-items: start
	}
	.frame__cta-link {
		justify-self: end
	}
}

@media only screen and (min-width :1px) and (max-width :845px) {
.column {
    width: 100%;
 }
.intro {
	height: 80vh;
 }
}

@media only screen and (min-width :1px) and (max-width :415px) {
.btn {
    width: 90%;
 }
}

@media only screen and (min-width :845px) {
.column {
    padding-left: 9.5%!important;
 }
}