@font-face {
  font-family: 'med';
  src: url('./font/med.otf');
}
@font-face {
  font-family: 'bold';
  src: url('./font/bold.otf');
}
* {
  box-sizing: border-box;
  margin: 0;
  font-family: 'med', sans-serif;
}
body {
  background-color: #fff;
  background: linear-gradient(to bottom, #8B0101, #AF0069, #982157, #D24B37);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'bold', sans-serif;
}
p {
  font-weight: 200;
  font-style: normal;
}
@keyframes slideInNav {
  0% {transform: translateY(-150%)}
  100% {transform: translateY(0%)}
}
@keyframes carsel {
  0% {transform: translateX(0%)}
  100% {transform: translateX(-100%)}
}
nav {
  transform: translateY(0%);
  padding: 10px 9%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  animation-name: slideInNav;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-delay: 2.1s;
  animation-fill-mode: both;
  backdrop-filter: blur(10px);
  z-index: 1;
  color: #fff;
}
.ham {
  height: 2rem;
  width: 2rem;
  font-size: 1.4rem;
  display: none;
}
nav .navlink, nav .navlogo, .navlink2{
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.navlink * {
  margin-left: 20px;
  font-size: 1.3rem;
}
.navlink2 * {
  font-size: 1.3rem;
}
.navlink2 {
  position: fixed;
  flex-direction: column;
  height: 150px;
  backdrop-filter: blur(5px);
  background-color: #ff8b8b55;
  z-index: 1;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
  border-radius: 20px;
  transform: translateX(87%) translateY(-100%);
  animation-name: none;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
@keyframes nl2out {
  0% {transform: translateX(87%) translateY(5%)}
  100% {transform: translateX(87%) translateY(-100%)}
}
@keyframes nl2in {
  0% {transform: translateX(87%) translateY(-100%)}
  100% {transform: translateX(87%) translateY(5%)}
}
.logo {
  width: 2.5rem;
  height: 2.4rem;
  background-color: #000;
  border-radius: 20%;
  margin-right: 5px;
  background-image: url('/VarcityChat_logomark_fullcolor_rgb.png');
  background-position: center;
  background-size: 110%;
}
.download {
  font-size: 1.4rem;
  padding: 6px 20px;
  border-radius: 100px;
  border: 0;
  color: #8B0101;
  border: 2px solid #fff;
  background-color: #fff;
}
.download:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.navlink a:hover {
  color: #f00;
  cursor: pointer;
}
@keyframes loadUp {
  0% {height: 120vh;}
  100% {height: 0vh;}
}
@keyframes loadUp2 {
  0% {height: 0vh;}
  100% {height: 120vh;}
}
.bigAnim {
  width: 100%;
  height: 0vh;
  background-color: #fff;
  animation-name: loadUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 2.1s;
  animation-fill-mode: both;
  display: flex;
  align-items: center;
  background-image: url('./dood.png');
  background-size: 20%;
}
.bigAnim2 {
  width: 100%;
  height: 120vh;
  animation-name: loadUp2;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 2.1s;
  animation-fill-mode: both;
  padding: 0 20%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.bigAnim2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./dood.png');
  background-size: 20%;
  opacity: .5;
  z-index: -1;
}
.animText {
    width: 100%;
    height: 130px;
    font-size: 100px;
    text-align: center;
    animation-name: textCome, textGo;
    animation-duration: 1s, 0.5s;
    animation-delay: 0s, 1.5s;
    animation-fill-mode: both;
    overflow: hidden;
    text-decoration: none;
    background-image: linear-gradient(to right, #f0f, #f00, #ff0);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(0, 0, 0, 0);
    margin-bottom: 100px;
}
@keyframes textCome {
    0% {height: 0px;}
    100% {height: 130px;}
}
@keyframes textGo {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
.long {
  width: 100%;
}
.landHeader {
  font-size: 4rem;
  text-align: center;
  color: #fff;
}
.landHeader span {
  overflow: hidden;
  text-decoration: none;
  background-image: linear-gradient(to right, #f00, #f00, #f00);
  background-size: 110% 110%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: rgba(0, 0, 0, 0);
}
.landP {
  font-size: 2rem;
  text-align: center;
  font-weight: 200;
  font-style: normal;
  margin: 30px 0 170px 0;
  color: #fff;
}
@keyframes cardup {
  0% {transform: translateY(0%)}
  100% {transform: translateY(-50%)}
}
.cone .icon {
  color: #A33E56;
}
.ctwo .icon {
  color: #F77341;
}
.cthree .icon {
  color: #314A2E;
}
.cfour .icon {
  color: #003C75;
}
.cone {
  background-color: #A33E56;
}
.ctwo {
  background-color: #F77341;
}
.cthree {
  background-color: #314A2E;
}
.cfour {
  background-color: #003C75;
}
.cards {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  transform: translateY(-50%);
  animation-name: cardup;
  animation-duration: 1s;
  animation-delay: 2.1s;
  animation-fill-mode: both;
}
.card {
  width: 22%;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 10px 010px 30px 5px #0006;
  padding: 0 20px;
  transition-duration: 0.8s;
}
.card:hover {
  cursor: pointer;
  transform: scale(105%);
}
.icon {
  width: 5rem;
  height: 5rem;
  background-color: #fffa;
  border-radius: 50%;
  margin: 40px 0 0 0;
  transition-duration: 0.8s;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*
.card:hover .icon {
  background-color: #ffe7d0;
  color: #ff8000;
}
*/
.Ctxt {
  font-size: 1.3rem;
  margin: 30px 0;
  text-align: center;
}
.cardT {
  color: #fff;
  margin-bottom: 5px;
}
.cardP {
  color: #fff9;
}
.card button{
  width: 100%;
  padding: 1% 0;
  display: flex;
  justify-content: center;
  background: transparent;
  border: 0;
  margin-bottom: 30px;
  font-size: 1.2rem;
  transition-duration: 0.8s;
  color: #fff;
}
.card button i{
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 10px;
  transition-duration: 0.8s;
  transform: translateY(10%);
  color: #fff;
}
.card:hover button i {
  margin-left: 20px;
}
.rest {
  width: 100%;
  padding: 0 9%;
}
.unitxt {
  text-align: center;
  margin-bottom: 10px;
}
.workw {
  width: 100%;
  display: flex;
  overflow: hidden;
  margin-bottom: 100px;
}
.unim {
  display: flex;
  align-items: center;
  animation-name: carsel;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.uni {
  width: 70px;
  margin-right: 20px;
  height: fit-content;
}
.uni img {
  width: 100%;
  margin-bottom: 10px;
}
.uni p {
  font-size: 11px;
  text-align: center;
}
.exp1 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.exp2 {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.img1 {
  width: 48%;
  height: 70vh;
  background-color: #fff2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
}
#img1 {
  background-image: url('img1.jpg?v=1.0.2');
  background-position: 20% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
#img2 {
  background-image: url('./img2.jpg?v=1.0.2');
}
#img3 {
  background-image: url('./img3.jpg?v=1.0.2');
}
#img4 {
  background-image: url('./img4.jpg?v=1.0.2');
}
.txte {
  width: 50%;
}
.txte h3{
  color: #FFF;
  font-size: 3rem;
  font-weight: bolder;
  text-align: center;
}
.txte h3 span{
  color: #fff1f1;
  text-shadow: 5px 0 0px #0A5;
}
.txte p{
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.accom {
  width: 100%;
  background-color: #800;
  color: #fff;
  text-align: center;
  margin-bottom: 100px;
  padding: 60px 0;
  overflow-x: hidden;
  display: flex;
}
.carss {
  background: transparent;
}
.car {
  width: auto;
  display: flex;
  animation-name: carsel;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.opimg {
  width: 500px;
  margin: 0 15px;
  border-radius: 20px;
}
.join {
  width: 100%;
  background-color: #800;
  padding: 80px 100px;
  color: #fff;
  margin-bottom: 100px;
  border-radius: 15px;
}
.join p {
  font-size: 1.2rem;
  margin-bottom: 60px;
}
.join button {
  font-size: 1.5rem;
  background-color: #fff;
  border: 0;
  padding: 15px 30px;
  border-radius: 10px;
  color: #a00;
  transition-duration: 0.4s;
  display: flex;
}
.join button:hover {
  background-color: rgb(255, 209, 209);
}
.join button i{
  margin-left: 20px;
  transform: translateY(10%);
}
.foot1 {
  width: 100%;
  padding: 120px 0;
  background-image: url('./foot.jpg');
  background-color: #ddd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.foot1 h1 {
  color: #fff;
  text-align: center;
}
.foot2 {
  background-color: #000;
  padding: 50px 200px 40px 200px;
  display: flex;
  justify-content: space-between;
  align-items: top;
}
.navlogoFoot{
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 20px;
}
.logofoot {
  width: 1.8rem;
  height: 1.8rem;
  background-color: #ffffff;
  border-radius: 20%;
  margin-right: 5px;
  background-image: url('/VarcityChat_logomark_inverted_rgb.png');
  background-position: center;
  background-size: 110%;
}
.footTitle {
  color: #fff;
}
.f1 {
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  padding-right: 80px;
  border-right: 1px solid #fff8;
}
.f1 p {
  color: #fff;
  font-size: 0.7rem;
  margin-bottom: 20px;
}
.f1,.f2,.f3 h5 {
  color: #fff;
}
.f2 {
  display: flex;
  flex-direction: column;
}
.f2 a {
  color: #fff;
  font-size: 0.7rem;
}
.f2 a:hover {
  opacity: 0.7;
}
h5 {
  margin-bottom: 10px;
}
.f3 p {
  color: #fff;
  font-size: 0.7rem;
  margin-bottom: 20px;
}
.nwsbox {
  width: 100%;
  display: flex;
}
.nwsmail {
  width: 70%;
  padding: 5px 10px;
  border-radius: 5px 0 0 5px;
  border: 0;
}
.nwsmail::placeholder {
  margin: 0;
  color: #a9a9a9;
  text-align: center;
}
.nwsmail:focus{
  border: 0;
  outline: none;
}
.nwsbox button {
  width: 30%;
  border: 0;
  background-color: #b27400;
  border-radius: 0 5px 5px 0;
  color: #fff;
  transition-duration: 0.4s;
}
.nwsbox button:hover {
  transform: scale(1.03);
}
.foot3 {
  background-color: #000;
  padding: 0 200px;
}
.foot3 div {
  padding-bottom: 40px;
  padding-top: 5px;
  border-top: 1px solid #fff9;
  color: #fff;
  font-weight: 200;
  font-style: normal;
  font-size: 0.8rem;
  text-align: center;
}
.soc {
  padding-top: 20px;
  color: #fff;
  font-size: 1.5rem;
}
.soc a {
  text-decoration: none;
}
.soc i {
  margin-right: 5px;
  transition-duration: 0.4s;
  color: #fff;
}
.soc i:hover {
  scale: 1.1;
}
#wa:hover {
  color: #0f0;
}
#ig:hover {
  color: #f0f;
}
#sc:hover {
  color: #ff0;
}
#xx:hover, #tt:hover {
  color: #000;
}
#li:hover {
  color: #08f;
}
/*
.xmas {
  width: 300px;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 20px;
  background-color: #fffa;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  z-index: 2;
}
*/
.eml {
  display: flex;
  width: 100%;
  height: 50px;
}
.inc {
  position: relative;
}
.inc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url('./plane1.png');
  background-size: 35%;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-55%);
  opacity: 1;
  z-index: -1;
}
.wrld {
  position: relative;
}
.wrld::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url('./wrld.png');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-55%);
  opacity: 1;
  z-index: -1;
}