nav.navBg{
  background-color: #121212;
}
::selection {
  color: #f7f7f7;
  background: #0f870b;
}
/*PRELOADING */
body{
    height: auto;
    width:100%;
    position:relative;
}
#overlayer {
  width:100%;
  height:100%;  
  position:absolute;
  z-index:1;
  background-image: url("../img/aungttant_preloader.gif");
  background-attachment: fixed;
  background-color: #ffffff;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  /*background-size: cover;*/
  /*https://cdn.dribbble.com/users/479985/screenshots/10777708/media/af7ad2e66c16511f21b3f42718f211d2.gif*/
}
.loader {
  display: inline-block;
  width: 15px;
  height: 30px;
  position: absolute;
  z-index:3;
  border: 4px solid #Fff;
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}
/*PRELOADING */
div.icon-contact{
  display: flex;
  height: 5rem;
  width: 5rem;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
a.AlinkContact{
	text-decoration: none;
	text-align: center;
}
a.AlinkContact:hover{
	color: #fc5356;
	font-size: 1.2rem;
}
/*Section Title CSS*/
.section {
    padding: 5px 0;
    position: relative;
}
.section-title h2 {
    font-weight: 700;
    font-size: 45px;
    margin: 0 0 15px;
    border-left: 5px solid #fc5356;
    padding-left: 15px;
}
.section-title {
    padding-bottom: 35px;
}
.section-title p {
    margin: 0;
    font-size: 18px;
}