* {
    margin: 0;
    padding: 0;
    font-family: "Roboto Slab", sans-serif;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  
  /*-----------Header Navigation Start--------*/
  
  /*Cover Page*/
  .home {
      background: linear-gradient(rgba(12, 3, 51, 0.4), rgba(12, 3, 51, 0.1)),
        url(/Images/ap.jpg);
      background-size: cover;
      height: 100vh;
      position: relative;
      top: -140px;
      z-index: 1;
    }
    
    /*------------Logo----------*/
    
    /*-----Logo Wrapper - Social Icon - LinkedIn---*/
    .logo-wrapper{
      width: 8%;
    }
    
    .logo {
      width: 7.5rem;
      margin: 0.625rem 0.625rem 0.625rem 1.875rem;
      border: solid #000;
      background: #000;
      border-radius: 100px;
      transition: background 0.5s;
      transition: 0.5s;
    }
    
    .logo:hover {
      background-color: rgb(218,219,221, 0.95);
      transform: scale(0.9);
    }
    
    /* Navigation Bar */
    
    .header {
      background: transparent;
      transition: 0.3s ease-in-out;
      position: sticky;
      z-index: 2;
      top: 0;
      height: 140px;
    }
    
    .scrolled {
      background: #262626;
      transition: 0.3s ease-in-out;
      height: 90px;
      opacity: 0.9;
    }
    
    .scrolled .logo {
      width: 70px;
    }
    
    .scrolled .nav{
      width: 70%;
    }

    .scrolled .nav-list a{
      color: #f8f7f7;
    }

    .scrolled .navitem .dropdown-list{
      top: 65px;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1.875rem;
    }
    
    .nav {
      width: 70%;
    }
    
    .nav-list {
      list-style: none;
      display: flex;
      justify-content: space-between;
      width: 100%;
    }
    
    .nav-list a {
      color: #202020;
      text-decoration: none;
      font-size: 1.2rem;
      position: relative;
      font-weight: 600;
    }
    
    .nav-list a::after {
      content: "";
      width: 0%;
      height: 3px;
      background: #1a3144;
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: 0.5s;
    }
    
    .nav-list a:hover::after {
      width: 100%;
    }

    .navitem a{
      cursor: context-menu;
    }
    
    .navitem .dropdown-list {
      position: absolute;
      background: #262626;
      z-index: 1;
      top: 85px;
      line-height: 40px;
      list-style: none;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
      pointer-events: none;
      transform: translateY(20px);
      opacity: 0;
      transition: 0.5s;
      transition-property: transform, opacity;
    }
    
    .navitem:hover .dropdown-list {
      pointer-events: all;
      transform: translateY(0);
      opacity: 1;
      transition-delay: 0.5s;
    }
    
    .navitem .dropdown-list .sub-item {
      position: relative;
      padding: 0.5rem 0;
      cursor: pointer;
      box-shadow: inset 0px -30px 5px -30px rgb(255, 255, 255, 0.2);
      transition: 0.3s;
    }
    
    .navitem .dropdown-list .sub-item a {
      color: #fff;
      font-size: 1rem;
      padding: 0 0.6rem;
      transition: 0.5s;
      cursor: pointer;
    }
    
    .navitem .dropdown-list .sub-item a:hover {
      color: #086ab5;
    }
    
    .navitem .dropdown-list .sub-item:hover {
      background: #e7e7e7;
    }
    
    .navitem .dropdown-list .sub-item:last-child:hover {
      border-radius: 0 0 8px 8px;
    }
    

    .social-icons {
      text-decoration: none;
      font-size: 2.5rem;
      color: #ababab;
    }

    .social-icons i{
      transition: 0.5s ease-in-out;
    }
    
    .social-icons i:hover {
      transform: translateY(-8px);
      color: #1a3144;
    }

  
    /*---Hamburger Menu Icon - Mobile Start ----*/
  
  .btn {
      display: none;
      width: 48px;
      cursor: pointer;
      right: 0;
      z-index: 100;
    }
    
    .menubtn {
      display: block;
      width: 100%;
      box-shadow: 0 2px 10px 0 rgba(0,0,0,0.4);
      border-radius: 3px;
      height: 4px;
      background: #fff;
      transition: all .3s;
      position: relative;
    }
    
    .not-active .menubtn + .menubtn{
      margin-top: 0.5rem;
    }
    
    .active .menubtn + .menubtn {
      margin-top: 18px;
    }
    
    .active .menubtn:nth-child(1) {
      animation: ease .7s top forwards;
    }
    
    .not-active .menubtn:nth-child(1) {
      animation: ease .7s top-2 forwards;
    }
    
    .active .menubtn:nth-child(2) {
      animation: ease .7s scaled forwards;
    }
    
    .not-active .menubtn:nth-child(2) {
      animation: ease .7s scaled-2 forwards;
    }
    
    .active .menubtn:nth-child(3) {
      animation: ease .7s bottom forwards;
    }
    
    .not-active .menubtn:nth-child(3) {
      animation: ease .7s bottom-2 forwards;
    }
    
    @keyframes top {
      0% {
        top: 0;
        transform: rotate(0);
      }
      50% {
        top: 22px;
        transform: rotate(0);
      }
      100% {
        top: 22px;
        transform: rotate(45deg);
      }
    }
    
    @keyframes top-2 {
      0% {
        top: 22px;
        transform: rotate(45deg);
      }
      50% {
        top: 22px;
        transform: rotate(0deg);
      }
      100% {
        top: 0;
        transform: rotate(0deg);
      }
    }
    
    @keyframes bottom {
      0% {
        bottom: 0;
        transform: rotate(0);
      }
      50% {
        bottom: 22px;
        transform: rotate(0);
      }
      100% {
        bottom: 22px;
        transform: rotate(135deg);
      }
    }
    
    @keyframes bottom-2 {
      0% {
        bottom: 22px;
        transform: rotate(135deg);
      }
      50% {
        bottom: 22px;
        transform: rotate(0);
      }
      100% {
        bottom: 0;
        transform: rotate(0);
      }
    }
    
    @keyframes scaled {
      50% {
        transform: scale(0);
      }
      100% {
        transform: scale(0);
      }
    }
    
    @keyframes scaled-2 {
      0% {
        transform: scale(0);
      }
      50% {
        transform: scale(0);
      }
      100% {
        transform: scale(1);
      }
    }
    
    .overlay{
      height: 0%;
      width: 0%;
      position: fixed;
      z-index: 1;
      top: 0;
      left: 0;
      background-color: rgba(0,0,0, 0.9);
      overflow-y: hidden;
      transition: linear 0.5s;
    }
    
    .mobile-nav{
      position: relative;
      width: 100%;
      text-align: center;
      display: none;
    }
    
    .mobile-nav a{
      padding: 12px;
      text-decoration: none;
      font-size: 2rem;
      color: #C0C0C0 ;
      display: block;
      transition: ease 0.3s;
    }
    
    .mobile-nav a:hover{
      color: #fff;
    }
    
/*----Mobile Dropdown Sub List Starts---*/

.dropdown-content {
  display: none;
  flex-direction: column;
}

.dropdown-content a {
  font-size: 1.5rem;
  padding-left: 24px;
}

.dropdown-content a:hover {
  color: #fff;
}

.plus-minus-container {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  margin-right: 8px;
}

.horizontal, .vertical {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #C0C0C0;
  transition: transform 0.3s ease;
}

.horizontal {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.vertical {
  top: 43%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.active .overlay {
  height: 100%;
  width: 100%;
}

.active .mobile-nav {
  display: block;
}

.dropdown-content.active {
  display: flex;
  transition: 0.3s ease-in-out;
}

.dropdown-toggle.active .vertical {
  transform: translateX(-50%);
}

/*----Mobile Dropdown Sub List Ends---*/

    /*---Hamburger Menu Icon - Mobile Start ----*/
    
    /*-----------Header Navigation End--------*/
  
.Title{
  text-align: center;
  margin: 46px;
}

.container{
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}

.grid{
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.gridpdf{
  cursor: pointer;
  transition: ease-in-out 0.5s;
}
  
.gridpdf img {
  width: 100%;
  height: 100%;
}


.gridpdf:hover{
  transform: translateY(-1.3rem);
}


/*-------Analyst's Stock Picks-----*/

#stock-graph-container, #portfolio-graph-container {
  width: 100%;
  margin: 50px 0;
}

#stock-graph-container {
  height: 600px;
}

#portfolio-graph-container {
  height: 600px;
}




/*-------Analyst's Stock Picks-----*/
  
.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #262626;
}

