body, button{
    font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}


*{
    margin: 0;
    padding: 0;
}

body{
    scroll-behavior: smooth;
    font-family: "Albert Sans", sans-serif;
}

.container-max-width{
    max-width: 1920px;
    margin: auto;
}

.banner {
  width: 100%;
  height: 600px;
  background-image: url(../images/breadcrumb-bg.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 0;
}

.banner-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.banner-text h1{
    color: #fff;
    font-size: 46px;
    margin-bottom: 18px;
}

.banner-text1{
    display: flex;
    align-items: center;
    gap: 7px;
}

.banner-text i{
    color: #79b900;
}

.banner-text a{
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.banner-text a:hover{
    color: #79b900;
}

.banner-text1-i i{
    color: #fff;
}

.banner-text p{
    font-size: 16px;
    color: #868681;
}

.banner-text1 {
    display: flex;
    align-items: center;
    gap: 7px;
    text-align: center;
    justify-content: center;
}


@media screen and (max-width:768px){
    
    .banner{
        height: 400px;
    }

    .banner-text{
        width: 90%;
        margin: auto;
    }

    .service1{
        width: 90%;
        margin: auto;
    }

    .service-boxs{
        display: flex;
        flex-direction: column;
    }

    .service-box {
    width: 100%;
}



}