@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}
:root{
    --blue-accent: #18d8ff;
    --darkpurple: #5b3fa1f4; 
    --lightpurple: #875df09d;
    --extralightpurple: #bfa6f9eb;
    --white-accent: #ffffff;
    --offwhite: #f8fbfe;
    --grey-accent: #5a5858; 
}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
} 
/* ---------- Header section ---------- */
.navigation-Header{
  background-color: var(--lightpurple);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem; 
    justify-content: space-between;
    overflow: hidden;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0px;
    z-index: 50;
    backdrop-filter: blur(.5rem);
}
.logo img{
    height: 3rem;
    padding-top: 4px;
    padding-left: 1rem;
}
.logo a{
    text-decoration: none;
}
#trade-Mark-Span{
    font-size: 1.6rem;
    margin-left: -1rem;
    text-decoration: none;
}

.navigation-Items ul{
    height: 10vh;
    width: 70vw; 
    margin-right: 5rem;
    min-width: 600px;
    display: inline-flex; 
    align-items: center; 
    justify-content: flex-end;
    
}
.navigation-Items ul li{
    position: relative;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding: 0 1.1rem;
    transition: all .3s ease 0s;
}
.navigation-Items a{
    color: var(--offwhite); 
    flex: 2;
    text-decoration: none;
    &:hover{
        color: var(--white-accent);
    } 
    text-transform: uppercase;  
}
nav .active{
    background-color: #8060d1f4;
    box-shadow: .5rem .5rem .5rem #efe90d;
    margin: 0rem -1rem;
    padding: 0.6rem 1.2rem;
    position: relative;
    border-radius: 0.8rem;
    transition: all .3s ease 0s;
}
nav .active:hover{
    background-color: var(--darkpurple);
    box-shadow: .5rem .5rem .5rem #fcf289;
    font-weight: 600;
}
nav .menu-Options:hover{
    background: var(--darkpurple);
    box-shadow: .5rem .5rem .5rem #fcf289;
    font-weight: 600;
    margin: 0rem -1rem;
    padding: 0.5rem 1rem;
    position: relative;
    border-radius: 0.8rem;
    transition: .3s all ease;
}
.navigation-Header ul li ul{
    display: block;
    position:absolute;
    background-color: var(--darkpurple);
}
/* ---------- Display/Hide Menu Options ---------- */
.menu-Icon{
    cursor: pointer;
    display: none;
    position: fixed;
    top: .8rem;
    right: 2rem;
    width: 2rem;
    z-index: 100;
}
.mediaQuery-Menu{
    background: #583c9e80;
    backdrop-filter: Blur(.3rem);
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem; 
    display: none;
    height: 100vh;
    line-height: 4rem;
    top: 3.4rem;
    right: -200px;
    padding: 1rem;
    position: fixed;
    width: 155px;
    transition: .8s ease;
}
.mediaQuery-Menu ul{
    list-style: none;
}
.mediaQuery-Menu a{
    color: var(--white-accent);
    font-size: 1.2rem;
    line-height: 4rem;
    text-transform: uppercase;
}
.banner-BTN{
  display: none;
}
/* ---------- Container section ---------- */
.container{
  width: 100%;
}
.container .row{
  width: 80%;
  margin: auto;
}
.container .row .header{
  width: 90%;
  text-align: center;
  margin: auto;
}
.container .row .header h1{
  padding-top: 6rem;
  font-size: 5rem;
  color: var(--lightpurple)
}
.container .row .header p{
  font-size: 1.7rem;
  line-height: 1.5;
  margin-top: 1rem;
}
.content{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.content .card{
  flex: 1;
  margin: 3.1rem 2.1rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: var(--white-accent);
}
.content{
  width: 100%;
  height: auto;
}
.card img{
  width: 100%;
  height: auto;
}
.card{
  width: 100%;
  height: auto;
  &:hover{
    box-shadow: 1rem 1.5rem 1rem #b701ff33;
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }
}

.content .card h4{
  font-size: 1.2rem;
  margin: .8rem 0 0 .8rem;
}
.content .card p{
  font-size: 1rem;
  line-height: 1.5;
  padding: .8rem;
}
.card button{
  background-color: var(--lightpurple);
  border-radius: 2rem;
  color: var(--white-accent);
  border: none;
  padding: .3rem .8rem;
  font-size: 1rem;
  cursor: pointer;
  margin: 1rem;
  &:hover {
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
  }
}
/* ---------- Article section ---------- */
article{
  padding-left: 1rem;
}
article p{
  padding: .5rem 0;
}
#article-One{
  margin: 2rem auto;
  width: 90%;
  text-align: left;
}
#article-Two{
  margin: 2rem auto;
  width: 90%;
  text-align: left;
}
#article-Three{
  margin: 2rem auto;
  width: 90%;
  text-align: left;
}
#article-One:hover, #article-Two:hover, #article-Three:hover{
  box-shadow: 1rem 1.5rem 1rem #00000033;
  border-radius: 1rem;
  padding: 2rem;
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
/* ---------- Footer ---------- */
footer {
  background-image: linear-gradient(to right bottom, #414141, #474747, #4c4c4c, #525252, #585858, #5e5e5f, #656565, #6b6b6c, #737475, #7c7d7d, #858686, #8e8f8f);
  border-top-left-radius: 6rem;
  color: var(--offwhite);
  text-align: center;
  font-size: 1rem;
  padding-top: 6rem;
  bottom: 0;
  width: 100vw;
  z-index: 50;
}
.footer-Row{
  display: flex;
  align-items: start;
  justify-content: space-evenly;
}
.footer-Row h3{
  color: var(--extralightpurple); 
  font-size: 1.2rem;
  font-weight: 500;
}
.column-One{
  flex-basis: 20%;
  text-align: left;
}
.column-One img{
  width: 6rem;
}
.column-Two{
  flex-basis: 20%;
  text-align: left;
  padding-left: 6rem;
}
.column-Two ul{
  line-height: 1.5rem;
  list-style: none;
  text-align: left;
}
.column-Three{
  flex-basis: 20%;
  text-align: left;
}
.column-Three ul{
  line-height: 1.5rem;
  list-style: none;
  text-align: left;
}
.column-Four{
  flex-basis: 20%;
  text-align: left;
}
.column-Four p{
  line-height: 1.5rem;
  list-style: none;
  text-align: left;
}
.social-Media{
  margin-top: 1rem;
}
.social-Media a{
  text-decoration: none;
}
footer hr{
  background: var(--extralightpurple);
  border: none;
  border-radius: 3px;
  height: 3px;
  margin: auto;
  width: 95%;
}
footer a{
    color: var(--white-accent);
    text-decoration: none;
    transition: all 0.4s ease;
}
footer a:hover{
    color: #9d00e0;
}
/*---------- Media Queries ----------*/
@media(min-width: 2559px){
    footer {
        font-size: 2.2rem;
        padding-top: 6rem;
    }
    .footer-Row h3{
        font-size: 2.2rem;
        font-weight: 500;
    }
    .column-One img{
        width: 12rem;
    }
    .column-Two{
        padding-left: 6rem;
    }
    .column-Two ul{
        line-height: 2.5rem;
    }
    .column-Three ul{
        line-height: 2.5rem;
    }
    .column-Four p{
        line-height: 2.5rem;
    }
    .social-Media{
        margin-top: 2rem;
    }
    footer hr{
    border-radius: 3px;
    height: 5px;
    }
    footer a:hover{
        font-size: 2.3rem;
    }
}
@media (max-width: 1117px){
  .container .row .header h1{
    font-size: 4rem;
  }
  .container .row .header p{
    font-size: 1.5rem;
  }  
}
@media (max-width: 960px){
  .navigation-Header ul{
    display: none;
  }
  .menu-Icon{
    display: block;
  }
  .mediaQuery-Menu{
    display: block;
    z-index: 50;
  }
  .mediaQuery-Menu ul li a:hover{
    background: var(--darkpurple);
    border-radius: 1rem;
    color: var(--white-accent);
    font-size: 1.2rem;
    padding: .5rem .8rem;
    transition: all .4s ease;
  }
  .mediaQuery-Menu img{
    cursor: pointer;
    width: 2rem;
  }
}
@media (max-width: 893px){
  .container .row .header h1{
    font-size: 3rem;
  } 
}
@media screen and (max-width: 768px){
  .container .row .header h1{
    padding-top: 6rem;
  }
  .container .row .header p{
    font-size: 1rem;
    line-height: 1.2;
  }
  footer{
    font-size: .9rem;
  }
  .content{
    flex-direction: column;
  }
  .column-Two{
        padding-left: 2.5rem;
    }
}
@media screen and (max-width: 426px){
  .container .row .header h1{
    padding-top: 5rem;
    font-size: 2.5rem;
  }
  .footer-Row{
    display: block;
  }
  .column-One, .column-Three, .column-Four{
        padding-left: 2.5rem;
    }
  .column-Two, .column-Three, .column-Four{
        padding-top: 1.5rem;
    }
}