/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
}

body{
    background:#000;
}

/* Navbar */

header{
    width:100%;
    /* background:#000; */
    background:#0D1B2A;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    max-width:1400px;
    margin:auto;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 35px;
}

.logo img{
    /* color:#fff; */
    /* font-size:22px; */
    /* font-weight:600; */
    /* letter-spacing:2px; */
    width: 80px;
}

/* Menu */

.nav-links{
    display:flex;
    gap:34px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1.5px;
    transition:.3s;
}

.nav-links a:hover{
    color:#39FF14;
}

.nav-links .active{
    color:#39FF14;
}

/* .nav-links li:hover{
    border: 3px solid white;
    border-radius: 16px;
    padding: 8px;
} */

/* Right Icons */

/* .icons{
    display:flex;
    gap:18px;
    color:#fff;
    font-size:22px;
    cursor:pointer;
} */

.icons i:hover{
    color:#39FF14;
}

/* Hamburger */

.menu-btn{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* hover effect */

a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 6px;
}

a::before,
a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  /* background: #A6A6A6; */
  transition: all 0.5s;
}

a::before {
  top: 0;
  left: 0;
}

a::after {
  bottom: 0;
  right: 0;
}

a:hover::before {
  width: 100%;
  transition: width 0.25s ease-in-out;
}

a:hover::after {
  width: 100%;
  transition: width 0.25s ease-in-out 0.25s;
}

/* ================== */
/* Responsive */
/* ================== */

@media(max-width:1100px){

.nav-links{
    position:fixed;
    top:80px;
    left:-100%;

    width:100%;
    height:calc(100vh - 80px);

    background:#000;

    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    padding-top:50px;

    transition:.4s;
}

.nav-links.show{
    left:0;
}

.icons{
    display:none;
}

.menu-btn{
    display:block;
}

}

/* content */
p{
    color: white;
    text-align: justify;
}