                                          :root {
  --ms-blue: #000;
  --ms-dark-blue: #222;

  --ms-green: #0e4505;
  --ms-dark-green: #29741d;

}

.light-text {
  color: #ff3c01;
}

.photos {
    column-count: 4;

}

* {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
}

.primary {
  color: var(--ms-green);
}

.logo {
  width: 350px;
}
h1, h2 {
  font-family: 'Roboto Condensed', sans-serif;
}

h1 {
  font-size: 3.5rem; 
}

h4 {
  font-size: 1.2rem;
}

h4 span {
  font-size: 1.2rem;
}

p {
  font-size: 20px; 
}

.dark-bg {
  background-image: url('img/dark-bg.jpg');
  background-size: cover;
  background-position: center;
}

.btn {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
}

.btn.btn-primary {
  background: var(--ms-green) ;
  border-color: var(--ms-green);
  border-radius: 0;
  padding: .5rem 3rem;
  font-size: 24px;
}

.box {
  background: #000000e5;
  padding: 2rem 6rem;
  border-radius: 10px;
}


.btn.btn.btn-primary:hover, .btn.btn-primary:active,  .btn.btn-primary:focus {
  background-color: var(--ms-green) ;
  outline: 0 ;
  border-color: var(--ms-green);
  box-shadow: inset 0 0 5px #000;;
}

.btn-secondary {
  background: var(--ms-blue) ;
  border-color: var(--ms-blue);
}

.btn.btn.btn-secondary:hover, .btn .btn-secondary:active, .btn .btn-secondary:focus {
  background: var(--ms-dark-blue) ;
  outline: 0 ;
  background: var(--ms-dark-blue);

}


.navbar-nav .nav-link {
  border-bottom: 2px solid transparent;
  display: block;
  padding: 10px 14px !important;
  font-size: 18px;
  font-family: 'Roboto Condensed', sans-serif;
  border-radius: 5px;
  color: #000;
}


.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  background: #fff1;
  color: #ff000d !important;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand > img {
  height: 80px;
}

.sticky-top {
  background: #fff !important ;
}

.sticky-top .nav-link {
  color: #000;
}

.panel-heading {
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1rem;
  color: #d01324;
  font-family: 'Roboto Condensed', sans-serif;
}

.panel-body {
  border-bottom: 2px dotted #000;
}

.heading {
  border-bottom: 2px solid #000;
}


.item-title {
  color: #068b3e;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.text-end p {
  color: #d01324;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.panel-info {
  color: #222;
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}


.fades {
  background: #fff !important ;
  
}
.spacer {
  height: 60px;
}

.typing-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.typing-container .sentence,  .typing-container #feature-text {
  font-size: 2rem;
  font-weight: lighter;
  font-family: 'Open Sans';

}

.typing-container .sentence {
  background: #000000db;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 2px;
  border-radius: 10px;
}


.typing-container #feature-text {
  color: #ff3c01;
}

.input-cursor {
  display: inline-block;
  width: 1px;
  height: 42px;
  background-color: white;
  margin-left: 0;
  position: relative;
  top: 7px;
}

@keyframes blink {
  0% {opacity: 1;}
  40% {opacity: 1;}
  60% {opacity: 0;}
  100% {opacity: 0;}
}

.input-cursor { 
animation: blink .6s linear infinite alternate;
}

.transparent {
  background-color: transparent !important;
}

.transparent .navbar-nav .nav-link {
  color: #fff;
}


.hero {
    background-image: url(img/background.jpg);
    background-position: top;
    background-size: cover;
    position: relative;
    z-index: 1;
    color: #fff;
    margin-top: 0px;
}

.hero::before {
    content: " ";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0007;
    z-index: -1;
}

.abstract {
    background-image: url('img/abstract.jpg');
    position: relative;
    background-size: cover;
    z-index: 1;
}
.abstract::before {
    content: ' ';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #ffffffcf;
    z-index: -1;
}

.img-zoom {
  overflow: hidden;
}

.img-zoom > img {
  transition: .5s all;
}


.img-zoom:hover > img {
  transform: scale(1.1);
  transition: .5s all;
}

figure {
  border: 1px solid #ddd;
  padding: 1rem;
  height: 100%;
  box-shadow: 0 0 5px #ddd;
}
footer {
  background: #141414;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #fff;
}
.footer-link {
  color: #ddd;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}


@media screen and (max-width: 800px) {

  .input-cursor {
    height: 25px;
    top: 5px;
  }

  .typing-container .sentence, .typing-container #feature-text {
    font-size: 1.4rem;
  }

  .box {
    background: #000000e5;
    padding: 1rem;
    border-radius: 10px;
  }
  

  .logo {
    width: 80%;
  }
  h1 {
    font-size: 2.5rem; 
  }
  
  h4 {
    font-size: 1rem;
  }
  
  h4 span {
    font-size: 1rem;
  }
}