.icon-link {
    transition: color 0.3s ease;
}
.icon-link:hover {
    color: #dc3545 !important;
}
.icon-link:hover i {
    color: #dc3545 !important;
}
.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    padding-top: 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
}
.user-dropdown::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}
.user-icon-wrapper:hover .user-dropdown {
    display: block;
}
.user-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}
.user-dropdown a:hover {
    background-color: #f8f9fa;
    color: #dc3545;
}
.user-dropdown a:first-child {
    border-radius: 8px 8px 0 0;
}
.user-dropdown a:last-child {
    border-radius: 0 0 8px 8px;
}
.header-container {
    margin-bottom: 15px;
}
.logo-container a {
    display: inline-block;
}
.title-block {
    margin-bottom: 25px;
}
.title-block__logo {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 0px;
    color: #333;
}
.icon-link {
    transition: color 0.3s ease;
}
.icon-link:hover {
    color: #dc3545 !important;
}
/* Hamburger css */
.hamburger-trigger {
    opacity: 1;
    position: fixed;
    right: 125px;
    width: 52px;
    height: 52px;
    z-index: 999;
    bottom: 10%;
    background-repeat: no-repeat;
    background-position: center 15px;
    background-color: #000000;
    font-size: 9px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1;
    border-radius: 26px;
    transition: all 0.2s ease-out;
    /* <= 768px */
}

@media (max-width: 767px) {
    .hamburger-trigger {
        right: 5px;
    }
}

.hamburger-trigger span {
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
    width: 100%;
    border-radius: 2px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.hamburger-trigger span:first-child {
    top: 1px;
}

.hamburger-trigger span:nth-child(2) {
    top: 7px;
}

.hamburger-trigger span:nth-child(3) {
    top: 13px;
}

.hamburger-wrapper {
    position: relative;
    height: 18px;
    width: 20px;
}

.hamburger-trigger:hover,
.hamburger-trigger:visited,
.hamburger-trigger:focus {
    opacity: 0.8;
    color: #fff;
}


.whatsApp_trigger {
    opacity: 1;
    position: fixed;
    right: 125px;
    width: 52px;
    height: 52px;
    z-index: 999;
    bottom: 20%;
    background-repeat: no-repeat;
    background-position: center 15px;
    font-size: 9px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1;
    border-radius: 26px;
    transition: all 0.2s ease-out;
    /* <= 768px */
}

@media (max-width: 767px) {
    .whatsApp_trigger {
        right: 5px;
    }
}