/* Base styles (reset, html/body, typography, etc.) */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-colored {
    width: 100vw;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
}

.top-bar-bg {
    width: 100%;
    background: #125875;
    position: relative;
    min-height: 56px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.top-bar-bg::before {
    content: "";
    height: 100%;
    position: absolute;
    width: 32%;
    background: #ff7350;
    top: 0;
    z-index: 0;
    left: -25px;
    transform: skew(30deg);
}

.row {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.col-md-4.top-bar-left-colored {
    background: #ff7350;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 32px 0 24px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
    min-width: 320px;
    height: 56px;
}

.col-md-8.top-bar-right {
    background: #125875;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 32px;
    height: 56px;
    position: relative;
    z-index: 1;
}

.top-bar-left span {
    margin-right: 10px;
}
.top-bar-left a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
}
.top-bar-right span {
    margin-left: 20px;
    font-size: 15px;
    white-space: nowrap;
}
.top-bar-right i {
    margin-right: 5px;
}
.top-bar-right b {
    font-weight: 700;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}
.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.contact-icon {
    height: 32px;
    width: 32px;
    margin-top: 2px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-label {
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
}
.contact-value {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
}
.contact-value a {
    color: #fff;
    text-decoration: none;
}
.contact-value a:hover,
.contact-value a:focus {
    color: #fff;
    text-decoration: underline;
}
.breadcrumb-item+.breadcrumb-item::before{
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
}

@media (min-width: 1200px) {
    header .top-bar-colored .container,
    header nav .container {
        max-width: 1260px;
    }
}

@media (min-width: 1400px) {
    header .top-bar-colored .container,
    header nav .container {
        max-width: 1400px;
    }
}

@media (max-width: 768px) {
    .row {
        align-items: flex-start;
    }
    .col-md-4.top-bar-left-colored,
    .col-md-8.top-bar-right {
        width: 100%;
        min-width: unset;
        clip-path: none;
        margin-left: 0;
        padding: 8px 16px;
        justify-content: flex-start;
        height: auto;
    }
    .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .contact-block {
        gap: 8px;
    }
}

/* Remove background and ::before from .top-bar-colored */
