﻿*{
    margin:0;
    padding: 0;
}
body{
    font-family: sans-serif;
}
#nav-bar{
    position: sticky;
    top:0;
    z-index: 10;
}
.black{
  position:fixed;
  top:0;
  background:#000;
  width:100%;
  height:80px;
  
}
.navbar{
    background-image: linear-gradient(to left, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
    padding:0 !important;
}
.navbar-brand img{
    width:80px;
    height:70px;
    padding-left:10px;
}
.navbar-nav li{
    padding: 0 10px;
}
.navbar-nav li:hover{
   background-color:red;
}
.navbar-nav li a{
    color:#fff !important;
    font-weight: 600;
    float:right;
    text-align: left;
}
.fa-bars{
    color:#fff;
    font-size:30px !important;
}
.navbar-toggler{
    outline:none !important;
}

/*-------------banner section---------------*/

#banner{
    background-image: linear-gradient(to left, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
    color:#fff;
    padding-top:5%;
}
.promo-title{
    font-size:40px;
    font-weight: 600;
}
.play-btn{
    width:45px;
    margin:20px;
}
#banner a{
    color:#fff;
    text-decoration: none;
}
.bottom-img{
    width:100%;
}
.banner-1 {
   margin-top:50px;
}
.btnreq {
    padding: 10px;
    border-radius: 25px;
    background: white;
    color: black;
    border: 1px solid white;
}
/*-------------Service section---------------*/

#services{
    padding:15px 0;
}
.service-img{
    width: 100px;
    margin-top: 20px;
}
.services{
    padding:20px;
}
.services h4{
    padding:5px;
    margin-top: 25px;
    text-transform: uppercase;
}
.title::before{
    content: '';
    background:#1fc8db;
    height:5px;
    width:200px;
    margin-left: auto;
    margin-right: auto;
    display:block;
    transform: translateY(63px);
}
.title::after{
    content: '';
    background:#1fc8db;
    height:10px;
    width:50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display:block;
    transform: translateY(8px);
}
#services .btn-primary{
    box-shadow: none;
    padding:8px 25px;
    border:none;
    border-radius:20px;
    background-image: linear-gradient(to right, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
}
/*------------------Request demo--------------*/
.demo {
   width:100%;
   height:300px;
   background-color:black;
}
/*-------------------About-us section---------*/
#about-us{
    background:#f8f9fa;
    padding-bottom: 50px;
    padding-top:50px;
}
.about-title{
    font-size:40px;
    font-weight:600;
    margin-top:8%;
}
#about-us ul{
    margin-left: 10px;
}
#about-us ul li{
    margin:10px 0;
}

/* Footer*/
.footer{
    width:100%;
    background:#000;
    display: block;
}
.inner-footer{
    width:95%;
    margin:auto;
    padding:30px 10px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: center;
}
.footer-items{
    width:33.33%;
    padding:10px 20px;
    box-sizing: border-box;
}
.footer h1{
    padding:10px 0;
    font-size:25px;
    color:#fff;
    text-transform: uppercase;
}
.footer-items p{
    color:white;
    font-size:16px;
    text-align: justify;
    line-height: 25px;
}
.footer h2{
    margin:10px 0;
    color:white;
    font-size: 16px;
    font-weight:lighter;
    text-transform: uppercase;
}
.border{
    height: 2px;
    width:40px;
    background:#ff9800;
}
.footer ul{
    list-style: none;
    color:#fff;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.footer ul a{
    text-decoration: none;
    outline: none;
    color:#fff;
}
.footer ul a:hover{
    color: #ff9800;
}
.footer ul li{
    margin:10px 0;
    height:25px;
}
.footer .socials ul{
    display: flex;
}
.footer .socials ul li{
    list-style: none;
    margin:0 15px;
}
.footer .socials ul li .fab{
    font-size:20px;
    line-height: 40px;
    transition: .6s;
    color:#fff;
}
.footer .socials ul li a{
    display: block;
    width:40px;
    height:40px;
    border-radius:50%;
    background-color:lightslategrey;
    text-align: center;  
    transition: .6s;
    box-shadow: 0 2px 2px #ddd;
}
.footer .socials ul li a:hover{
    transform: translate(0, -10px);
}
.footer .socials ul li:nth-child(1) a:hover{
    background-color: #3b5999;
}
.footer .socials ul li:nth-child(2) a:hover{
    background-color: #e4405f;
}
.footer .socials ul li:nth-child(3) a:hover{
    background-color: #55acee;
}
.footer .socials ul li:nth-child(4) a:hover{
    background-color: #cd201f;
}
.footer-bottom{
    padding:10px;
    background: #3d545f;
    color:#fff;
    font-size: 12px;
    text-align: center;
}
@media screen and (max-width:1085px){
    .footer-items{
        width:50%;
    }
}
@media screen and (max-width:600px){
    .footer-items{
        width:100%;
    }
}
/* End Footer */