.how-we-do-it-block {
    padding: 40px 0;
}

.how-we-do-it-block .how-we-do-it-title {

    color: #1A1A1A;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; 
     letter-spacing: 2px;   
     margin: 0px;
}

.how-we-do-it-block .how-we-do-it-image-container {
    text-align: center;
    margin-top: 26px;
    padding: 0 90px;
    border-radius: 12px;
}

.how-we-do-it-block .how-we-do-it-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.how-we-do-it-block .how-we-do-it-controls {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 26px;
}

.how-we-do-it-block .hwdi-button {
    width: 44px;
    height: 44px;
   padding: 0;
    border: none;
    background: #F5F5F5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}
.how-we-do-it-block .hwdi-button:hover
{
    background: linear-gradient(111deg, #544FF8 50%, #2EB6AE 100%);
}
.how-we-do-it-block .hwdi-button:hover img
{
    filter: brightness(0) invert(1);
}

/* Lightbox Styles */
.hwdi-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hwdi-lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
}

.hwdi-close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.hwdi-close-btn:hover,
.hwdi-close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Breakpoints */
@media (max-width: 1399.98px) { 
   
}
@media (max-width: 1199.98px) { 
   
}
@media (max-width: 991.98px) { 
   
    .how-we-do-it-block .how-we-do-it-title{
         font-size: 38px;
    }
     .how-we-do-it-block .how-we-do-it-image-container {
        padding: 0px;
        height: auto;
    }
}
@media (max-width: 767.98px) { 
    .how-we-do-it-block {
        padding:  0;
    }
    .how-we-do-it-block .how-we-do-it-title {
        font-size: 34px;
    }
    .how-we-do-it-block .how-we-do-it-image-container {
        padding: 0px;
        height: auto;
        margin-top:24px;
    }
    .how-we-do-it-block .how-we-do-it-controls{
        margin-top:14px;
    }
}
@media (max-width: 575.98px) { 
    .how-we-do-it-block .hwdi-button {
        width: 38px;
        height: 38px;
    }
}