.weddings-list-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 70px;
    background-color: var(--color-grey);
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.weddings-list__link {
    position: absolute;
    top: -93px;
    left: 381px;
    display: inline-flex;
    align-items: center;
    grid-gap: 20px;
    margin: 20px 0 0 0;
    font-size: 16px;
    color: var(--color-black);
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.weddings-list__link::after {
    content: '';
    width: 40px;
    border-top: 1px solid;
    transition: all .3s ease-in-out;
}

.weddings-list__title h2 {
    font-family: var(--font-text-family);
    text-align: center;
    font-size: 48px;
    color: var(--color-black);
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 40px;
    max-width: 1170px;
}

.weddings-list__title p {
    text-align: center;
}

.weddings-list__zones {
    margin-top: 25px;
    cursor: pointer;
}

.weddings-list__zones .wedding-nav {
    display: flex;
    gap: 20px;
}

.weddings-list__venues {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    gap: 50px;
    row-gap: 80px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
    max-width: 1170px;
}

.wedding__card {
    display: flex;
    flex-direction: column;
    width: calc(50% - 30px);
    position: relative;
}

.wedding__card__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
}

.wedding__card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    margin-bottom: 30px;
}

.wedding__card .icon img {
    position: relative;
    top: 15px;
    width: 30px;
    height: 30px;
}

.wedding__card span {
    margin-bottom: 21px;
    font-family: var(--font-cursive-family);
    font-size: 24px;
}

.wedding__card .wedding__section-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 21px;
    width: 100%;
}

.wedding__button {
    display: inline-flex;
    align-items: center;
    grid-gap: 20px;
    margin: 20px 0 0 0;
    font-size: 16px;
    color: var(--color-black);
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
.wedding__button p{
    margin: 0;
}

.wedding__button::after {
    content: '';
    width: 40px;
    border-top: 1px solid;
    transition: all .3s ease-in-out;
}

.wedding__buttons__book {
    display: inline-block;
    margin: 10px 0 0 0;
    padding: 15px 20px;
    background-color: var(--color-primary);
    font-size: 16px;
    color: var(--color-white);
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    transition: all .3s ease-in-out;
}

.wedding__buttons__book a {
    color: white;
}

.wedding-nav li {
    position: relative;
}

.wedding-nav .active a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.wedding-nav a {
    position: relative;
}

.wedding-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.wedding-nav a:hover::before,
.wedding-nav .active a::before {
    width: 100%;
}

@media (max-width:992px) {

    .weddings-list__title {
        width: 100%;
    }

    .weddings-list__title h1 {
        font-size: 45px;
        text-align: left;
    }

    .weddings-list__title p {
        text-align: left;
    }

    .wedding__card {
        width: 100%;
    }

    .weddings-list__title h2 {
        font-size: 35px;
        line-height: 45px;
        margin-left: 13px;
    }

    .wedding__card img {
        width: calc(100% + 30px);
    }

    .wedding__card__info {
        padding: 15px;
    }
}
