/* navbar border line and style */
.navbar{
    border-bottom-style: solid;
    border-color: #008ed6;
    opacity: 0.8;
}
/* full page video styling starts here */
header{
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}
header video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
}
header .overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}
header .container{
    position: relative;
    z-index: 2;
}
/* full page video styling ends here */

/* for hidden audio panel */
audio{
    display: none;
}
/* change link button color */
.btn{
    background-color: #008ed6;
    color: #fff;
}
/* hide link underline */
ul{
    list-style-type: none;
    padding-left: 0;
}
 /* setting the size of carousel image */
.carousel-item img {
    width: auto;
    height: 494px;
    min-height: 494px;
  }
/* change tick-box-square size and color */
.fas{
    font-size:35px;
    background-color: #008ed6;
    color: #fff;
}
/* radius for embed video */
 iframe{
     border-radius: 20px;
 }
/* styling starts for services section */
 #services{
    display: grid;
    grid-template-areas: 'left right';
    grid-gap: 10px;
}
#services, div.left{grid-area: left;}
#services, div img{grid-area: right;}
.left{
    float: left;
    width: 50%;
    margin: auto;
    padding-right: 10px;
}
.right{
    float: right;
    width: 50%;
    padding-left: 10px;
}
/* styling ends for services section */

/* image convert into ellipse shape */
#clip{
    clip-path: ellipse(50% 50% at 50% 50%); 
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
}


 /* for mobile responsiveness */
@media only screen and (max-width: 768px){
    header{
        background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
    }
    header video{
        display: none;
    }
    .left{
        float: none;
        width: 100%;
    }
    .right{
        text-align: center;
        width: 100%;
        height: auto;
    }
    #clip{
        height: 100%;
        width: 100%;
    }
    
}
