


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}



body {
 
  background-color: #0f0d0d;
  color: white;
  font-family: 'Arial', sans-serif;
}

/* ========================================================================== */

.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 {
  max-width: 80%;
  margin: 50px auto;
  padding: 50px;
  text-align: justify;
}

.title-img {
  width: 100%;
  height: auto;
  opacity: 0.2; 
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%); 
  z-index: -1; 
}

.title,
.sub-title {
  border-bottom: 2px solid white;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.para {
  margin-bottom: 15px;
}

.linker {
  color: violet;
  text-decoration: underline;
}


.title {
  animation: fadeInUp 1s ease-in-out;
}


.para {
  animation: fadeIn 1s ease-in-out;
}


body {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: fit;
}

/* Keyframe animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========================================================================== */

.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;
    }