.search-form-block .search-input{
    padding: 0 10px;
    color: #000000 !important;
}
.container-search:not(.opened) {
    display: none !important;
}
.search-form-block {
    padding: 0 20px;
    background: #45a3ba !important;
}
.search-suggestions {
    /* background: black; */
    background: #45a3ba !important;
}
.search-suggestions a.btn.btn-cta {
    padding: 0 10px;
}
.big-slider  .owl-dots .owl-dot.active span {
    background: #000 !important;
}
.big-slider .owl-dots .owl-dot span {
    border: solid 1px #000 !important;
}
.big-slider .owl-next svg, .big-slider .owl-prev svg {
    position: absolute !important;
    top: 0;
    left: 0;
}
@media only screen and (min-width: 768px) {
	.big-slider .owl-next, .big-slider .owl-prev {
	    position: relative;
	    background: transparent !important;
	    width: 50px !important;
	    height: 50px !important;
	    position: ABSOLUTE;
	    TOP: 45%;
	}
}
.big-slider .owl-prev {
    	LEFT: 2%;
}
.big-slider .owl-next {
    	RIGHT: 2%;
}
@media only screen and (max-width: 768px) {
	.big-slider .owl-next, .big-slider .owl-prev {
	    position: relative;
	    background: transparent !important;
	    width: 20px !important;
	    height: 20px !important;
	    position: ABSOLUTE;
	    TOP: 45%;
	}
	.big-slider .owl-next svg, .big-slider .owl-prev svg {
	    width: 20px !important;
	    height: 20px !important;
	}
}
td {
	padding: 5px !important;
}


.guz-news-schedule,
.guz-news-schedule * {
    box-sizing: border-box;
}

.guz-news-schedule {
    margin: 32px 0;
    padding: 32px;
    border-radius: 15px;
    background:
        radial-gradient(circle at 100% 0, rgba(45, 132, 76, 0.14), transparent 34%),
        linear-gradient(135deg, #f5faf6 0%, #ffffff 62%);
    border: 1px solid rgba(36, 107, 66, 0.14);
    box-shadow: 0 14px 36px rgba(30, 72, 47, 0.08);
    overflow: hidden;
}

.guz-news-schedule__hero {
    max-width: 100%;
    margin-bottom: 24px;
}

.guz-news-schedule__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(36, 107, 66, 0.1);
    color: #246b42;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.guz-news-schedule__title {
    margin: 0 0 16px;
    color: #1f2c24;
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 800;
    line-height: 1.18;
}

.guz-news-schedule__text {
    margin: 0;
    color: #3f4752;
    font-size: 18px;
    line-height: 1.65;
}

.guz-news-schedule__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.guz-news-schedule__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 164px;
    padding: 24px 22px;
    border-radius: 15px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(36, 107, 66, 0.16);
    box-shadow: 0 8px 22px rgba(31, 44, 36, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guz-news-schedule__card:hover {
    transform: translateY(-3px);
    border-color: rgba(36, 107, 66, 0.38);
    box-shadow: 0 16px 32px rgba(31, 44, 36, 0.12);
    text-decoration: none;
}

.guz-news-schedule__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 15px;
    background: #246b42;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.guz-news-schedule__content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-right: 28px;
    min-width: 0;
    width: 100%;
}

.guz-news-schedule__name {
    color: #1f2c24;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: anywhere;
}

.guz-news-schedule__desc {
    color: #637168;
    font-size: 15px;
    line-height: 1.4;
}

.guz-news-schedule__arrow {
    position: absolute;
    right: 22px;
    bottom: 25px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #246b42;
    border-right: 2px solid #246b42;
    transform: rotate(45deg);
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .guz-news-schedule__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guz-news-schedule__card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .guz-news-schedule {
        padding: 24px;
    }

    .guz-news-schedule__grid {
        grid-template-columns: 1fr;
    }

    .guz-news-schedule__card:last-child {
        grid-column: auto;
    }

    .guz-news-schedule__title {
        font-size: 28px;
    }

    .guz-news-schedule__text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .guz-news-schedule {
        margin: 24px 0;
        padding: 20px;
    }

    .guz-news-schedule__card {
        min-height: auto;
        padding: 20px;
    }

    .guz-news-schedule__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .guz-news-schedule__name {
        font-size: 19px;
    }

    .guz-news-schedule__arrow {
        right: 20px;
        bottom: 23px;
    }
}