  body {
            font-family: 'Montserrat', sans-serif;
	  position: relative;
        }
.header-right a:hover {
    color: #fff;
}

.header-right:hover {
    background: #1a1a1a;
}
		.d-flex.align-items-center.justify-content-between.w-100.menu {
    width: auto !important;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}


.logo-bg-burgundy {
    background: #9d0a0e;
    /* Делаем скос как на первом примере */
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    padding-right: 40px !important;
}


.burger-circle {
    width: 45px;
    height: 45px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.3s;
}

.burger-circle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #9d0a0e;
    border-radius: 2px;
}
.load-more a {
    background-color: #232e43;
    color: #fff !important;
    display: inline-block;
    font-size: 16px;
    margin-top: 25px;
    padding: 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.5s ease 0s;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    		.d-flex.align-items-center.justify-content-between.w-100.menu {
    width: 100% !important;
}
    .logo-bg-burgundy {
        clip-path: none;
        padding-right: 15px !important;
        border-radius: 0 0 10px 0;
    }
	.header-right.d-flex.align-items-center {
    display: none !important;
}
}

.btn-burgundy-rounded {
    background: #9d0a0e;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.text-burgundy { color: #9d0a0e !important; }
		.top-info-bar small {
    font-size: 15px;
}
		:root {
    --burgundy: #9d0a0e;
    --dark: #1a1a1a;
}

.bg-burgundy { background-color: var(--burgundy) !important; }
.logo-wrapper {
    min-width: 400px;
}

.logo-content {
    background-color: var(--burgundy);
    z-index: 2;
    position: relative;
}

.logo-wave {
    position: absolute;
    right: -80px;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 1;
}

.logo-wave svg {
    height: 100%;
    width: 100%;
}

.btn-burgundy-rounded {
    background-color: var(--burgundy);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    border: 2px solid var(--burgundy);
}

.btn-burgundy-rounded:hover {
    background-color: transparent;
    color: var(--burgundy);
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    margin: 0 10px;
    font-size: 15px;
}

.navbar-nav .nav-link:hover {
    color: var(--burgundy) !important;
}

.burger-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.burger-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--burgundy);
}

@media (max-width: 991px) {
    .logo-wrapper {
        min-width: auto;
    }
    .logo-wave {
        display: none;
    }
    .logo-content {
        padding: 10px 20px !important;
        border-radius: 0 0 15px 0;
    }
}
.text-burgundy {
    color: #9d0a0e !important;
}

.dropdown-item:hover {
    background-color: rgba(157, 10, 14, 0.05);
    color: #9d0a0e;
}

@media (max-width: 768px) {
    .top-contacts small {
        display: block;
        margin-bottom: 5px;
    }
}
		.logo-content {
    background: #9d0a0e;
}

.header-right {
    background: #9d0a0e;
    border-radius: 25px;
}

.header-right a {
    color: #fff;
    font-size: 17px;
}
:root {
    --burgundy: #9d0a0e;
    --dark-grey: #333;
}

.text-burgundy { color: var(--burgundy); }

.logos-track {
    display: flex;
    width: calc(250px * 16); 
    animation: scrollBrands 40s linear infinite;
}

.brand-item {
    width: 200px;
    flex-shrink: 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ccc; 
    transition: all 0.4s ease;
    cursor: default;
    user-select: none;
    letter-spacing: 1px;
}

.brand-item:hover {
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 8)); }
}