.footer{
  color: #e7e7e7;
  font-size: 12px;
}

.footer .linkedin-link {
  font-size: 1em;
  color: #fff; /* LinkedIn color */
  text-align: center;
  transition: 0.5s ease-in-out ;
}

.footer .linkedin-link:hover {
  color: #0073b1; /* LinkedIn hover color */
}
  
  
  /*-------Mobile Screens----*/
  
  @media (max-width:991px) {
  
  }
  
  @media (max-width:768px) {
    /*---Hamburger Menu Start---*/  
    .btn{
      display: block;
    }
    
    .overlay{
      height: 0%;
      width: 100%;
      top: -100%;
      position: fixed;
      z-index: 1;
      background-color: rgba(0,0,0, 0.9);
      overflow-y: hidden;
      padding: 8rem;
      transition: 2s;
    }
    
    .overlay.active{
      top: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
    
    
    .mobile-nav.active{
      display: block;
    }
    
    /*---Hamburger Menu End---*/
    
      .nav-list{
        display: none;
      }
    
      .logo-wrapper{
        display: none;
      }

      .grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
  }
  
  @media (max-width:480px) {
    .mobile-nav a{
      font-size: 2rem;
      padding: 16px 6px;
    }
  
    .overlay{
      padding: 8rem 1rem;
    }
  
    .dropdown-content a{
      font-size: 1.25rem;
    }

    .grid{
      grid-template-columns: repeat(1, 1fr);
      gap: 1.5rem;
    }
  }
  
  @media (min-width:320px) {
      
  }
  
  @media screen and (max-height: 450px) {
      .overlay {overflow-y: auto;}
      .overlay a {font-size: 20px}
      }