
/* ------------------------Index------------------ */
.logo{
    width: 50px;
}

.nav-item a{
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer;
    
}

.nav-item a:hover{
    color: red!important;
}

a{
    text-decoration: none;
}

.home{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/bg.jpeg);
    background-position: center;
    background-size: cover;
    padding: 10px;
}

.heading{
    font-size: 40px;
    font-weight: 800;
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

.paragraph{
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.img-container img{
    width: 350px;
    height: 250px;
    margin: 0 10px;
    box-shadow: 1px 2px 3px 2px #f9f9f9;
    border: 1px solid #fff;
}



/* -------------------About--------------------------- */

.column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    margin: 8px;
  }
  
  .about-section {
    padding: 50px;
    text-align: center;
    background-color: #090a0e;
    color: white;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color: grey;
  }
  
  

  
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
    }
  }

/* -------------------------------------List Of Helipads------------------ */

.tablepress {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 1em;
}
table {
    background-color: transparent;
    border: 2px solid rgb(151, 149, 149);
}

.list-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/bg.jpeg);
    background-size: cover;
    background-position: center;
    height: 100%;
}

@media only screen and (max-width:500px){
    .list-container{
        height: 100%;
    }
}

/* --------------------------telephone--------------------- */
.telephone{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/bg.jpeg);
    background-size: cover;
    background-position: center;
    height: 100%;
}
caption{
    text-align: center;
    color: rgb(255, 255, 255);
}

/* ---------------------------Safety Contaiener----------------- */
.safety-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.safety-container ol li{
    margin: 30px;
    font-size: 26px;
    
}

.safety-container ol li a{
    text-decoration: none;
    transition: 0.6s;
    color: green;
    font-weight: 600;

}
.safety-container ol li a:hover{
    color: red;

}


/* ------------------------------Mobile Responsive------------------ */
@media only screen and (max-width:1100px){
    .img-container{
        flex-direction: column;
        align-items: center;
    }
    .img-container img{
        width: 350px;
       height: 250px;
       margin: 10px;
    }
}
@media only screen and (max-width:370px){
    .container,.container-fluid{
        padding: 0 5px!important;
    }
    .heading{
        font-size: 30px;
    }

    .paragraph{
        font-size: 16px;
    }
    .img-container{
        flex-direction: column;
        align-items: center;
    }
    .img-container img{
        width: 300px;
       height: 200px;
       margin: 10px;
    }
}