* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
/* Style for the body */
body {
  background-color: #20272d;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  min-height: 5000px;
  color:white;
  padding-top: 60px;
}

/* Style for the header */
.header {
  background-color: rgba(19, 22, 26,.99);
  position: fixed;
  width: 100%;
  top: 0;
}
.header_content{
    display:flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo_img,
.logo_image {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav{

}
.nav_list{
display: flex;
column-gap: 45px;
}
.nav_item{

}
.nav_link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  transition: all .4s;
  position: relative;
}
.nav_link:hover, .nav_link:focus{
    color: rgba(255,255,255,1)
    
}
.nav_link::after {
    content: '';
    height: 2px;
    width: 100%;
    background-color: rgb(189, 156, 24);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
}
.nav_link:hover::after{
opacity: 1;    
}
.btn{
    color : #fff;
    background-color: #0071e3;
    padding: 7px 18px;
    border-radius: 1000px;
    text-transform: uppercase;
    font-size:12px;
    font-weight: 500;
    transition: all .2s;
}
.bth:hover{
    color:black;
    background-color: rgb(28,128,228);
}
/* media queries*/
@media (max-width: 650px){
    .header_content{
        flex-direction : column;
        padding: 25px 0;
        row-gap: 18px;
    }
    .nav_list{
        column-gap: 20px;
    }
}
.h1primary{
    text-align: center;
    align-items: center;
    margin-right:50px;
    margin-top:55px;
    padding:5px;
    font-family: "Inter", sans-serif;
    font-weight:700;
    font-size: 45px;
}
.p-primary{
text-align: center;
    align-items: center;
    margin-right:50px;
    margin-top:55px;
    padding:5px;
    font-family: "Inter", sans-serif;
    font-weight:400;
    font-style: italic;
}
.glow-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width:  100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(
        300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(37,99,235,.15), rgba(37,99,235,.03) 30%,
        transparent 80%
    );
}
.grid-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500%;
    z-index: 2;
    pointer-events: none;
    background-size:40px 40px;
    background-image: linear-gradient(
        to right, rgba(255,255,255,.03) 1px, transparent 1px
    
    ), linear-gradient(
        to bottom, rgba(255,255,255,.03) 1px, transparent 1px
    );
}
.dividerline{
    border: none;
    border-top: 2px solid #ffffff90;
    margin: 20px 0;
    width: 100%;
    color: white;
    margin-top: 355px;
}
.box{
    width: 100%;
    height: 450px;
    padding:4px;
    top: 0;
    margin-top:-350px;
    z-index: -1;
    background-color: rgba(0, 37, 112, 0.4);
}