.fade-left, .fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.fade-left {
    left: 0;
    background: linear-gradient(to right, #9d0a0e, transparent);
}
.fade-right {
    right: 0;
    background: linear-gradient(to left, #9d0a0e, transparent);
}

.logos-track:hover {
    animation-play-state: paused;
}

@media (max-width: 991px) {
    .brand-item {
        font-size: 1.2rem;
        width: 150px;
    }
    .logos-track {
        animation-duration: 20s;
    }
}
	:root {
    --burgundy: #9d0a0e;
}

.hero-section {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('/assets/images/image_1773732649778.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.text-burgundy { color: var(--burgundy) !important; }
.bg-burgundy { background-color: var(--burgundy) !important; }

.btn-burgundy {
    background-color: var(--burgundy);
    color: white;
    transition: 0.3s;
    border: none;
}

.btn-burgundy:hover {
    background-color: #7a080b;
    color: white;
    transform: translateY(-2px);
}

.hero-section .card {
    border-top: 5px solid var(--burgundy) !important;
}

.top-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--burgundy);
}

.pulse-small {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(157, 10, 14, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(157, 10, 14, 0); }
    100% { box-shadow: 0 0 0 0 rgba(157, 10, 14, 0); }
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(157, 10, 14, 0.2);
    border: 1px solid var(--burgundy) !important;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        background-attachment: scroll; 
    }
    .benefits-line { justify-content: center; }
    .lead { border-start: none; border-top: 3px solid var(--burgundy); padding-top: 15px; }
}
:root {
    --burgundy: #9d0a0e;
}

.hero-section {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('/assets/images/image_1773732649778.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.text-burgundy { color: var(--burgundy) !important; }
.bg-burgundy { background-color: var(--burgundy) !important; }

.btn-burgundy {
    background-color: var(--burgundy);
    color: white;
    transition: 0.3s;
    border: none;
}

.btn-burgundy:hover {
    background-color: #7a080b;
    color: white;
    transform: translateY(-2px);
}

.hero-section .card {
    border-top: 5px solid var(--burgundy) !important;
}

.top-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--burgundy);
}

.pulse-small {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(157, 10, 14, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(157, 10, 14, 0); }
    100% { box-shadow: 0 0 0 0 rgba(157, 10, 14, 0); }
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(157, 10, 14, 0.2);
    border: 1px solid var(--burgundy) !important;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        background-attachment: scroll; 
    }
    .benefits-line { justify-content: center; }
    .lead { border-start: none; border-top: 3px solid var(--burgundy); padding-top: 15px; }
}
.services-section {
    background: url('/assets/images/image_1773732728918.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.burgundy-line {
    width: 60px;
    height: 4px;
    background: #9d0a0e;
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.service-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-icon-badge {
        position: absolute;
    top: -40px;
    left: 50px;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #9d0a0e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(157, 10, 14, 0.3);
    z-index: 2;
}
.card-body {
    position: relative;
}
.read-more {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-uppercase;
    transition: 0.3s;
}

.read-more i {
    transition: margin-left 0.3s ease;
}

.read-more:hover {
    color: #9d0a0e;
}

.read-more:hover i {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }
}
.seo-section img {
    transition: transform 0.3s ease;
}

.seo-section img:hover {
    transform: scale(1.02);
}
.brands-slider {
    background: #9d0a0e;
}
.step-content h5 {
    font-size: 15px;
}

.footer {
    background-color: #111111 !important;
    font-family: 'Inter', sans-serif;
}

.text-burgundy {
    color: #9d0a0e !important;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-accent {
    width: 12px;
    height: 24px;
    background: #9d0a0e;
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #9d0a0e;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.social-btn:hover {
    background: #9d0a0e;
    color: #fff;
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.tracking-wider {
    letter-spacing: 1.5px;
}
.sticky-social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-bottom: 2px;
    width: 50px; 
    overflow: hidden;
    white-space: nowrap;
    border-radius: 0 5px 5px 0;
}

.social-btn i {
    font-size: 20px;
    min-width: 20px;
    text-align: center;
}

.social-btn .label {
    margin-left: 15px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-btn:hover {
    width: 160px;
}

.social-btn:hover .label {
    opacity: 1;
}

.whatsapp { background-color: #25D366; }
.telegram { background-color: #0088cc; }
.phone    { background-color: #0d6efd; }

.social-btn:hover {
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
}
.btn-back-to-top {
    position: fixed;
    bottom: 100px; 
    right: 25px;
    display: none; 
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease;
		background: #9d0a0e;
		color: #fff;
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
}
button#btn-back-to-top:hover {
    background: #333;
}

button#btn-back-to-top:hover i {
    color: #fff !important;
}

.sticky-social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.sticky-social-bar .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    color: #ffffff !important; 
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible; 
}

.sticky-social-bar .social-btn i {
    font-size: 24px;
    z-index: 2;
    position: relative;
    display: block;
}

.social-btn.whatsapp { background-color: #25d366; }
.social-btn.telegram { background-color: #0088cc; }
.social-btn.phone    { background-color: #007bff; }

.sticky-social-bar .label {
    position: absolute;
    left: 50px;
    background: inherit; 
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 0 5px 5px 0;
}

.sticky-social-bar .social-btn:hover {
    width: 150px; 
    justify-content: flex-start;
    padding-left: 13px;
}

.sticky-social-bar .social-btn:hover .label {
    opacity: 1;
    visibility: visible;
}

.article-card-modern {
    background: #fff;
    border-radius: 0; 
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.article-card-modern:hover {
    box-shadow: 0 15px 30px rgba(157, 10, 14, 0.1);
    transform: translateY(-5px);
}

.article-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-cat {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #9d0a0e;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.article-content {
    padding: 20px;
}

.article-content .date {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
}

.article-content .title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.article-content .excerpt {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #9d0a0e;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.read-more:hover {
    color: #1a1a1a;
}

	.how-we-work {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url(/assets/images/image_1773732649778.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.work-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0; 
}

.work-step-card:hover {
    background: #9d0a0e;
    transform: translateY(-5px);
    border-color: #9d0a0e;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-index {
       font-size: 25px;
    color: #9d0a0e;
    background: #fff;
    padding: 2px 8px;
    transition: 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 2em;
}

.work-step-card:hover .step-index {
    background: #1a1a1a;
    color: #fff;
}

.step-header i {
       font-size: 3.5rem;
    color: rgb(255 255 255 / 11%);
    transition: 0.3s;
    position: absolute;
    right: 15px;
}

.work-step-card:hover .step-header i {
    color: #fff;
}

.work-step-card.highlight {
    background: #9d0a0e;
    border: none;
}

.work-step-card.highlight:hover {
    background: #86090c;
}

.work-step-card h5 {
    letter-spacing: 1px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .work-step-card {
        padding: 20px;
    }
}
.badge.bg-burgundy.mb-3.px-3.py-2.rounded-0 {
    font-size: 15px;
}
.text-burgundy { color: #9d0a0e; }
.burgundy-line { width: 80px; height: 4px; background: #9d0a0e; margin-left: 0; }
.tracking-wider { letter-spacing: 2px; }
.z-index-2 { z-index: 2; position: relative; }

.advantage-card-bg {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.advantage-card-bg::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9d0a0e;
    transition: all 0.4s ease;
    z-index: 1;
}

.advantage-card-bg:hover::after,
.advantage-card-bg.active::after {
    bottom: 0;
}

.adv-content {
    position: relative;
    z-index: 3; 
    transition: all 0.4s ease;
}

.advantage-card-bg:hover .adv-content h5,
.advantage-card-bg.active .adv-content h5 {
    color: #ffffff !important;
}

.advantage-card-bg:hover .adv-content p,
.advantage-card-bg.active .adv-content p {
    color: rgba(255,255,255,0.8) !important;
}

.bg-icon {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 140px;
    color: #000000; 
    opacity: 0.04; 
    z-index: 2;
    transition: all 0.5s ease;
    pointer-events: none; 
}

.advantage-card-bg:hover .bg-icon,
.advantage-card-bg.active .bg-icon {
    color: #ffffff; 
    opacity: 0.1; 
    transform: scale(1.1) rotate(-5deg);
}

.bg-pattern-dots {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 991px) {
    .advantage-card-bg { margin-bottom: 20px; }
}
.price-section table {
    width: 100%;
}

.price-section table thead {
    background: #1a1a1a;
    color: #fff;
}

.price-section table th, .price-section table td {
    padding: 5px 10px;
    border-top: 1px solid #ddd;
}
.hero-image-frame {
    padding: 10px;
    background: #ffffff;
    border: 1px solid #eee;
    z-index: 1;
}

.image-accent-border {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #9d0a0e;
    z-index: -1;
}

.image-accent-border.top-left {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.image-accent-border.bottom-right {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.custom-clip {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
    width: 100%;
    height: 380px; 
    object-fit: cover;
}

.hero-form-light {
    background: #ffffff;
    border: 1px solid #eee;
}

.form-burgundy-line {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #9d0a0e;
}
.text-burgundy { color: #9d0a0e !important; }

.breadcrumb-section { background-color: #9d0a0e; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.8) !important; text-decoration: none; font-size: 15px; }
.breadcrumb-item.active { color: #fff !important; font-weight: 600; }

.hero-image-frame {
    position: relative;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #eee;
}

.custom-clip {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-form-light {
    background: #ffffff;
    border-top: 3px solid #9d0a0e;
}

.hero-form-light .form-control {
    border-radius: 0;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.hero-form-light .form-control:focus {
    border-color: #9d0a0e;
    box-shadow: none;
}

.btn-burgundy {
    background: #9d0a0e;
    color: #fff;
    border: none;
    border-radius: 0;
    transition: 0.3s;
}

.btn-burgundy:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 991px) {
    .display-5 { font-size: 1.8rem; }
    .hero-form-light { margin-top: 30px; }
}
.step-card {
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent !important;
}
.step-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #9d0a0e !important;
}

.table-hover tbody tr:hover {
    background-color: rgba(157, 10, 14, 0.02);
}

.text-burgundy { color: #9d0a0e; }
.burgundy-line { width: 60px; height: 4px; background: #9d0a0e; margin-bottom: 20px; }

.work-card {
    background: #ffffff;
    padding: 30px 20px;
    border: 1px solid #eee;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: default;
}

.work-card i {
    font-size: 2.5rem;
    color: #9d0a0e;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.work-card h6 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    color: #333;
}

.work-card:hover {
    background: #9d0a0e;
    border-color: #9d0a0e;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(157, 10, 14, 0.2);
}

.work-card:hover i, 
.work-card:hover h6 {
    color: #ffffff !important;
}

.burgundy-line {
    width: 60px;
    height: 4px;
    background: #9d0a0e;
    margin-top: 10px;
}
	.seo-footer-content {
    border-top: 1px solid #eee;
    line-height: 1.8;
}

.seo-text-wrapper h2 {
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.seo-text-wrapper h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #9d0a0e;
}

.seo-text-wrapper p {
    font-size: 0.95rem;
    text-align: justify;
}

.text-burgundy {
    color: #9d0a0e !important;
}

@media (max-width: 768px) {
    .seo-text-wrapper p {
        text-align: left;
    }
}

.text-muted {
    color: #1a1a1a !important;
}

ul.breadcrumb {
    margin-bottom: 0;
}
img {
    max-width: 100%;
}

.btn-burgundy {
    background-color: #9d0a0e;
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-burgundy:hover {
    background-color: #1a1a1a;
    color: white;
}

.border-burgundy {
    border-color: #9d0a0e !important;
}

.burgundy-line {
    width: 60px;
    height: 4px;
    background: #9d0a0e;
    margin-top: 15px;
}

.contact-info-block .bi {
    vertical-align: middle;
}

.form-control:focus {
    border-color: #9d0a0e;
    box-shadow: 0 0 0 0.25rem rgba(157, 10, 14, 0.1);
}

@media (max-width: 991px) {
    .map-wrapper {
        height: 350px !important;
        min-height: auto !important;
    }
}


a .work-card h6 {
    text-decoration: none !important;
}

.work-types-section a {
    text-decoration: none;
}

.work-types-section a:hover {
    cursor: pointer;
}

.work-types-section .work-card:hover {
    cursor: pointer;
}

