body {
  font: 400 15px Lato, sans-serif;
  line-height: 1.8;
  color: #818181;
}
h2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #303030;
  font-weight: 600;
  margin-bottom: 30px;
}
h4 {
  font-size: 19px;
  line-height: 1.375em;
  color: #303030;
  font-weight: 400;
  margin-bottom: 30px;
}


/*Landing page*/
.landing-section {
    min-height: 80vh;
    text-align: center; 
    background-color: gray; 
    overflow: hidden;
}
.landing-background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-image: url('../images/landing_bg_pc.jpg'); 
    width: 100%; 
    min-height: 80vh;
}
.content-embedded {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); 
    color: white;
    min-width: 80vw;
}
.double-line-border {
  border-bottom-color: white; 
  border-bottom-width: 4px; 
  border-bottom-style: double;
}
.caption-heading {
  font-size: 36px;
  margin: 20px;
  font-family: inherit;
  font-weight: 500;
  line-height: 0.6;
}
.caption-heading-small {
  font-size: 20px;
  margin: 20px;
  font-family: inherit;
  font-weight: 500;
  line-height: 0.6;
}
.caption-content {
  font-size: 26px;
  margin: 20px 150px;
  font-family: inherit;
  font-weight: 500;
  line-height: 2.0;
  font-style: italic;
}
.caption-content-small {
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  line-height: 2.0;
  font-style: italic;
}
.container-fluid{
  /* box-shadow: inset 0px -5px 2px 0px rgba(88,184,164,0.75); */
}

/*Navigation*/
.navbar {
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  border-bottom-color: #58b894;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.navbar-nav li a {
  color: #58b894 !important;
}
.navbar-nav li a:hover, .navbar-nav li a.active {
  color: #fff !important;
  background-color: #58b894 !important;
}
.navbar-light .navbar-toggler {
  border-color: #58b894;
  color: #fff !important;
}
.navbar-light .navbar-toggler-icon { 
  background-image: url( 
"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 128, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); 
} 

/*Footer Card default overriding*/
footer.container-fluid {
  padding: 0px;
}
footer a {
  color: #fff;  
}
.card {
  background-color: transparent;
  border: none;
}
.card-header {
  padding: 0px;
  background-color: transparent;
}
.card-footer {
  background-color: transparent;
  padding: 0px;
  color: #fff !important;  
}



.social-media-icons {
  width: 2em;
  height: 2em;
}
/* General Settings */
.container-fluid {
  padding: 60px 50px;
}
.bg-grey {
  background-color: #f6f6f6;
}

/* 404 Error Page */
.landing-section-404 {
    min-height: 60vh;
    text-align: center;
    background-color: gray;
    overflow: hidden;
}
.landing-background-404 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../images/404_spiderweb_blur.jpg');
    width: 100%;
    min-height: 60vh;
    color: #fff;
}
.landing-section-404 .heading {
    font-size: 5em !important;
}
.landing-section-404 .message {
    font-size: 1.25em !important;
}


/* Sliding animation*/
.slideanim {
    visibility: hidden;
}
.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}



@media screen and (max-width: 1200px) {
  .landing-background {
    background-image: url('../images/landing_bg_tab.jpg'); 
    background-attachment: scroll;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }
  .btn-lg {
    width: 100%;
    margin-bottom: 35px;
  }
  .header-logo {
    max-height:35px;
  }
}
@media screen and (max-width: 480px) {
  .landing-background {
    background-image: url('../images/landing_bg_mob.jpg'); 
    background-attachment: scroll;
  }
  .logo {
    font-size: 150px;
  }
  .header-logo {
    max-height:35px;
  }
}


