/* =============== HEAEDER CSS STARTS HERE =============== */

.header {
    padding: 15px;
    position: relative;
    transition: all .2s ease-in-out;
    background-color: rgba(255, 255, 255, 1);
}

.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(242, 229, 229, .5);
    box-shadow: 0 0 10px 0 rgba(242, 229, 229, .5);
    background-color: #fff;
    animation: slide-down .7s;
    z-index: 99;
}

.header .logo-wrap img:nth-child(2) {
    filter: saturate(300%);
    height: 30px !important;
    margin-left: 4px;
}

.header .logo-wrap a img:first-child {
    max-width: 120px;
}

@keyframes slide-down {
    0% {
        opacity: .9;
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-down {
    0% {
        opacity: .9;
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}


.header .header-nav ul li {
    display: inline-block;
    padding: 0;
    position: relative;
    margin-right: 30px;
}

.header .header-nav ul li:last-child {
    margin-right: 0;
    line-height: 0;
}

.header .header-nav ul li a {
    color: #012542;
    display: inline-block;
    font-weight: 500;
    padding: 12px 0;
}

.header .header-nav ul li:last-child a {
    padding: 0;
    line-height: 0;
}

.header-nav .has-dropdown .dropdown a:hover {
    background-color: #eee;
}

.header .header-nav .has-dropdown .dropdown {
    position: absolute;
    top: 43px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    border-radius: 5px;
    padding: 0;
    opacity: 0;
    transition: .2s all ease-in-out;
    transform: translateY(20px);
    width: max-content;
    pointer-events: none;
    border: 1px solid #eee;
    z-index: 9;
}

.header .header-nav .has-dropdown .dropdown.mob-subnav-toggle {
    opacity: 1;
}

.header .header-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    transform: unset;
    pointer-events: all;
}

.header .header-nav .has-dropdown .dropdown li {
    display: block;
    padding: 0;
    margin: 0;
}

.header .header-nav .has-dropdown .dropdown a {
    white-space: nowrap;
    padding: 12px 15px !important;
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px dashed #ebebeb;
}

.header-nav .has-dropdown a img {
    width: 32px;
    padding-right: 0;
    height: 25px;
    object-fit: contain;
}

.header .header-nav .has-dropdown .dropdown li:last-child a {
    border: 0;
}

.header-nav .has-dropdown .dropdown:after,
.header-nav .has-dropdown .dropdown:before {
    bottom: 100%;
    left: 52px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.header-nav .has-dropdown .dropdown.dropdown-models:after,
.header-nav .has-dropdown .dropdown.dropdown-models:before {
    left: 50%;
}

.header-nav .has-dropdown .dropdown.hire-nav:after,
.header-nav .has-dropdown .dropdown.hire-nav:before {
    left: auto;
    right: 5%;
}

.header-nav .has-dropdown .dropdown:before {
    border-color: rgba(238, 238, 238, 0);
    border-bottom-color: #eee;
    border-width: 12px;
    margin-left: -12px;
}

.header-nav .has-dropdown .dropdown:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}

.header-nav .has-dropdown .dropdown:has(.has-sub-dropdown) {
    padding: 0;
}

.header-nav .has-dropdown .dropdown.dropdown-models {
    max-width: 885px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.header .header-nav .has-dropdown:hover .dropdown.dropdown-models {
    transform: translate(-38%);
}

.header-nav .has-dropdown .business-model-dropdown .dropdown {
    position: unset;
    border: 0;
    box-shadow: unset;
    display: flex;
    flex-wrap: wrap;
}

.header-nav .has-dropdown .dropdown.dropdown-models li {
    padding: 0;
    width: 123px;
    vertical-align: top;
    flex: 1 1 auto;
}

.header-nav .has-dropdown .dropdown.dropdown-models li:nth-child(8) a,
.header-nav .has-dropdown .dropdown.dropdown-models li:nth-child(9) a,
.header-nav .has-dropdown .dropdown.dropdown-models li:nth-child(10) a,
.header-nav .has-dropdown .dropdown.dropdown-models li:nth-child(11) a,
.header-nav .has-dropdown .dropdown.dropdown-models li:nth-child(12) a,
.header-nav .has-dropdown .dropdown.dropdown-models li:nth-child(13) a,
.header-nav .has-dropdown .dropdown.dropdown-models li:nth-child(14) a {
    border: 0;
}

.header-nav .has-dropdown .dropdown.dropdown-wide li {
    width: 100%;
}

.header-nav .has-dropdown .dropdown.dropdown-mega {
    width: 250px !important;
}


.business-model-dropdown {
    position: absolute;
    top: 44px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    border-radius: 5px;
    opacity: 0;
    transition: .4s all ease-in-out;
    transform: translateY(20px);
    width: max-content;
    pointer-events: none;
    overflow: hidden;
}

.header-nav .has-dropdown a i {
    padding-left: 5px;
    font-size: 14px;
    font-weight: bold;
}

#hamburger {
    background-color: transparent;
    border: 0;
    display: none;
    height: 2.5rem;
    width: 2.5rem;
    cursor: pointer;
    z-index: 1;
    flex-flow: column wrap;
    justify-content: space-between;
}

#hamburger .bar-bottom,
#hamburger .bar-middle,
#hamburger .bar-top {
    height: 5px;
    background: #0000ab;
    border-radius: 5px;
    margin: 3px 0;
    transform-origin: left;
    transition: all .3s;
    width: 2.5rem;
}

#hamburger .bar-middle {
    width: 80%;
    margin-left: auto;
}

