
.navig {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.navig a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.navig a:hover {
    text-decoration: underline;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.Dostavka {
    margin-top: 50px;
}

.Dostavka__inner {
    max-width: 1056px;
    margin: 0 auto;
    margin-bottom: 177px;
}

.Dostavka__inner_navig {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 400;
}

.Dostavka__inner_navig a {
    text-decoration: none;
    color: #18291bcc;
}

.Dostavka__inner_navig_p {
    color: #18291bcc;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin: 0;
}

.Dostavka__inner h1 {
    font-size: 32px;
    font-weight: 700;
    color: #18291bcc;
    margin-top: 50px;
    margin-bottom: 0;
}

.Dostavka__inner p {
    color: #18291bcc;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 0;
}

.Dostavka__inner_content {
    display: flex;
    gap: 10px;
    margin-top: 50px;
}

.content_card {
    width: 256px;
    height: 153px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.content_card img {
    width: 100%;
    height: 147px;
    border-radius: 10px;
}



.overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #f0f0f0;
    background-color: #18291bcc;
    display: flex;
    align-items: center; 
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.overlay:hover {
    opacity: 1;
    color: #f0f0f0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#overlayText {
   
    color: #fcfcfc;
    font-size: 14px;
    font-weight: 500;
  
    margin: 0;
    text-align: center; 
    width: 100%; 
}
