body {
  font-family: 'Karla', sans-serif;
  color: #fff;
  padding-bottom: 75px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #142a3f;
}

/* Responsive padding */
@media (min-width: 768px) {
  body {
    padding-bottom: 110px;
  }
}

.navbar-brand {
  margin-right: 0; }
  .navbar-brand img {
    height: 60px; }

.navbar-dark {
  padding-top: 35px;
  padding-bottom: 35px; }
  .navbar-dark .navbar-text {
    color: #fff;
    opacity: 1;
    padding: 0 20px;
    border-right: 1px solid #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center; }
    .navbar-dark .navbar-text:last-child {
      border-right: 0; }
  @media (max-width: 767px) {
    .navbar-dark {
      padding-bottom: 0; }

	p.website a {
		font-size: 16px !important; 
	}


	  }

.page-title {
  font-size: 76px;
  font-weight: bold;
  margin-bottom: 6px; 
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  }
  @media (max-width: 767px) {
    .page-title {
      font-size: 35px;
      margin-bottom: 14px; } }

.page-description {
  max-width: 465px;
  font-size: 18px;
  margin-bottom: 59px; 
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  }
  @media (max-width: 767px) {
    .page-description {
      font-size: 14px; } }

p {
  font-size: 14px;
  margin-bottom: 21px; }

.social-link img {
  display: inline-block;
  height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out; }
  
.stay-connected, p.website a { 
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}


/* Background Zoom Effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  animation: zoomInBg 10s ease-in-out infinite alternate;
  z-index: -1;
}

/* Zoom keyframes */
@keyframes zoomInBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}


p.website {
	padding-top: 50px;
}

p.website a {
	color: #fff;
	text-decoration: none; 
	font-size: 24px; 
}

p.website a:hover {
	color: #fff;
	text-decoration: none; 
}
 
.email {
	text-decoration: none !important;
}