@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: 1s;
}

body{
    background: rgb(0, 0, 0);
background: linear-gradient(90deg, rgb(0, 0, 0) 26%, rgba(1,1,2,1) 78%);
}

/* hero btn */

.hero-btn-a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #fefefe;
    text-transform: uppercase;
    color: #fefefe;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
  }
  
  .hero-btn-a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: #000000;
    transition: 0.3s ease-in-out;
    transform: scaleY(1);
  }
  
  .hero-btn-a:hover::before {
    transform: scaleY(0);
  }
  
  .hero-btn-a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: #000000;
    transition: 0.3s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.5s;
  }
  
  .hero-btn-a:hover::after {
    transform: scaleX(0);
  }
  
  .hero-btn-a span {
    position: relative;
    z-index: 3;
  }
  
  .hero-btn {
    background-color: none;
    text-decoration: none;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    margin-top: 3%;
    margin-bottom: 1%;
  }




@media only screen   
and (min-device-width : 320px)   
and (max-device-width : 640px)  
{
    .hero-h1{
        font-weight:400;
        font-size: 1.75rem;
        margin-top: 15%;
        margin-bottom: 1.5%;
    }
    .hero-h3{
        font-weight:400;
        font-size: 2rem;
        margin-top: 15%;
        margin-bottom: 1%;
    }
    .sec-2-h1{
        font-size: 1.25rem;
        color: white;
    }
    .sec-2-p{
        font-size: 1rem;
        color: rgb(173, 173, 173);
    }
    .lower-img{
        height: 60vh;
        background-image: url('../Assets/our-service-lower-img.png');
    }
    .sec-2-lower-h1{
        margin-top: 25%;
        margin-bottom: 25%;
        font-size: 2.5rem;
    }
    .sec-2-lower-p{
        font-size: 1rem;
        margin-top: 15%;
        color: rgb(173, 173, 173);
    }
    .sec-2-img{
        height: 80%;
        width: 45%;
        margin-top: 15%;
    }
 }






@media only screen   
and (min-width: 1030px)   
and (max-width: 1605px)  
{ 
    .hero-h1{
        font-weight:400;
        font-size: 3.5rem;
        margin-top: 6%;
        margin-bottom: 1.5%;
    }
    .hero-h3{
        font-weight:400;
        font-size: 2rem;
    }
    .sec-2-h1{
        font-size: 1.5rem;
        color: white;
    }
    .sec-2-p{
        font-size: 1rem;
        color: rgb(173, 173, 173);
    }
    .lower-img{
        height: 60vh;
        background-image: url('../Assets/our-service-lower-img.png');
    }
    .sec-2-lower-h1{
        margin-top: 25%;
        margin-bottom: 25%;
        font-size: 2.5rem;
    }
    .sec-2-lower-p{
        font-size: 1.25rem;
        margin-top: 15%;
        color: rgb(173, 173, 173);
    }
    .sec-2-border{
        border: 1px solid white;
    }
    
    .sec-2-img{
        height: 80%;
        width: 45%;
        margin-top: 15%;
    }
}