body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #353535 !important;
    z-index: 2;
    color: #fff;
}

.main-heading {
    color: #fff;
}

.logoImg {
    max-width: 300px;
    height: 100%;
}

.navbar,
.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}

.brand {
    font-weight: bolder;
    font-size: 1.5em;
}

.brand:hover {
    font-weight: bolder;
    color: #428aff;
}

button {
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    background: #428aff;
    padding: 0.5em 1.3em;
    border-radius: 16px;
    color: #fff;
}

.btn:hover {
    background: #3877db;
}

.menu-btn {
    margin-left: 1em;
    background: none;
    display: inline-block;
}

.menu-btn span {
    font-size: 2.3em;
}

.dropdown>div,
.sub-dropdown>div {
    cursor: pointer;
}

.dropdown .menu a:hover,
.active {
    color: #922020;
}


/* .search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: #22a6b3;
    padding-right: 40px;
    color: #fff;
}

.input-search::placeholder {
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}

.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #ffffff;
    background-color: transparent;
    pointer-events: painted;
}

.btn-search:focus~.input-search {
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.input-search:focus {
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
} */


/* background-image: url(https://wp-themes.com/wp-content/themes/twentythirteen/images/search-icon.png); */

.search-field {
    background-color: transparent;
    background-image: url("../images/main/search.png");
    background-position: 5px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: none;
    cursor: pointer;
    height: 40px;
    margin: 3px 0;
    padding: 0 0 0 34px;
    position: relative;
    -webkit-transition: width 400ms ease, background 400ms ease;
    transition: width 400ms ease, background 400ms ease;
    width: 0px;
    cursor: pointer;
}

.search-field:focus {
    background-color: #000;
    border: 2px solid #c3c0ab;
    cursor: text;
    outline: 0;
    width: 250px;
    color: #fff;
}

.search-form .search-submit {
    display: none;
}

li>h3 {
    color: #e44026;
    text-transform: uppercase;
    text-decoration: underline;
}

.menu-container {
    text-transform: uppercase;
}

@media screen and (min-width: 800px) {
    .navbar {
        padding: 0 1.5em;
        color: #fff;
    }
    .logoImg {
        width: 100%;
        height: 100%;
    }
    .navbar-brand>img {
        width: 100%;
        height: 100%;
    }
    .dropdown>div {
        padding: 1.5em 1em;
    }
    .mega-menu {
        display: flex;
        justify-content: center;
    }
    .menu-btn {
        display: none;
    }
    .menu {
        background: #dad5d5;
        position: absolute;
        top: 5em;
        left: 0;
        width: 100%;
        padding: 0 2em;
        overflow-y: scroll;
        transition: 0.4s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 2em;
    }
    /* .menu > li:first-child{
        font-size: 1.1em;
        font-weight: bold;
        margin: 0;
    } */
    .sub-dropdown>div span:first-child {
        font-weight: bold;
    }
    .dropdown>div {
        border-bottom: 3px #353535 solid;
        transition: 0.3s;
    }
    .dropdown:hover>div {
        border-color: #d41717;
    }
    .dropdown li {
        margin-bottom: 1em;
    }
    .dropdown>div span:last-child,
    .sub-dropdown>div {
        display: none;
    }
    /* Width */
    .menu::-webkit-scrollbar {
        width: 8px;
    }
    /* Track */
    .menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    /* Handle */
    .menu::-webkit-scrollbar-thumb {
        background: #888;
    }
    /* Handle on hover */
    .menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    /* Hide menu */
    .menu {
        height: 0;
    }
    .dropdown:hover .menu {
        height: 60vh;
        padding: 2em;
    }
}


/* Responsive Design */

@media screen and (max-width: 800px) {
    .navbar {
        padding: 6px 15px;
        color: #606060;
        display: flex;
        gap: 0px !important;
    }
    .navbar .buttons {
        gap: 0px;
        align-items: flex-end;
    }
    .search-form {
        margin-left: 40px;
    }
    .main-heading {
        color: #ffffff !important;
    }
    li>h3 {
        display: none;
    }
    .navbar-brand {
        margin-right: 0px !important;
        display: inline-block;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-right: 0px !important;
        font-size: 0px !important;
        line-height: inherit;
        white-space: nowrap;
    }
    .logoImg {
        width: 100%;
        height: 100%;
        max-width: 230px;
    }
    .menu-container {
        background: #fff;
        position: absolute;
        top: 4.2em;
        left: 0;
        width: 100%;
        overflow-y: hidden;
        transition: 0.3s ease-in-out;
    }
    .onlyNav {
        display: none;
    }
    /* Width */
    .mega-menu::-webkit-scrollbar {
        width: 8px;
    }
    /* Track */
    .mega-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    /* Handle */
    .mega-menu::-webkit-scrollbar-thumb {
        background: #888;
    }
    /* Handle on hover */
    .mega-menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    .mega-menu {
        padding: 0 1em 1em 1em;
        height: 100%;
        overflow-y: scroll;
    }
    .mega-menu li {
        font-weight: bold;
        font-size: 1.1em;
    }
    .mega-menu li>div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5em;
    }
    .menu li {
        padding: 0 1em;
        font-size: 1em;
        font-weight: 400;
    }
    .menu a {
        display: block;
        margin: 0.8em 0;
    }
    .menu {
        display: none;
    }
    /* Toggle class for Javascript */
    .menu-show {
        display: block;
    }
    .material-symbols-outlined {
        transition: 0.3s;
    }
    /* Toggle class for javascript */
    .icon-rotated {
        transform: rotate(90deg);
    }
    .dropdown>div,
    .sub-dropdown>div {
        cursor: pointer;
        padding: 0.5em;
    }
    .sub-menu {
        font-size: 0.9em;
        display: none;
    }
    /* Toggle class for Javascript */
    .sub-menu-show {
        display: block;
    }
    .dropdown:hover>div,
    .sub-dropdown:hover>div {
        background: #dbdbdb;
    }
    /* Hide menu */
    .menu-container {
        height: 0;
    }
    /* Toggle class for javascript */
    .mega-menu-show {
        height: 50vh;
    }
}