#hamburger.open .bar-top {
    transform: rotate(45deg);
}

#hamburger.open .bar-middle {
    transform: translateX(-1rem);
    opacity: 0;
}

#hamburger.open .bar-bottom {
    transform: rotate(-45deg);
}

.header-nav .has-sub-dropdown {
    position: relative;
}

.header-nav .has-sub-dropdown:hover .sub-dropdown {
    opacity: 1;
    transform: translateX(100%);
    pointer-events: all;
}

.header-nav .has-sub-dropdown .sub-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 1.5rem 1rem 4rem rgb(124 124 124 / 18%);
    border-radius: 5px;
    padding: 0px;
    opacity: 0;
    transition: .2s all ease-in-out;
    transform: translateX(110%);
    width: max-content;
    pointer-events: none;
    border: 1px solid #eee;
}

.header-nav .has-sub-dropdown .sub-dropdown li a {
    white-space: nowrap;
    padding: 12px 15px !important;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    font-size: 16px;
    border-bottom: 1px dashed #ebebeb;
    height: 50px;
}

.header-nav .has-sub-dropdown .sub-dropdown li:last-child a {
    border: 0;
}

.header-nav .has-dropdown .dropdown.dropdown-mega {
    max-width: 1150px;
    left: unset;
    right: 0;
    width: 1150px !important;
    padding: 0;
}

.header-nav .has-dropdown .dropdown.dropdown-mega li {
    display: inline-flex;
    padding: 0;
    width: 24%;
    vertical-align: top;
}


/* =============== HEAEDER CSS ENDS HERE =============== */


/* =============== FOOTER CSS STARTS HERE =============== */

.footer-row {
    background: #27104c;
    padding: 50px 0 30px;
}

.footer-row h4 {
    margin-bottom: 25px;
    font-weight: 500;
    margin-top: 0;
    color: #fff;
}

.footer-address-list li {
    color: #6a6a8e;
    display: block;
    padding: 0;
}

.footer-address-list li a {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.link-hover a {
    display: inline-block;
    padding: 0;
    position: relative;
    overflow: hidden;
    -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    -o-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    z-index: 1;
}

.link-hover a::after {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    -o-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    background: currentColor;
}

.link-hover a:hover {
    color: #689ffb !important;
}

.link-hover a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.ftr-details li {
    padding: 0 0 15px;
    display: flex;
    align-items: start;
    gap: 5px;
}

.footer-address-list li>span {
    position: relative;
    top: 5px;
}

.footer-address-list li i {
    margin: 0;
    display: initial;
    font-size: 16px !important;
    color: #fff;
}

.footer-address-list li p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-address-list li p span {
    display: flex;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin-top: 2px;
    line-height: 1.8;
}

.footer-brands {
    background: #27104c;
}

.award-footer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.40);
}

.footer-badges {
    display: flex;
    justify-content: end;
}

.footer-badges img {
    width: 100px;
}


.footer-bottom-row {
    background: #27104c;
}

.footer-bottom-row .copyright {
    border-top: 1px solid #ffffff6b;
    padding: 10px 0;
}


.copyright-text p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}

.copyright-text a {
    font-size: 16px;
    color: #2998ff;
}

