html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4,
h5, h6, ul {
    padding: 0;
    margin: 0;
}

.header {
    height: 70vh;
    background: url("BandB7@2x.png") no-repeat center;
    object-fit: contain;
    background-size: cover;
}

nav.navbar1 {
    display: block;
    height: 70px;
    line-height: 70px;
    padding: 0 20px;
    /* position: fixed; */
    width: 100%;
    overflow: hidden;
    z-index: 99;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.logo {
    float: left;
    height: 87px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}
  
.logo a {
    background: url("g&glogo.png");
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 145px;
    height: 64px;
    display: block;
    position: absolute;
}

#menu li a {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 20px;
    position: relative;
}

#menu li a::after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #FF832E;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

#menu li a:hover::after { 
    width: 100%; 
    left: 0; 
}

.cta {
    /* height: 100%; */
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    right: 0;
}

.cta h2 {
    font-size: 2.75em;
    font-weight: 200;
    margin-bottom: 10px;
    color: #fff;
}

.cta p {
    font-size: 1em;
    line-height: 1.5;
    color: #fff;
}


.vid-container {
    position: relative;
    padding-bottom: 30%;
    padding-top: 30px;
    margin: 3rem 0;
}

.vid-container iframe,
.vid-container object,
.vid-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.playlist {
    display: flex;
    flex-direction: column;
}

ul li {
    list-style-type: none;
    text-decoration: none;
    width: 170px;
    float: left;
}

ul {
    flex-direction: row;
    padding-left: 0px;
}

#playlist {
    background-color: #f9f9f9;
    margin-bottom: 10px;
    padding: 7px 15px;
}

.title {
    width: 100%;
    font-size: 18px;
    padding: 5px 10px;
    color:#333;
    margin-bottom: 10px;
}

.vid-item {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
    margin-right: 4px;
    height: 190px;
}

.vid-item:hover {
    cursor: grab;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.vid-item img {
    width: 170px;
}

.vid-item p {
    padding: 0 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1px;
    padding-top: 5px;
   text-overflow: ellipsis;
   display: -webkit-box;
   line-height: 16px;     /* fallback */
   max-height: 39px;      /* fallback */
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}