*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-size: normal;
    line-height: normal;
   
 }
 
 body {
    background-color: #000;
 }
 
 #logo {
    width: 15%;
    height: auto;
    display: block;
    margin-left: 50px;
    float: left;
    border: 2px solid #FFF;
 
 }
 nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    
    
 }
 
 nav img {
    width: 150px;
    opacity: 0.8;
 }
 
 .nav-links {
    flex: 1;
    text-align: right;
    margin-top: 2px;
 }
 
 .nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end; 
 }
 
 .nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
    position: relative;
 }
 
 .nav-links ul li a {
    color: #FFF;
    text-decoration: none;
    font-size: 16px;
    display: inline-block; 
 }
 
 .nav-links ul li::after {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
 
 }
 
 .nav-links ul li:hover::after {
    width: 100%;
 }
 
.row1, .row2, .row3 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 20px;
}

h1 {
    color: #FFF;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-top: 3.5rem;
}


.card {
    flex: 10 1 22%;
    background-color: #191623;
    margin: 10px; 
    box-sizing: border-box;
    border: 2px solid #FFF;
    text-align: center;
    overflow: hidden; 
    margin-bottom: 2.5rem;
    border-radius: 20px;
    width: 60%;
  
}

.container {
    padding: 10px;
}

.container h2 {
    font-size: 23px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    color: #FFF;
}

.container ul{
   list-style-type: none; 
   padding: 0;
   margin: 0;
}

.container ul li {
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: #FFF;
    line-height: 1.6;
    text-decoration: none;
}

.package h2 {
    color: #FFF;
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-bottom: 2.5rem;
 }
 .name h3 {
    color: #FFF;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
 }
 .site-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
 }
 
 .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    }
 
 
 .footer-about,
 .footer-contact,
 .footer-social {
    flex: 1;
    margin: 10px;
    min-width: 200px;
 }
 
 .footer-about h2,
 .footer-contact h2,
 .footer-social h2 {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }
 
 .footer-about p,
 .footer-contact p {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }
 
 .footer-contact a {
    color: #fff;
    text-decoration: none;
 }
 
 .footer-contact a:hover {
    text-decoration: underline;
 }
 
 .footer-contact i {
    margin-right: 10px;
    font-size: 24px; 
    color: #333; 
    vertical-align: middle; 
 }
 
 .footer-contact i.material-icons {
    font-size: 24px; 
    color: #555; 
 }
 
 .footer-contact i.fa{
    font-size: 24px; 
    color: #007bff; 
 }
 
 
 .footer-social ul {
    list-style: none;
    padding: 0;
 }
 
 .footer-social ul li {
    display: inline;
    margin: 0 10px;
 }
 
 .footer-social ul li a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
 }
 
 
 .footer-social ul li a:hover {
    color: #f0f0f0;
 }
 
 .footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }

 @media only screen and (max-width: 768px) {
   .header{
      min-height: 30vh;
      width: 100%;
      background-image: linear-gradient(rgba(4, 9, 30,0.7),rgba(4, 9, 30,0.7)),url(images/BG2.jpg);
      background-position: center;
      background-size: 100% 100%;
      position: relative;
   }

   nav {
      padding: 2% 4%;
   }

   .nav-links {
      display: none;
   }

   .text-box{
      position: relative;
      z-index: 900;

   }
   .text-box h1 {
      font-size: 40px;
     
   }

   .text-box p {
      font-size: 10px;
   }

   #logo{
      width: 50px;
      margin-left: 0;
   }

   .fa-bars {
      display: block;
      color: #fff;
   }

   .fa-bars:hover{
      cursor: pointer;
   }


}

@media (max-width: 1024px) {
   .row1, .row2, .row3 {
       justify-content: center; 
   }

   .card {
       flex: 10 1 45%; 
       width: 80%; 
   }

   h1, .package h2, .name h3 {
       font-size: 22px; 
       margin-top: 2.5rem; 
   }

   .container h2 {
       font-size: 20px; 
   }

   .container ul li {
       font-size: 14px; 
   }
}


@media (max-width: 768px) {
   .row1, .row2, .row3 {
       flex-direction: column; 
       align-items: center;
   }

   .card {
       flex: 10 1 100%; 
       width: 90%; 
       margin: 15px 0; 
   }

   h1, .package h2, .name h3 {
       font-size: 20px; 
       margin-top: 1.5rem;
       margin-bottom: 1.5rem; 
   }

   .container h2 {
       font-size: 18px; 
   }

   .container ul li {
       font-size: 14px; 
       line-height: 1.4; 
   }
}

.sidebar {
   height: 100%;
   width: 0;
   position: fixed;
   top: 0;
   left: 0;
   background-color: #333;
   overflow-x: hidden;
   transition: 0.5s;
   padding-top: 60px;
   z-index: 1000; 
}

.sidebar a {
   padding: 8px 8px 8px 32px;
   text-decoration: none;
   font-size: 25px;
   color: #FFF;
   display: block;
   transition: 0.3s;
}

.sidebar a:hover {
   color: #f1f1f1;
   cursor: pointer;
}

.sidebar .close-btn {
   position: absolute;
   top: 0;
   right: 25px;
   font-size: 36px;
   margin-left: 50px;
}


@media only screen and (max-width: 768px) {
   nav {
      padding: 2% 4%;
   }

   .nav-links {
      display: none;
   }

   .text-box{
      position: relative;
      z-index: 900;

   }
   .text-box h1 {
      font-size: 40px;
     
   }

   .text-box p {
      font-size: 10px;
   }

   #logo{
      width: 50px;
      margin-left: 0;
   }

   .fa-bars {
      display: block;
      color: #fff;
   }

   .fa-bars:hover{
      cursor: pointer;
   }

}

.sidebar.open {
   width: 250px;
}

