@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* body */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
   font-family: "Saira Semi Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html{
    scroll-behavior: smooth;
}

/* body */

/* hero */

.hero{
   background-image: url('./bg.jpg');
   padding-bottom: 290px;
   background-size: cover;
   background-position: top;
}

.header{
    font-size: 110px;
    color: #EAEFEF;
    line-height: 120px;
    text-align: center;
}

.hero-btn{
  padding: 15px 30px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  border: none;
  color: #ffffff;
  background-color: #1C00FF;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.hero-btn:hover{
    background-color: #EAEFEF;
    color: #0E21A0;
}

.workflow{
    margin-right: 5px;
}


/* hero */

/* navbar */

nav{
    padding-top: 30px;
    padding-bottom: 130px;
    display: flex;
    padding-left: 30px;
    padding-right: 30px;
    align-items: center;
}

.logo{
    width: 60px;
}

.logo-box{
    width: 50%;
}

.nav-links{
    width: 50%;
    text-align: right;
}

a{
    text-decoration: none;
}

.menu-icon{
    width: 40px;
    height: 40px;
    color: #EAEFEF;
    cursor: pointer;
}

.nav-mobile{
    position: fixed;
    width: 500px;
    background-color: #1C00FF;
    color: white;
    height: 100%;
    right: -100%;
    top: 0px;
    transition: 700ms ease-in-out;
}

.nav-close{
    width: 46px;
    height: 46px;
    position: absolute;
    top: 15px;
    cursor: pointer;
    left: 15px;
}

.nav-mobile-link{
    padding-top: 115px;
    text-align: right;
    padding-right: 50px;
}

.nav-mobile-link a {
    display: block;
    padding-bottom: 15px;
    color: white;
    font-size: 40px;
}


/* navbar */

/* about */

.about{
    background-color: #EAEFEF;
    text-align: center;
}

.about-header{
    color: #1C00FF;
    padding-top: 110px;
    padding-bottom: 35px;
}

.about-p{
    font-size: 21px;
    width: 880px;
    margin: auto;
    padding-bottom: 35px;
}

.about-p-two{
    font-size: 21px;
    margin: auto;
    width: 880px;
}

span{
    font-weight: 700;
    color: black;
}

.about-service{
    display: flex;
    margin: auto;
    width: 800px;
    justify-content: space-around;
    padding-top: 100px;
    padding-bottom: 100px;
}

.icon{
    width: 70px;
    height: 70px;
    color: #1C00FF;
}

.about-head-box{
    font-size: 20px;
}

.about-service-box{
    text-align: center;
}



/* about */




/* media queries */


@media  screen and (max-width : 1068px) {
    .header{
        font-size: 90px;
    width: 679px;
    line-height: 97px;
    margin: auto;
    }
}

@media screen and (max-width : 934px) {
    .about-p {
    width: 600px;
}

.about-p-two {
    width: 600px;
}


.about-service {
    width: 686px;
}
}


@media screen and (max-width : 772px) {
    .nav-mobile{
        width: 400px;
    }
}

@media screen and (max-width: 687px) {
    .header{
      font-size: 60px;
      width: 460px;
      line-height: 69px;
    }

    .hero{
        padding-bottom: 250px;
    }
}

@media screen and (max-width : 686px) {
    .about-p {
        width: 460px;
    }
    .about-p-two{
        width: 460px;
    }

    .about-service{
        display: block;
        width: 460px;
    }

    .about-service-box{
        padding-bottom: 70px;
        width: 460px;
      
    }

  }

  @media screen and (max-width : 528px) {
     .nav-mobile{
        width: 100%;
     }
  }

  @media screen and (max-width : 506px) {
      .header {
        font-size: 49px;
        width: 365px;
        line-height: 57px;
    }

    .hero-btn{
        padding: 15px 20px;
        font-size: 14px;
    }

    .workflow{
        width: 19px;
        height: 19px;
    }

    .about-p{
        width: 370px;
    }

    .about-p-two{
        width:  370px;
    }
   
    .about-service{
        width: 370px;
    }

    .about-service-box{
        width: 370px;
    }
    
  }

  @media screen and (max-width : 415px) {
    .about-p, .about-p-two{
        list-style: 30px;
        font-size: 16px;
        width: 300px;
    }

     .about-service{
        width: 300px;
    }

    .about-service-box{
        width: 300px;
    }
  }

@media screen and (max-width : 401px) {
        .header {
        font-size: 40px;
        width: 310px;
        line-height: 47px;
    }

    .about-header{
        width: 220px;
        margin: auto;
        line-height: 37px;
    }


}

@media screen and (max-width : 342px) {
    .about-p, .about-p-two {
        font-size: 16px;
        width: 282px;
    }

        .hero {
        padding-bottom: 210px;
    }
}

/* media quries */