.header-top {
    height: 35px !important;
}

.header-bottom {
    height: 75px !important;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100% !important;
}

.box {
    display: flex;
    align-items: center;
}

.col-6 {
    width: 50%;
    height: 100%;
}

.bg-primary-dark {
    background-color: #510e7c;
}

.icon {
    width: 18px !important;
}

.icon-hover {
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.icon-hover:hover {
    transform: scale(0.97);
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: end;
}

.align-items-center {
    align-items: center;
}

.d-none {
    display: none !important;
}

.dropdown-toggle {
    background: none;
    outline: none;
    border: none;
    padding: 0;
}

.text-white {
    color: white !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: .25rem !important;
}

.p-2 {
    padding: .5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 2.5rem !important;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.m-0 {
    margin: 0 !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: .25rem !important;
}

.me-2 {
    margin-right: .5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 2.5rem !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: .25rem !important;
}

.ms-2 {
    margin-left: .5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 2.5rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.dropdown-menu {
    width: fit-content !important;
}

.text-xxsm {
    font-size: 12px !important
}

.text-xsm {
    font-size: 14px !important;
}

.text-sm {
    font-size: 16px !important;
}

.text-md {
    font-size: 20px !important;
}

.text-lg {
    font-size: 24px !important;
}

/****** WEBKIT START ******/
.webkit {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webkit-1 {
    -webkit-line-clamp: 1;
}

.webkit-2 {
    -webkit-line-clamp: 2;
}

.webkit-3 {
    -webkit-line-clamp: 3;
}

.webkit-4 {
    -webkit-line-clamp: 4;
}

.webkit-5 {
    -webkit-line-clamp: 5;
}

.webkit-8 {
    -webkit-line-clamp: 8;
}

.text-center {
    text-align: center !important;
}

.abs-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

/****** WEBKIT END ******/


.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}


.link-border {
    display: inline-block;
}

.link-border:after {
    content: '';
    display: block;
    border-bottom: solid 1px;
    transform: scaleX(0);
    transition: transform .3s ease-in-out
}

.link-border:after {
    transform-origin: 100% 50%;
}

.link-border:hover:after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}

.link-p-border:after {
    border-color: #efae00;
}


@media (max-width: 991px) {
    .d-mobile-none {
        display: none !important;
    }
}

.btn-nav {
    transition: all .3s ease-in-out !important;
    border: 0 !important;
    width: 150px !important;
    background-color: #efae00 !important;
    height: 40px !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    outline: none !important;
    text-transform: uppercase;
}

.btn-nav:focus,
.btn-nav:hover {
    background-color: white !important;
    color: #efae00 !important;
}

.bg-gray {
    background-color: #f8f8f8;
}

.bg-white {
    background-color: #fff;
}

.mx-auto {
    margin: 0 auto !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.icon-xl {
    width: 45px !important;
}

@media (max-width: 768px) {

    .navbar-container,
    .navbar-header {
        width: 100% !important;
    }

    .navbar-toggle {
        margin-right: 0 !important;
    }

    .navbar-header {
        margin: 0 !important;
    }

    .collapse {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        z-index: 10000;
        bottom: 0;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .navbar-nav a.d-none-desktop {
        padding: 10px 20px;
        color: white;
    }

    .dropdown.d-flex.align-items-center {
        display: none;
    }

    .search-box.abs-box {
        position: static !important;
    }

    .search-holder {
        margin-bottom: 30px !important;
    }

    .search-box button {
        float: unset;
        margin: 0 auto !important;
    }
}