.footer-social-media-icons a {
    color: #fff;
    font-size: 16px;
    border-radius: 32px;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: 1px solid #fff;
}

.footer-social-media-icons a:hover {
    color: #1b37c9 !important;
    background: #fff;
}

/* =============== FOOTER CSS ENDS HERE =============== */

/* =============== HEADER & FOOTER RESPONSIVE CSS STARTS HERE =============== */

@media (max-width: 1400px) {
    .header-nav .has-dropdown .dropdown.dropdown-mega {
        max-width: 1000px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header .header-nav ul li {
        margin-right: 10px !important;
    }

    .header-nav .has-dropdown a i {
        padding-left: 4px;
    }

    .header {
        padding: 15px 0;
    }

    .header .header-nav ul li a {
        font-size: 14px;
    }

    .header .logo-wrap a img:first-child {
        max-width: 100px;
    }

    .header .logo-wrap img:nth-child(2) {
        margin-left: 0;
    }
}

@media (max-width: 990.99px) {
    .menu-mob {
        gap: 0px;
        flex-direction: column;
        justify-content: start;
        align-items: start !important;
        text-align: start;
    }

    .header-nav.open {
        transform: translateX(0);
        padding: 80px 0px 20px;
        z-index: 999;
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        height: 100%;
        min-height: calc(100vh - 0px);
        width: 100vw;
        transform: translateX(110%);
        transition: all .25s ease-in-out;
        z-index: 7;
        display: none;
    }

    #hamburger {
        display: flex;
        z-index: 1001;
    }

    .header .header-nav ul li {
        margin-right: 0;
        width: 100%;
    }

    .header .header-nav ul li a {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px;
        border-top: 1px dashed #ebebeb;
    }

    .has-dropdown>.dropdown {
        display: none;
        position: absolute;
        background: #fff;
        min-width: 260px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .has-dropdown:hover>.dropdown {
        display: block;
    }

    .dropdown li {
        white-space: nowrap;
    }

    .header-nav .has-dropdown .dropdown.mob-subnav-toggle {
        display: block !important;
        opacity: 1 !important;
        position: static;
        width: 100%;
        box-shadow: none !important;
        border-radius: 0;
        border: 0;
        transform: none !important;
    }

    .header-nav .has-sub-dropdown.toggled .sub-dropdown {
        display: block !important;
        padding-left: 30px !important;
    }

    .header-nav .has-sub-dropdown.toggled::after {
        transform: rotate(-90deg);
    }

    .header .header-nav .has-dropdown:hover .dropdown.dropdown-models {
        transform: translate(0%);
    }

    .header-nav .has-dropdown .dropdown.dropdown-models li {
        padding: 0;
        width: 100%;
        vertical-align: top;
        flex: 1 1 auto;
    }

    .rotate-180 {
        transform: rotate(180deg);
        padding-right: 15px
    }

    .header-nav .has-dropdown .dropdown.dropdown-models {
        max-width: 100%;
    }

    .header {
        padding: 15px 0;
    }

    .header-nav .has-dropdown .dropdown {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        opacity: 1;
        pointer-events: all;
        width: 100%;
    }

    .footer-row h4 {
        margin-bottom: 25px;
        margin-top: 30px;
    }

    .header .header-nav .has-dropdown:hover .dropdown {
        opacity: 0;
        transition: none !important;
    }

    .header .header-nav ul li:last-child a span {
        width: 100%;
    }

    .header .header-nav ul li:last-child a {
        padding: 15px;
    }

    .header .header-nav .has-dropdown .dropdown a {
        flex-direction: row-reverse;
        border-top: 0;
    }

    .header-nav .has-dropdown .dropdown:before,
    .header-nav .has-dropdown .dropdown:after {
        display: none;
    }

    .header-nav .has-sub-dropdown {
        position: relative;
    }

    .header-nav .has-sub-dropdown .sub-dropdown {
        width: 100%;
        padding-right: 0;
        position: relative;
        top: unset;
        right: unset;
        opacity: 1;
        transform: unset !important;
        box-shadow: none;
        border: 0;
        padding-top: 0 !important;
        display: none !important;
    }

    .header .header-nav .has-dropdown .dropdown li:last-child a {
        height: 50px;
    }

    .header-nav .has-dropdown .dropdown.dropdown-mega li {
        width: 100%;
    }
}


/* =============== HEADER & FOOTER RESPONSIVE CSS ENDS HERE =============== */