/*font*/
@font-face { font-family: pro; src: url('assets/Neris-Thin.otf'); } 
/*flex*/
.flex-row {
	display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
	width: 100%;
  flex-wrap: wrap;
}
.flex-column {
	display: flex;
	flex: 1;
}
body {
	color: white !important;
	font-family: pro !important;
  background-image: linear-gradient(#524d4f, #232020);
}
.navsolid{
  background-color: #232020;
  z-index: 10;
}
.heading {
	color: #c19863  !important;
	font-size: 50px;
  text-align: center;
}
/*Navbar*/
.navigation {
	height: 80px;
	position: fixed;
	align-items: center;
	top: 0;
/*	margin-top: 20px;*/
}
.navItem {
	margin: 0 20px 0 20px;
	color: #c19863 !important;
	font-size: 20px;
	text-decoration: none !important;
}
.navItem:hover {
	color: white !important;
}
.logo {
	height: 80px;
	width: 250px;
	margin-left: 50px;
}
/* Animation */
.anim-typewriter{
	animation: typewriter 13s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
 	animation-iteration-count:infinite;
}
.line-1{
    /* position: absolute; */
    width: 26em;
    margin: 20px;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    color: #c19863 !important;
    bottom: 0;
}
@keyframes typewriter{
/*  from{width: 0;}
  to{width: 26em;}*/
  0% {
    width: 0;
  }

  10% {
    width: 10em;
  }

  /* Finish changes by here */
  20% {
    width: 25em;
  }

  /* Between 20% and 100%, nothing changes */
  100% {
    width: 25em;
  }
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}
.dot {
    /* position: absolute; */
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 20px;
}
.ring-container {
    position: relative;
}

.circle {
    width: 15px;
    height: 15px;
    background-color: white;
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 50%;
}

.ringring {
    border: 3px solid white;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0;
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 20px;
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
.body-content{
  margin: 50px;
}
.text {
  font-size: 20px;
  text-align: center;
}
.title{
  color: #c19863;
  margin-top: 30px;
}
.centercolumn{
  align-items: center;
  margin: 10px;
}

@media screen and (max-width: 1200px) {
  .navigation {
    display: none;
  }
}