.heading{
    font-size: 42px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 44px;
}
.service-icon{
    padding: 20px;
    box-shadow: var(--primary-shadow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-icon img{
    height: 40px !important;
    width: 40px !important;
}

.content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 200px;
}
.content img{
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: var(--svg-shadow);
}
.content .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 24px;
}
.text p{
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 28px;
    color: #444;
}
.btns{
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.included{
    margin-bottom: 200px;
}

.included ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.included ul li{
    list-style-type: none;
    box-shadow: var(--primary-shadow);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.included ul li .icon-div{
    background-color: var(
    --token-6396e7f2-0645-4f69-9a36-80e94f8ee015,
    rgb(0, 0, 0)
  );
  color: white;
  padding: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.included ul li span{
    font-size: 18px;
}


.process{
    display: grid;
    width: 80%;
    margin: 0 auto;
}

.process .card-body{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.process .count{
    height: 60px;
    width: 60px;
    background-color: var(
    --token-6396e7f2-0645-4f69-9a36-80e94f8ee015,
    rgb(0, 0, 0)
    );
    color: white;
    box-shadow: var(--svg-shadow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.process .count h4{
    font-size: 24px;
    font-weight: 400;
}
.process .p-content h2{
    font-weight: 500;
    margin-bottom: 10px;
}
.process .p-content h2{
    margin-top: 0;
    padding: 0;
}

@media (max-width: 1100px) {
    .content{
        grid-template-columns: 1fr;
    }
    .content .img{
        order: 1;
    }
    .content .text{
        order: 2;
    }
}

@media (max-width: 800px) {
    .included ul{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 650px) {
    .content img{
        max-height: 250px;
    }
}
@media (max-width: 420px) {
    .included ul{
        grid-template-columns: 1fr;
    }
    .process{
        width: 100%;
    }
}
