h2{
    font-size: 48px;
}
.banner{
    position: relative;
    background: url(../img/solution-bg.jpg) no-repeat;
    background-size: cover;
    min-height: 28vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 100px;
    padding-bottom: 50px;
}
.banner .title-desc{
    width: 100%;
    
}
.banner .title-desc h1{
    font-size: 72px;
    color: #f08400;
}
.banner .title-desc .desc{
    font-family: robotoregular;
    color: #ffffff;
    font-size: 18px;
}

.solution ul{
    flex-wrap: wrap;
    gap: 40px;
}
.solution ul li{
    width: calc((100% - 80px) / 3);
}
.solution ul li p{
    font-family: robotoregular;
}
.solution ul li a{
    font-family: robotoregular;
}
.solution ul li:first-child p{
    font-size: 20px;
    margin: 30px 0;
}
.solution ul li:first-child a{
    font-family: Bebas;
    font-size: 24px;
    display: flex;
    background: #f08400;
    width: 250px;
    max-width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.solution ul li:first-child a:before{
    content: "";
    background: url(../img/whatsapp.png) no-repeat center center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.solution ul li .title-more{
    background: #fefbf6;
    padding: 40px 20px;
}
.solution ul li .title-more h3{
    font-size: 20px;
    margin-bottom: 10px;
}
.solution ul li .title-more p{
    color: #f08400;
    font-family: robotomedium;
}
.solution ul li .title-more p span{
    border-bottom: 1px solid #f08400;
}

@media (max-width:1400px){
     .banner-con .left-con h1{
        font-size: clamp(60px,5vw,72px);
    }
    h2{
        font-size: clamp(40px,3.5vw,48px);
    }
    .solution ul{
        gap: 30px;
    }
    .solution ul li{
        width: calc((100% - 60px) / 3);
    }
}

@media (max-width:1080px){
  h2 {
        font-size: 35px;
    }
    .banner .title-desc h1{
        font-size: clamp(52px, 5.3vw, 60px);
    }
     .solution ul{
        gap: 20px;
    }
    .solution ul li{
        width: calc((100% - 40px) / 3);
    }
    .solution ul li .title-more{
        padding: 20px;
    }
}

@media (max-width:768px){
 h2 {
        font-size: 30px;
    }
     .banner .title-desc h1{
         font-size: clamp(42px, 6vw, 52px);
    }
     .solution ul li{
        width: calc((100% - 20px) / 2);
    }
   
}

@media (max-width:500px){
     .solution ul{
        gap: 10px;
    }
    .solution ul li:first-child{
        width: 100%;
    }
     .solution ul li{
        width: calc((100% - 10px) / 2);
    }
    .solution ul li:first-child p{
        font-size: 16px;
    }
    .solution ul li .title-more h3{
        font-size: 16px;
    }
}