:root {
  --jumbotron-padding-y: 3rem;
}

.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: var(--jumbotron-padding-y);
  margin-bottom: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .jumbotron {
    padding-top: calc(var(--jumbotron-padding-y) * 2);
    padding-bottom: calc(var(--jumbotron-padding-y) * 2);
  }
}

.jumbotron p:last-child {
  margin-bottom: 0;
}

.jumbotron-heading {
  font-weight: 300;
}

.jumbotron .container {

}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: .25rem;
}

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;

}

.icon {
    height: 20px;
    width: 20px;
    display: block;
    /* Other styles here */
}

#myVideo{
  width: 100%;
  height:100%;
}

.tips-text{
  font-family: monospace;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #2b3036;
  overflow: hidden;
  padding-left: 10%;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    color: #FF5274;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #B9D698;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

.slider{
  width: 100%;
  height: 300px;
  border-radius: 1px;
  overflow: hidden;
}

.slides{
  width: 100%;
  height: 300px;
  display: flex;
}

.slides input{
  display: none;
}

.slide{
  height: 200px;
}

.slide img{
  width: 100%;
  height: 400px;
}

  .navigation-manual{
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
  }

  .manual-btn{
    border: 2px solid #40D3DC;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }

  .manual-btn:not(:last-child){
    margin-right: 40px;
  }

  .manual-btn:hover{
    background: #40D3DC;
  }
