*{
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  font-family: "montserrat";
  overflow-x: visible;

}
body{
  /* padding: 10px 10px; */

}
/* GLASSMORPHISM BG */
.card {
backdrop-filter: blur(6px) saturate(180%);
-webkit-backdrop-filter: blur(6px) saturate(180%);
background-color: rgba(41, 42, 43, 0.75);
border: 1px solid rgba(255, 255, 255, 0.125);
}
header{
  /* margin-top: 7.5px; */
  width: 100%;
  position: sticky;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  transition: 0.2s ease;   
}

/* //header padding */
header ul{
  list-style: none;
  padding: 20px;
  padding-top:30px;
}
header ul li{
  padding: 0 20px;
  display: flex;
  justify-content: space-evenly;
  display: inline;
}
header ul li a{
  font-size: larger;
  font-weight: bold;
  text-decoration: none;
  color: white;
}
/* header image */
header a img{ 
margin-top: 25%;
  width: 3rem;
  height: 3rem;
  margin-left: 10px;
}
header a.call{
  display: none;
}
/* DROP DOWN MENU FOR SERVICES */
header nav ul li .services-dropdown{
width: 100%;
position: relative;
z-index: 999;

max-width: fit-content;
padding: 1rem 0.5rem;
}
header nav ul li .services-dropdown li{
display: block;
}
  #hamburger-icon {
    margin: auto 0;
    display: none;
    cursor: pointer;
  }
  
  #hamburger-icon div {
    width: 35px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  
  .open .bar2 {
    opacity: 0;
  }
  
  .open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
  }
  
  .open .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    position: absolute;
    top:8rem;
    left: 0;
    height: max-content;
    width: 100%;
    /* background-color: #0856A2;
    border: 1px solid #0856A2;
    border-radius: 20px; */
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    background-color: rgba(31, 32, 32, 0.82);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
  }
  
  .mobile-menu li {
    margin-bottom: 50px;
  }
  
  @media only screen and (max-width: 1150px) {
    header nav {
      display: none;
    }
  
    #hamburger-icon {
      display: block;
    }
    .mobile-menu{
        width: 100vw;
        height: max-content;
        overflow-x: hidden;
    }
    header a.call{
        margin-top:clamp(5px,10px,30px);
        border-radius: 15px;
        height: 2rem;
        color: black;
        font-weight: bold;
        text-decoration: none;
        padding: 5px 10px;
        border: 1px solid white;
        background-color: white;
        display: inline-block;
    }
    header a img{
        width: clamp(1rem,2.5rem,5rem);
        height: clamp(1rem,2.5rem,5rem);;
    }
  }
/* CALL GLOW ANIMATION */

  .btn {
    padding: 15px 40px;
    border: none;
    outline: none;
    color: #FFF;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
  }
  .btn::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
    /* background-color: black; */
  }
  /* glow */
  .btn::before {
    content: "";
    background: linear-gradient(
      45deg,
      #FF0000, #FF7300, #fffb00, #48FF00,
      #00FFD5, #002BFF, #FF00C8, #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height:  calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 1;
  }
  
  @keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
  }
  header ul li a.btn{
    color: black;
    background-color: transparent;
    border: 3px solid white;
    border-radius: 20px;
    padding: 8px;
}






footer{
    background-color: rgb(35, 35, 35);
    padding: 1rem;
    /* display: grid;
    grid-template-rows: 3; */
    margin-top: rem;
  }
  footer .direct-links{
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 1rem;
    max-width:fit-content;
    margin: auto;
    padding: 1rem;
  } 
  footer .direct-links div{
   display: grid;
   grid-template-rows: auto auto;
   gap: 1rem;
   justify-items: center;
   align-items: center;
   /* border: 1px solid white; */
   padding: 1rem;
   background-color: #636363;
   border-radius: 1rem;
  }
  footer .direct-links div a{
    text-decoration: none;
    color: white;
  }
  footer .direct-links div a p{
  
  }
  footer .direct-links div a svg{
    width: 4rem;
    color: #002BFF;
    border-radius: 50%;
    background-color: white;
    /* fill: #002BFF; */
    padding: 0.5rem;
  
  }
  footer .divsection{
    display: grid;
    grid-template-columns: auto auto;
    margin: 0.5rem 1rem;
    text-align: center;
  }
  
  footer .social ul{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  footer  .social ul li{
    display: inline;
    padding: 0.75rem;
  }
  footer  ul{
    margin-top: 1rem;
    list-style: none;
    display: inline-block;
 
  }
  footer  li{
    margin-top: 0.5rem;
    width: fit-content;

  }
  footer section div a{
    text-decoration: none;
    color: #7b7b7b;
    transition: 0.5s ease;
  }
  footer section div a:hover{
    color: white;
  }
  footer section div h1{
    font-weight: 300;
    color: white;
  }
  footer .social a ion-icon{
    font-size: 2.5rem;
  }
  footer .social a{
    text-decoration: none;
    color: #7b7b7b;
    transition: 0.5s ease;
    display: flex;
    justify-content: sp;
  }
  footer .social a:hover{
    color: white;
  }
  footer h3{
    margin-top: 2rem;
    color: rgb(115, 115, 115);
  }
  footer h3 a{
    text-decoration: underline;
    color:rgb(115, 115, 115);
    transition: 1.5s ease;
  }
  footer h3 a:hover{
    color: white;
  }
  @media only screen and (max-width: 1200px){
    footer{
      background-color: rgb(35, 35, 35);
      padding: 1rem;
      /* display: grid;
      grid-template-rows: 3; */
    }
    footer .direct-links{
      display: grid;
      grid-template-columns:auto;
      gap: 1rem;
      max-width:fit-content;
      margin: auto;
      padding: 1rem;
    } 
    footer .direct-links div{
     display: grid;
     grid-template-rows: auto auto;
     gap: 1rem;
     justify-items: center;
     align-items: center;
     /* border: 1px solid white; */
     padding: 1rem;
     background-color: #636363;
     border-radius: 1rem;
    }
    footer .direct-links div a{
      text-decoration: none;
      color: white;
    }
    footer .direct-links div a p{
    
    }
    footer .direct-links div a svg{
      width: 4rem;
      color: #002BFF;
      border: 1px solid transparent;
      border-radius: 50%;
      background-color: white;
      /* fill: #002BFF; */
      padding: 0.5rem;
    
    }
    footer .divsection{
      display: grid;
      grid-template-columns: auto auto;
      text-align: center;
    }
  
    footer .social ul{
      display: flex;
      justify-content: center;
      align-items: center;
      
    }
    footer  .social ul li{
      display: inline;
      padding: 0.75rem;
    }
    footer  ul{
      list-style: none;
    }
    footer  li{
      margin-top: 0.5rem;
    
    }

    footer section div a{
      text-decoration: none;
      color: #7b7b7b;
      transition: 0.5s ease;
    }
    footer section div a:hover{
      color: white;
    }
    footer section div h1{
      font-weight: 300;
      font-size: xx-large;
    }
    footer .social a ion-icon{
      font-size: 2.5rem;
    }
    footer .social a{
      text-decoration: none;
      color: #7b7b7b;
      transition: 0.5s ease;
    }
    footer .social a:hover{
      color: white;
    }
    footer h3{
      margin-top: 2rem;
      color: rgb(115, 115, 115);
    }
    footer h3 a{
      text-decoration: none;
      color:rgb(115, 115, 115);
      transition: 1.5s ease;
      text-decoration: underline;
    }
    footer h3 a:hover{
      color: white;
    }
  }