@font-face {
  font-family: inter-thin; font-weight: 100;
  src: url("fonts/inter-thin.ttf"); }
@font-face {
  font-family: inter-extralight; font-weight: 200;
  src: url("fonts/inter-extralight.ttf"); }
@font-face {
  font-family: inter-light; font-weight: 300;
  src: url("fonts/inter-light.ttf"); }
@font-face {
  font-family: inter-regular; font-weight: 400;
  src: url("fonts/inter-regular.ttf"); }
@font-face {
  font-family: inter-medium; font-weight: 500;
  src: url("fonts/inter-medium.ttf"); }
@font-face {
  font-family: inter-semibold; font-weight: 600;
  src: url("fonts/inter-semibold.ttf"); }
@font-face {
  font-family: inter-bold; font-weight: 700;
  src: url("fonts/inter-bold.ttf"); }
@font-face {
  font-family: inter-extrabold; font-weight: 800;
  src: url("fonts/inter-extrabold.ttf"); }
@font-face {
  font-family: inter-black; font-weight: 900;
  src: url("fonts/inter-black.ttf"); }

/* --- Styles --- */

html {
  font-size: 62.5%;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-stretch: normal; 
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

body {
  font-family: inter-medium, sans-serif;
  margin: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
  background: url(../images/bg-1.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; 
}

.hidden {
  display: none !important; 
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: #2870ED; /* Bright Blue #2870ED*/
  padding: 5rem 6rem;
  text-align: center;
}

.content__centered {
  width: auto;
  margin: auto;
  text-align: left;
  display: inline-block;
}

.content__head {
  display: block;
  margin: 1rem 0 5rem 0;
}

.logo {
  height: 6rem;
  margin: 0 4rem 0 0; 
}

.content__title {
  font-family: inter-bold;
  font-size: 4.2rem;
  line-height: 1.25;
  margin: 0;
  margin-top: 3rem;
}


.link {
  display: block;
  width: 42rem;
  position: relative;
  border-bottom: 1px solid #ffffff;

  color: #ffffff;
  text-decoration: none;
  font-family: inter-light;
  text-align: left;
  padding: 2.5rem 3.5rem 2.5rem 8.5rem;
  
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}  
.link--bordered-top {
  border-top: 1px solid #ffffff;
}
.link:hover {
  color: #ffffff; 
}

.link--back {
  #border-top: 1px solid #ffffff;
}

.link__ico {
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}

.link__text {
  display: block; 
  font-size: 1.4rem;
}
.link__text strong {
  font-family: inter-bold;
  font-weight: 300; 
}

.link__newlineText {
  display: block;
  font-size: 1.8rem;
  margin-top: 2px;
}

.link:after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  top: 50%;
  right: 4rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}

.link:hover:after {
  right: 3rem; 
}

.link--back:after {
  display: none;
}
.link--back:before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  top: 50%;
  left: 4rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; 
}
.link--back:hover:before {
  left: 3rem; 
}

.foot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); 
  border-top: 1px solid #ffffff;

  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;

  width: 90%;

}

.foot__btn {
  font-family: inter-light;
  display: block;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 

  min-width: 2.5rem;
}
.btn strong {
  font-family: inter-semibold;
  font-weight: 300;
  font-size: 1.2rem;
  display: block; 
}

.btn__ico {
  display: inline-block;
  float: left;
  width: 3rem;
  height: 3rem;
  margin: auto 1.8rem auto 0.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
  opacity: 0.7;
}

.foot__btn:hover { color: rgba(255,255,255,1); }
.foot__btn:hover .btn__ico { opacity: 1; }





@media (max-width: 1200px) {
  .content {
    width: 66.66%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 50%; 
  } 
}

@media (max-width: 768px) {
  body {
    background: none;
  }
  .content {
    width: 100%;
  }
  .foot {
    width: calc(100% - 12rem);
  }
}


@media (max-height: 870px) {
  html {
    font-size: 50%; 
  } 
}

@media (max-height: 690px) {
  .content {
    overflow: scroll;
    padding-bottom: 160px;
    bottom: auto;
  } 
}