/*Start Navbar*/
.navbar-nav .nav-item .nav-link {
    margin: 5px 14px;
    transition: 0.3s;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    color: #333333;
    font-weight: 600;
}
header{
    border-bottom:1px solid #e60202;
}
.logo-text{
    font-size: 26px;
    color: #e60202;
    font-weight: 700;
}
.navbar-nav .nav-item button.nav-link {
    border: none;
    background-color: transparent;
}

.nav-item .dropdown-menu {
    width: 100%;
    background: #e60202;
}

.nav-item .dropdown-menu .dropdown-item {
    color: #fff;
}

.nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #e60202;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #e60202;
    border-bottom: 2px solid #e60202;
}

.social-foot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5e178b;
}

.social-foot svg {
    width: 20px;
    fill: #fff;
}

@media(max-width:991px) {
    .navbar-nav .nav-item .nav-link {
        margin: 5px 14px;
        padding: 2px 0;
    }
}

.get-in-touch-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    border: 1px solid #ccc;
    padding: 4px 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.5s;
}

.get-in-touch-link:hover {
    background: #e60202;
    color: #fff;
    border: none;
    border-radius: 0px;
}

.get-in-touch-link:hover svg {
    fill: #fff;
    transform: rotate(0deg);
}

.get-in-touch-link svg {
    width: 13px;
    fill: #626060;
    transform: rotate(-40deg);
    transition: all 0.5s;
}