


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
  }
  
  
  body {
      margin: 0;
      padding: 0;
      font-family: 'Arial', sans-serif;
      
  }
  
  .content h1,h2, p{
  padding:10px;
  }
  


  .parallax-container {
      height: 100vh;
      background: url('/assets/6.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .parallax-text {
      z-index: 1;
  }
  
  .content-container {
      padding: 50px;
      color:#fff;
      background-color:#000;
      overflow:hidden;
  }
  
  .content {
      max-width: 90%;
      margin: 0 auto;

      
  }
  
  .logoImg {
    display: flex; 
    margin-left: auto;
    margin-right:auto;
    max-width: 30%; 
    margin-bottom: 20px;
    height: auto; 
    
  }
  /* ========================================================================== */
  
  .nav {
      height: 50px;
      width: 100%;
      backgroundcolor: '#0F0D0D';
      position: fixed;
      top: 10px;
      z-index: 10;
    }
    
    .nav > .nav-header {
      display: inline;
    }
    
    .nav > .nav-header > .nav-title {
      display: inline-block;
      font-size: 40px;
      color: #fff;
      padding: 10px 10px 10px 10px;
    }
    
    .nav > .nav-header > .nav-title > a {
      text-decoration: none;
      color:#fff;
    }
    
    .nav > .nav-btn {
      display: none;
    }
    
    .nav > .nav-links {
      display: inline;
      float: right;
      font-size: 20px;
      z-index: 10;
    }
    
    .nav > .nav-links > a {
      display: inline-block;
      padding: 13px 10px 13px 10px;
      text-decoration: none;
      color: #efefef;
    }
    
    .nav > .nav-links > a:hover {
      background-color: rgb(213, 128, 255);
    }
    
    .nav > #nav-check {
      display: none;
    }
  
  /* ========================================================================== */
  
  .container-footer {
    margin: auto;
    min-width: 100vw;
    min-height: 50vh;
  }
  .row-footer {
    display: flex;
    flex-wrap: wrap;
  }
  .ul-footer {
    list-style: none;
  }
  .footer {
    padding: 70px 0;
  }
  .footer-col {
    width: 25%;
    padding: 0 15px;
  }
  .footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  .footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
  }
  
  .footer__copy {
    margin-top: 1rem;
    justify-content: center;
    align-item: center;
  }
  
  @media (max-width: 767px) {
    .footer-col {
      width: 50%;
      margin-bottom: 30px;
    }
  }
  @media (max-width: 574px) {
    .footer-col {
      width: 100%;
    }
  }
  
  /* =================================================
  =======================Media============================
  ================================================== */
  
  
  
  @media (max-width: 600px) {
      .nav > .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
      }
      .nav > .nav-btn > label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
      }
      .nav > .nav-btn > label:hover,
      .nav #nav-check:checked ~ .nav-btn > label {
        background-color: rgba(0, 0, 0, 0.3);
      }
      .nav > .nav-btn > label > span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #eee;
      }
      .nav > .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #333;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 60px;
        left: 0px;
      }
      .nav > .nav-links > a {
        display: block;
        width: 100%;
      }
      .nav > #nav-check:not(:checked) ~ .nav-links {
        height: 0px;
      }
      .nav > #nav-check:checked ~ .nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto;
      }
    }
  
    @media (max-width: 600px) {
      .content-container {
        padding: 10px;
       
    }
  
    }