@import url('components.css');

.section-title-index {
    font-family: var(--basic_font_2);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-left: 10px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
    
    /*font-size: 1.4rem;*/
    /*margin-top: 0px;*/
    /*margin-bottom: 2rem;*/
    /*position: relative;*/
    /*display: inline-block;*/
    /*font-weight: 600;*/
}

.section-title-index::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #1b61e4;
    border-radius: 3px;
}

.slider_holder_preview {
    margin-left: 10px;
}

.water-delivery {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    max-width: 400px;
    /* margin: 0 auto; */
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.delivery-title {
    margin: 0 0 8px 0;
    color: #2d3748;
    font-size: 22px;
    font-weight: 600;
}

.delivery-subtitle {
    margin: 0 0 20px 0;
    color: #718096;
    font-size: 15px;
}

.messenger-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.messenger-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.messenger-btn.viber {
    background: #6447aa;
    color: white;
}

.messenger-btn.telegram {
    background: #2aabee;
    color: white;
}

.messenger-btn.whatsapp {
    background: #25d366;
    color: white;
}

.messenger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.background {
    /* border: 1px solid black; */
    height: 300px;
    overflow: hidden;
    margin-top: 100px;
}






.water-card {
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-family: var(--basic_font_2);
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.water-image {
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-image img {
    max-width: 85%;
    height: auto;
    transition: transform 0.4s ease;
}

.water-content {
    padding: 50px 30px 50px 0;
}

.water-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1b61e4;
    margin-bottom: 15px;
    font-weight: 600;
}

.water-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.water-features {
    margin-bottom: 35px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: #19d156;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    fill: white;
}

.feature-text {
    font-size: 15px;
    color: #555;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.water-cta {
    margin-top: 40px;
}

.water-cta a {
    display: inline-block;
    padding: 14px 30px;
    background-color: #1b61e4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.water-cta a:hover {
    background-color: #1752be;
}

.water-contact {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.water-contact a {
    color: #0078c8;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 990px) {
    .water-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .slider_holder_preview {
        margin-left: 0px;
    }

    .water-content {
        padding: 40px;
    }

    .water-image {
        padding: 60px 40px;
    }
}

@media (max-width: 500px) {
    .messenger-btn {
        display: block;
    }

    .water-title {
        font-size: 1.8rem;
    }

    .water-content,
    .water-image {
        padding: 30px;
    }
}