.banner-section-four h2 {
    opacity: 1!important;
    visibility: inherit;
}

.banner-section-four p {
    opacity: 1;
}

.banner-section-four .btn-style-three {
    opacity: 1;
}

.fw-extrabold {
    font-weight: 800;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: 400;
    margin: 0px 0px 20px;
    background: none;
    line-height: 1.25em;
    font-family: var(--thm-font);
    color: var(--thm-black);
}

.my-h3 {
    color: #fff;
    font-size: 34px;
    line-height: 36px;
    font-weight: 800;
}

.my-p {
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.call-to-section-three {
    background-color: rgba(0, 0, 0, 0.5);
}

.color-base {
    color: #ffa300!important;
}

.line-height-initial {
    line-height: initial;
}

@media only screen and (max-width: 599px) {
    .header-style-seven .topbar-four {
        display: block;
    }
}

@media only screen and (max-width: 599px) {
    .header-style-seven .header-upper {
        margin-top: 44px;
    }
}

@media only screen and (max-width: 479px) {
    .main-header .header-upper .inner-container {
        display: block;
    }
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem!important;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem!important;
}

.g-1, .gy-1 {
    --bs-gutter-y: 1.5rem!important;
}

.g-1, .gx-1 {
    --bs-gutter-x: 1.5rem!important;
}

.g-2, .gy-2 {
    --bs-gutter-y: 3rem!important;
}

.g-2, .gx-2 {
    --bs-gutter-x: 3rem!important;
}

.g-3, .gy-3 {
    --bs-gutter-y: 4.5rem!important;
}

.g-4, .gy-4  {
    --bs-gutter-y: 6rem!important;
}

.g-4, .gx-4 {
    --bs-gutter-x: 6rem!important;
}


.main-header .header-upper .logo-box .logo img {
    max-height: 72px;
}

a {
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: #ffffff;
}

.call-to-section-three .jarallax-img {
    mix-blend-mode: luminosity;
    opacity: 1;
    filter: brightness(50%);
}

.dark-bg {
    background-color: #eff1f4;
    padding-top: 90px;
    padding-bottom: 90px;
}

.simple-bg {
    padding-top: 90px;
    padding-bottom: 90px;
}

.header-upper {
    scroll-margin-top: 152px;
}

.contacts-a {
    transition: color 0.3s ease, transform 0.2s ease;
}

.contacts-a:hover {
    color: #ffa300!important;
}

.contacts-icons {
    transition: color 0.3s ease, transform 0.2s ease;
}

.contacts-icons:hover {
    transform: scale(1.1);
    color: #ffa300!important;
}

.chat-widget {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 1000;


    @media (max-width: 425px) {
        bottom: 20px;
        right: 20px;
    }
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffa300;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    position: relative;
    animation: buttonBounce 1s ease-in-out infinite;
}

.chat-button.no-animation {
    animation: none;
}

.chat-button.no-animation::before {
    display: none;
}

.chat-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffa300;
    opacity: 0.6;
    animation: pulse 2s ease-out infinite;
}

.chat-button:hover {
    animation-play-state: paused;
}

.chat-button:hover::before {
    animation-play-state: paused;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes buttonBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.chat-container {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header {
    background-color: #ffa300;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chat-messages {
    height: calc(100% - 130px);
    overflow-y: auto;
    padding: 15px;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}

.user {
    background-color: #e5e7eb;
    margin-left: auto;
    line-height: 1.5;
}

.bot {
    background-color: #ffa300;
    color: white;
    line-height: 1.5;
}

.chat-input {
    height: fit-content;
    display: flex;
    padding: 10px;
    border-top: 1px solid #e5e7eb;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 5px 15px;
    margin-right: 10px;
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffa300;
    color: white;
    border: none;
    cursor: pointer;
}

.typing-indicator {
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background: #2563eb;
    border-radius: 50%;
    margin: 0 2px;
    display: inline-block;
    animation: bounce 1.3s linear infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -1.1s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: -0.9s;
}

@keyframes bounce {
    0%,
    60%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-4px);
    }
}

@media only screen and (max-width: 599px) {
    .header-style-seven .header-upper {
        margin-top: 44px;
        transition: margin-top 0.3s ease;
    }
}

.main-header .header-upper.header-blacked {
    background: #171717;
}

.fixed-header .header-upper {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #e5e7eb;
    background: white!important;
}

.color-blue {
    color: #016FB9;
}

.nav-link.active {
    color: #ffa300 !important;
}

.header-style-seven .header-upper {
    border-bottom: 1px solid transparent;
}

.fixed-header .header-upper li a {
    color: #000!important;
}

.header-upper li.current a {
    color: #016FB9 !important;
}

.header-style-seven .topbar-four {
    background-color: #00253D;
}

.project-image {
    object-fit: cover;
    height: 330px;
    width: 100%;
}

.dropdown-item {
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgb(255, 163, 0, 0.4);
}

a:hover {
    color: #ffa300;
}

.hover-underline:hover {
    text-decoration: underline;
}

.ui-menu .ui-menu-item-wrapper {
    font-size: 14px;
}

/* .form-group .ui-selectmenu-button.ui-button {
    height: fit-content;
    padding-top: 0px!important;
    padding-bottom: 0px!important;
} */

.my-form-select {
    font-size: 14px;
    color: #686a6f;
    line-height: 40px;
    font-weight: 400;
    background-color: #f4f5f8!important;
    border: 1px solid #f4f5f8!important;
    border-radius: 7px;
    transition: all 300ms ease;
}

.my-form-select:focus {
    box-shadow: none!important;
    border-color: #016FB9!important;
}

.breadcrumb-section {
    margin-top: 210px;
    @media (max-width: 1200px) {
        margin-top: 170px;
    }
}

.fw-400 {
    font-weight: 400!important;
}

.fw-500 {
    font-weight: 500!important;
}

.btn-style-three:hover {
    color: #ffa300;
    background-color: #016FB9;
    box-shadow: 0 0 10px 0 rgba(1, 111, 185, 0.9);
}

.btn-style-one {
    background-color: #ffa300;
}

.btn-style-one:hover {
    background-color: #ffa300;
}

.banner-section-four .auto-container {
    padding-bottom: 300px;
}

#projects {
    background-image: url('images/map.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.2) contrast(0.9);
}



.bg-semi-grey {
    background-color: #f5f5f5;
}


.block-img {
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}

.bottom-block {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}