.banner-ticker-container {
    width: 100%;
    background-color: #F5713D;
}
		
.banner-content {
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    text-align: left;
    padding: 12px 20px;
    box-sizing: border-box;

    @media (min-width: 992px) {
        padding: 12px 60px;
    }
}

.banner-text-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.banner-text {
    display: inline-block;
    white-space: nowrap;
    color: #FFF;
    position: relative;
    width: max-content;
}

.banner-text.ticker-animate {
    animation: ticker 18s linear infinite;
}

.banner-text.ticker-pause {
    animation-play-state: paused;
}

.banner-link {
    color: #FFF !important;
    text-decoration: none;
    margin-left: 25px;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 700;
    
    &:hover {
        text-decoration: underline;
    }
}

.page-content h3 {
    font-weight: 600;
    color: #f05226;
    margin: 30px 0;
}

.page-content ul, .page-content ol, .page-content p {
    margin: 30px 0 40px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contacts {
    padding-top: 0 !important;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;

    @media (min-width: 768px) {
        gap: 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1200px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contacts-grid::before, .contacts-grid::after {
    content: none !important;
}

.contacts-grid .contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;

    @media (min-width: 768px) {
        gap: 12px;
    }
}

.contacts-grid .contact-name, .contacts-grid .contact-role, .contacts-grid .contact-email {
    margin: 0;
}

.contacts-grid .contact-name {
    font-weight: 600;
}

@keyframes ticker {
	0% {
		transform: translateX(100%);
	}
	45% {
		transform: translateX(0%);
	}
	55% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.half-content-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;

    @media (min-width: 768px) {
        gap: 48px;
    }

    @media (min-width: 1200px) {
        gap: 54px;
    }
}

.half-content-sections .half-content-section {
    display: flex;
    flex-direction: column;
    gap: 32px;

    @media (min-width: 768px) {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
}

.half-content-sections .half-content-section:nth-of-type(even) {
    @media (min-width: 768px) {
        flex-direction: row-reverse;
    }
}

.half-content-sections .half-content-section .half-content-section__content {
    width: 100%;

    @media (min-width: 768px) {
        width: calc(50% - 16px);
    }
}

.half-content-sections .half-content-section .half-content-section__content h3 {
    border-bottom: 2px solid #f05226;
    padding-bottom: 30px;
    font-size: 24px;
    line-height: 36px;
}

.half-content-sections .half-content-section .half-content-section__image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;

    @media (min-width: 768px) {
        width: calc(50% - 16px);
    }
}

.half-content-sections .half-content-section .half-content-section__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}