 @font-face {
   font-family: "TimesNow";
   font-style: normal;
   font-weight: 350;
   font-stretch: 100%;
   font-display: swap;
   src: url("/fonts/TimesNow-SemiLight.ttf") format("truetype");
 }

 @font-face {
   font-family: "HelveticaNeue";
   font-style: normal;
   font-weight: 400;
   font-stretch: 100%;
   font-display: swap;
   src: url("/fonts/HelveticaNeueRoman.otf") format("opentype");
 }

 @font-face {
   font-family: "HelveticaNeue";
   font-style: normal;
   font-weight: 700;
   font-stretch: 100%;
   font-display: swap;
   src: url("/fonts/HelveticaNeueBold.otf") format("opentype");
 }

 @font-face {
   font-family: "HelveticaNeue";
   font-style: normal;
   font-weight: 300;
   font-stretch: 100%;
   font-display: swap;
   src: url("/fonts/HelveticaNeueLight.otf") format("opentype");
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }

 *,
 *::before,
 *::after {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: 'HelveticaNeue', 'sans-serif';
 }

 .portal {
   height: 100dvh;
   position: relative;
   overflow: hidden;
 }

 .portal-bg {
   position: absolute;
   inset: 0;
   height: 100%;
 }

 .portal-bg__img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .portal-bg::after {
   content: '';
   position: absolute;
   inset: 0;
   background-color: rgba(0, 0, 0, 0.4);
   mix-blend-mode: multiply;
   z-index: 1;
 }

 .portal-bg__overlay {
   content: '';
   position: absolute;
   inset: 0;
   z-index: 2;
   overflow: hidden;
   pointer-events: none;
 }

 .portal-bg__overlay>div {
   position: absolute;
   top: 0;
   bottom: 0;
   width: 50%;
   background-color: #FFF;
 }

 .portal-bg__overlay>div:first-child {
   left: 0;
 }

 .portal-bg__overlay>div:last-child {
   right: 0;
 }

 .portal__content {
   position: relative;
   z-index: 1;

   height: 100%;
   display: flex;
   flex-direction: column;
   text-align: center;

   padding-bottom: 0.75rem;
 }

 .portal__main {
   flex: 1 1 100%;

   display: flex;
   flex-direction: column;
   justify-content: center;

   max-width: min(49.375rem, 80%);
   margin-left: auto;
   margin-right: auto;

   color: #FFF;
 }

 .portal__logo {
   height: 3rem;
   width: auto;
 }

 .portal__title {
   font-family: "TimesNow";
   font-weight: 350;
   font-size: 5rem;
   line-height: 1;

   margin-top: 1.25rem;
   margin-bottom: 0;
 }

 .portal__title>div {
   overflow: hidden;
 }

 .portal__intro {
   margin-top: 1.25rem;
   font-size: 1rem;
   line-height: 1.25;
 }

 .portal__intro>div {
   overflow: hidden;
 }

 .portal__links {
   flex: 0 0 auto;
   display: flex;
   justify-content: stretch;
   gap: 3rem;
   padding-left: 1.5rem;
   padding-right: 1.5rem;
 }

 .portal__link {
   padding: 1.5rem 0.625rem;

   width: 50%;

   color: #FFF;
   text-decoration: none;
   display: flex;
   align-items: center;
   justify-content: space-between;

   border-top: 1px solid #FFF;

   font-size: 2rem;
   line-height: 1;
   font-weight: 300;
 }

 .portal__link svg {
   height: 1.25rem;
   width: auto;
 }

 @media (hover: hover) and (pointer:fine) {
   .portal__link {
     position: relative;
   }

   .portal__link span,
   .portal__link svg {
     position: relative;
     z-index: 1;
   }

   .portal__link::after {
     content: '';
     position: absolute;
     inset: 0;
     transform: scaleY(0);
     transform-origin: top center;
     transition: transform .3s ease;
   }

   .portal__link:first-child::after {
     background-color: #3E4F64;
   }

   .portal__link:last-child::after {
     background-color: #0072BC;
   }

   .portal__link:hover::after {
     transform: scaleY(100%);
   }
 }

 @media screen and (max-width: 991px) {
   .portal__main br {
     display: none;
   }
 }

 @media screen and (max-width: 576px) {
   .portal__main {
     max-width: 100%;
     padding-left: 1.25rem;
     padding-right: 1.25rem;
   }

   .portal__title {
     font-size: 2.5rem;
   }

   .portal__links {
     padding-left: 1.25rem;
     padding-right: 1.25rem;
     gap: 1rem;
   }

   .portal__link {
     font-size: 1.25rem;
     padding: 1rem 0.625rem;
   }
 }