* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{

    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(15, 15, 15);
    

}

/* loader */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(images/tahj-3.jpg);
    background-position: center;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 9999;
  }
  
  .loader--hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 15px solid #dddddd;
    border-top-color: #e6ae2a;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
  }

  .loader img {

    width: 158px;
    margin-bottom: 50px;
    filter:drop-shadow(2px 2px 2px rgb(115, 115, 115)); 
    
  }
  
  @keyframes loading {
    from {
      transform: rotate(0turn);
    }
    to {
      transform: rotate(1turn);
    }
  }
  
/* end of loader */


/* header styling */

.import {
    width: 100%;
}

header {
    background-color: rgb(15, 15, 15);
    width: 100%;
    height: 100px;
    z-index: 23;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}
header .logo img{
    width: 274px;
    height: 90px;
}
header nav ul {
    display: flex;
}

button {
    font-family: inherit;
}


header nav ul li a {
    display: inline-block;
    color: rgb(246, 246, 246);
    font-weight: 700;
    padding: 5px 0;
    margin: 0 10px;
    border: 3px solid transparent;
    text-transform: uppercase;
    transition: 0.2s;
}
header nav ul li a:hover,
header nav ul li a.active {
    border-bottom-color: rgb(255, 203, 30);
}

.dropdown {
    
    overflow: hidden;
  }

  .dropdown a{
    
  }
  
  .dropdown .dropbtn {
    font-size: 1em;  
    display: inline-block;
    border: none;
    outline: none;
    color: white;
    padding: 0;
    background-color: inherit;
    margin: 0;
  }


  /*.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(255, 203, 30);
  }
  */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

.hamburger {
    cursor: pointer;
    display: none;
}
.hamburger div {
    width: 30px;
    height: 5px;
    margin: 5px 0;
    background: #000;
}

nav {
    display: flex;
    justify-content: space-between;
    width: 62%;
}
@media only screen and (max-width: 900px) {
    header {
        padding: 0 30px;
    }

    header .logo img{
        width: 170px;
        height: 60px;
    }
    nav {
        width: 67%;
    }
}
@media only screen and (max-width: 700px) {
    .hamburger {
        display: block;
        background-color: rgb(246, 246, 246);
    }
    header nav {
        position: absolute;
        width: 100%;
        left: -100%;
        top: 90px;
        width: 100%;
        background-color: rgb(15, 15, 15);
        padding: 30px;
        transition: 0.3s;
        flex-direction: column;
    }
    header #nav_check:checked ~ nav {
        left: 0;
    }
    header nav ul {
        display: block;
    }
    header nav ul li a {
        margin: 5px 0;
    }

    #socials {
        display: flex;
    }
    #socials a {
        padding: 27px 33px 10px 0;
        font-size: 1.5rem;

    }
}



/* end of header */




/* footer styling  */
.confooter {
    max-width: 2000px;
    width: 100%;
    max-height: 825px;
    background-color: rgb(15, 15, 15);
    position: relative;
    z-index: 4;
    padding-bottom: 100px;
    
}


footer {
    font-family: 'Poppins', sans-serif; 
    padding-top: 20px;
    margin: 0 auto;
    top: 0;
    width: 70%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.footcontent {
        flex-direction: column;
        align-items: center;
        justify-content: center;
}



footer p {

    color: rgb(247, 247, 247);
    padding: 2rem;
    font-size: 1rem;
    margin-bottom: 10px;

}

footer a {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.1rem;
    color: rgb(248, 248, 248);
    text-decoration: none;
    font-weight: 900;
    font-style: italic;
}

footer a:hover {
    color: rgb(255, 203, 30) ;
}

.footcontent {
    position: relative;

    display: flex;
    flex-direction: row;

}

footer .socials {
    margin-top: 100px;
    text-align: center;

}

footer ul {

    
    list-style: none;
}

footer .socials li {
    display: inline;
    text-align: center;
    padding: 1.5rem;
    align-items: center;
    border-top: 1px solid #f9f9f9;
}

footer .socials a {
    font-size: 2rem;
}

@media (max-width: 1000px) {

    .confooter {
        width: 100%;
    }

    .footcontent {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 500px) {
    
    .confooter {
        inline-size: min-content;
        max-height: 1000px;   
        width: 100%;
    }

    footer p {
        font-size: .9rem;
    }

    #forum {

        width: 336px;
    }
}

/* end of footer */