.header {
    padding: 0;
    float: left;
    width: 100%;
    position: fixed;
    top: 20px;
    /* top: 0; */
    left: 0;
    z-index: 123;
}

.header.header-style-4 {
    padding-top: 0;
}

.header .main-header {
    padding: 0px 15px;
    /* padding: 10px 15px; */
    position: relative;
    width: 100%;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
}

@media (max-width: 1200px) {
    .header .main-header {
        padding: 8px 12px;
    }
}

header ul,
header ol {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

.header .main-header,
.header .main-header .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .main-header .header-left {
    width: 150%;
}

.header .main-header .header-left .header-logo {
    margin-right: 30px;
}

.header .main-header .header-left .header-logo img {
    width: 180px;
}

@media (max-width: 575.98px) {
    .header .main-header .header-left .header-logo {
        margin-right: 0px;
        height: auto;
        width: 180px;
        /* height: 70px; */
    }

    .header .main-header .header-left .header-logo img {
        margin-top: 3%;
        width: 100%;
        height: auto;
    }
    .header .main-header .header-right {
        min-width: auto !important;
    }
}

.header .main-header .header-right {
    /* width: 30%; */
    min-width: 180px;
    text-align: right;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}

.header .nav-main-menu {
    display: inline-block;
    width: 100%;
    padding: 0;
}

.header .main-menu li {
    float: left;
    position: relative;
    padding: 0 15px;
    /* padding: 0 25px; */
    list-style-type: none;
}

.header .main-menu li.has-children > a:after {
    content: "";
    height: 10px;
    width: 10px;
    background: url(../images/arrow-up.svg) no-repeat 50%;
    opacity: 1;
    margin-left: 0;
    position: absolute;
    top: 33px;
    /* top: 44px; */
    right: 0;
}

.header .main-menu li.has-children > a:hover:after {
    background: url(../images/arrow-up-hover.svg) no-repeat 50%;
}

.header .main-menu li.hr {
    padding: 0 22px;
}

.header .main-menu li.hr span {
    background-color: #ececec;
    height: 1px;
    width: 100%;
    display: block;
    margin: 5px 0;
}

.header .main-menu li a {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: var(--white-color);
    display: block;
    padding: 27px 18px;
    /* padding: 37px 18px; */
    text-decoration: none;
    position: relative;
}

.header .main-menu li.no-children {
    padding: 0 10px;
}
.header .main-menu li.no-children a {
    padding: 27px 8px;
    /*padding: 27px 10px;*/
}

.header .main-menu li a:hover {
    color: var(--primary-color-light-1);
}

.header .main-menu li a i {
    font-size: 10px;
    opacity: 0.5;
    margin-left: 3px;
}

.header .main-menu li ul {
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.2s;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 8px 18px -4px rgba(12, 49, 49, 0.1);
    padding: 20px 0;
    list-style-type: none;
}

.header .main-menu li ul.sub-menu {
    background-color: #1e1e1e;
    border: 1px solid #2b2c2d;
}

.header .main-menu li ul li {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.header .main-menu li ul li a {
    font-size: 14px;
    color: #898a8a;
    position: relative;
    padding: 0px;
    transition: 0.3s;
    font-family: var(--body-font);
    font-weight: 400;
    display: inline-block;
    /* min-width: 182px */
    width: 95%;
}

.header .main-menu li p a {
    font-size: 20px;
    color: white;
    position: relative;
    padding: 0px;
    transition: 0.3s;
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    min-width: 182px;
}

.header .main-menu li ul li a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    transition-duration: 0.2s;
    background: url(/_next/static/media/arrow-up-grey.e7fd9842.svg) no-repeat 100%;
}

.header .main-menu li ul li a:hover {
    transition: 0.5s;
    color: var(--primary-color-light-1);
}

.header .main-menu li ul li a:hover:after {
    opacity: 1;
    transition-duration: 0.3s;
    background: url(/_next/static/media/arrow-up-hover2.1743f1ea.svg) no-repeat 100%;
}

.header .main-menu li ul li ul {
    list-style-type: none;
    top: 0;
    left: 100%;
}

.header .main-menu li.mega-li {
    position: static;
}

.header .main-menu li.mega-li .mega-menu {
    position: absolute;
    top: 100%;
    left: 10%;
    width: 90%;
    /* width: 80%; */
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}

.header .main-menu li.mega-li:hover .mega-menu {
    display: block;
}

.header .main-menu li.mega-li:hover > a,
.header .main-menu li.mega-li:hover > a::after {
    color: var(--primary-color-light-1);
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner {
    max-width: 1125px;
    margin: auto;
    border: 1px solid #2b2c2d;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 8px 18px -4px rgba(12, 49, 49, 0.1);
    background-color: #171717;
    position: relative;
    background-image: url(/_next/static/media/Mask\group\\top\left\right.svg);
    background-repeat: no-repeat;
    background-size: 20%;
    padding-bottom: 0 !important;
    background-position: 100% 0%;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner h6 {
    color: var(--white-color);
    /* color: var(--primary-color-light-1); */
    font-weight: 500;
    font-size: 18px;
    /* font-size: 20px; */
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner h6 a{
    line-height: 1.2;
    padding: 0;
    font-size: inherit;
    transition: 0.2s all ease-in-out;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul {
    display: inline-block;
    box-shadow: none;
    padding: 0;
    border: 0;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
    min-width: 100%;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li {
    padding: 0;
    /* margin-bottom: 12px */
    margin-bottom: 5px;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a {
    padding: 0;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a:hover {
    color: var(--primary-color-light-1);
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a:after {
    display: none;
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

.header .main-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header .main-menu li:hover > ul li {
    width: 100%;
}

.header .main-menu li:hover.mega-li .mega-menu {
    display: block;
}

.header.header-style-5 .top-bar {
    margin-bottom: 0;
}

.header.stick {
    padding: 0;
}

.header.header-6 {
    padding: 15px 0;
}

.header.header-6.stick {
    padding: 10px 0;
    background-color: #f4f6f9;
    border-bottom-color: #eceef2;
}

.box-desc-menu {
    border-radius: 8px;
    background-color: #1e1e1e;
    padding: 14px;
    margin-top: 0px;
}

.box-desc-menu p {
    color: #898a8a;
}

.sticky-bar.stick {
    animation: fadeInDown 0.7s ease-in-out 0s 1 normal none running;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    transition: all 0.3s ease 0s;
}

.sticky-bar.stick .burger-icon {
    top: px;
}

.sticky-bar.stick.header-style-2 {
    background-color: var(--white-color);
    border-bottom-color: #eceef2;
}

.sticky-bar.stick.header-style-2 .top-bar {
    display: none;
}

.user-account {
    display: flex;
    align-items: center;
}

.user-account img {
    max-width: 220px;
    /* max-width: 100px; */
    margin-right: 10px;
}

.user-account .user-name {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
}

/* .perfect-scroll {
    height: 100vh;
    width: 100%;
    position: relative
} */
body.overlay-visible {
    height: 100vh !important;
    overflow: hidden !important;
}
.body-overlay-1 {
    /* background: transparent; */
    backdrop-filter: blur(1px) saturate(180%);
    -webkit-backdrop-filter: blur(1px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
    cursor: crosshair;
    z-index: 997;
    height: 100vh;
}

body.overlay-visible .body-overlay-1 {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1200px) {
    body.overlay-visible .body-overlay-1,
    .mobile-header-wrapper-style {
        display: none !important;
    }
    body.overlay-visible {
        height: 100% !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
}
.form-search {
    position: absolute;
    top: 100%;
    right: 50%;
    width: 100%;
    max-width: 350px;
    z-index: 1234;
    padding: 5px;
    display: none;
    border-radius: 8px;
    border: 1px solid #eceef2;
    box-shadow: 0 8px 18px -4px rgba(12, 49, 49, 0.1);
    background-color: var(--white-color);
}

.form-search.dark {
    background-color: #1e1e1e;
    border: 1px solid #2b2c2d;
}

.form-search.dark .form-control {
    border: 1px solid #434445;
    border-radius: 8px;
    background-color: #1e1e1e;
    padding: 11px 15px 13px;
    width: 100%;
    color: #727373;
}

.form-search.dark .btn-search-2 {
    background-color: transparent;
}

.form-search.dark p.color-white {
    color: #d1d3d4;
}

.form-search .form-control {
    height: 46px;
    line-height: 1;
    padding: 10px 15px 10px 20px;
}

.form-search .btn-search-2 {
    position: absolute;
    top: 20px;
    right: 21px;
    width: 56px;
    height: 46px;
    background: url(/_next/static/media/search.3f57704f.svg) no-repeat 50%;
    background-color: #1e1e1e;
    border: 0;
    border-radius: 0 8px 8px 0;
}

.popular-keywords a {
    color: #898a8a;
}

.popular-keywords a:hover {
    color: var(--primary-color-light-1);
}

.mobile-header-wrapper-style {
    position: fixed;
    top: 0;
    max-width: 380px;
    width: 100%;
    min-height: 100vh;
    bottom: 0;
    right: -500px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--white-color);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
    z-index: 1006;
}

.mobile-header-wrapper-style.sidebar-visible {
    visibility: visible;
    opacity: 1;
    right: 0;
    transform: translate(0);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
    padding: 0 0 30px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .burger-icon {
    /* top: 25px;
    right: 30px; */
    top: 25px;
    right: 30px;
    font-size: 24px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 14px 15px 10px;
    /* padding: 14px 20px 10px; */
    /* padding: 34px 30px 30px; */
    background-color: var(--white-color);
    align-items: center;
    align-self: center;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a {
    display: block;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
    width: 100px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
    /* padding: 30px */
    padding: 0 15px 20px;
    /* padding: 0 20px 20px; */
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
    display: block;
    position: relative;
    padding: 13px 0;
}

ul.mobile-menu {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.hr {
    display: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
    border-bottom: none;
    padding-bottom: 5px !important;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand {
    right: 0;
    position: absolute;
    cursor: pointer;
    z-index: 9;
    text-align: center;
    font-size: 12px;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 38px;
    top: 5px;
    color: #191919;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand i {
    font-size: 18px;
    font-weight: 500;
    opacity: 1;
    /* opacity: .5 */
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active > .menu-expand {
    background: hsla(0, 0%, 100%, 0.2);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active > .menu-expand i:before {
    content: "\f113";
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
    font-size: 18px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
    transition-duration: 0.2s;
    width: 100%;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a:hover {
    color: var(--primary-color);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
    margin-right: 5px;
    font-size: 10px;
    color: var(--primary-color) !important;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
    padding: 10px 0 0 0px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li {
    padding: 5px 0 10px;
    /* padding: 10px 0; */
    border-bottom: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children .menu-expand {
    top: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a {
    padding-left: 11px;
    transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a:before {
    opacity: 1;
    transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
    font-size: 15px;
    /* font-size: 16px; */
    display: block;
    font-weight: 400;
    /* font-weight: 500; */
    color: var(--black-color-1);
    padding-left: 10px;
    /* padding-left: 15px; */
    position: relative;
    transition-duration: 0.2s;
    display: flex;
    align-items: center;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color-light-1);
    border-radius: 50%;
    opacity: 0.7;
    transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
    margin-top: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children.active {
    padding-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover > a {
    color: var(--primary-color-light-1);
    padding-left: 3px;
    transition-duration: 0.2s;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .categories-dropdown-wrap ul li a {
    padding: 5px 15px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap {
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ececec;
    margin: 17px 0 30px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info {
    position: relative;
    margin-bottom: 13px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
    margin-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: #191919;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover {
    color: var(--primary-color-light-1);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a i {
    font-size: 14px;
    color: var(--primary-color-light-1);
    margin-right: 8px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
    margin-top: 5px;
    display: none;
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0 0;
    width: 100%;
    z-index: 11;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
    padding-bottom: 10px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
    padding-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.7);
    font-weight: 400;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
    color: var(--primary-color-light-1);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover > a {
    color: #191919;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .site-copyright {
    font-size: 13px;
    color: #434445;
}

.burger-icon {
    position: absolute;
    width: 24px;
    height: 20px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    /* top: 15px; */
    top: 22px;
    right: 15px;
    z-index: 999999;
    display: none;
}

.burger-icon > span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
}

.burger-icon > span.burger-icon-top {
    top: -22px;
}

.burger-icon > span.burger-icon-bottom {
    bottom: 22px;
}

.burger-icon > span.burger-icon-mid {
    top: -13px;
}

.burger-icon.burger-close > span.burger-icon-top {
    display: none;
    opacity: 0;
}

.burger-icon.burger-close > span.burger-icon-mid {
    top: 8px;
    transform: rotate(45deg);
}

.burger-icon.burger-close > span.burger-icon-bottom {
    bottom: 10px;
    transform: rotate(-45deg);
}

.burger-icon > span:after,
.burger-icon > span:before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #333;
}

.sidebar-visible .burger-icon.burger-icon-white > span:after,
.sidebar-visible .burger-icon.burger-icon-white > span:before {
    background-color: #1e1e1e;
}

.burger-icon.burger-icon-white > span:after,
.burger-icon.burger-icon-white > span:before {
    background-color: #d1d3d4;
}

.sidebar-visible .burger-icon.burger-icon-black > span:after,
.sidebar-visible .burger-icon.burger-icon-black > span:before {
    background-color: black;
}

.burger-icon.burger-icon-black > span:after,
.burger-icon.burger-icon-black > span:before {
    background-color: black;
}

.mobile-search form {
    background-color: #eceef2;
    border-radius: 8px;
    height: 44px;
    padding: 8px 15px 11px 30px;
    position: relative;
}

.mobile-search form input {
    border: 0;
    background-color: transparent;
    width: 100%;
    height: auto;
}

.mobile-search form i {
    position: absolute;
    left: 18px;
    top: 14px;
    font-size: 18px;
    color: #5a5b5b;
}

.mobile-social-icon {
    margin-top: 50px;
}

.mobile-social-icon h6 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px;
}

.mobile-social-icon a.icon-socials {
    background-color: #eceef2;
    color: black;
}

.mobile-social-icon a {
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
    transition-duration: 0.5s;
    height: 30px;
    width: 30px;
    display: inline-flex;
    background: #efeaff;
    border-radius: 30px;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.mobile-social-icon a img {
    max-width: 18px;
}

.mobile-social-icon a img:hover {
    opacity: 0.8;
}

.mobile-social-icon a:hover {
    transform: translateY(-2px);
    transition-duration: 0.5s;
    margin-top: -2px;
}

.mobile-social-icon a:last-child {
    margin-right: 0;
}

.mobile-account {
    margin: 15px 0;
    padding: 30px 0 20px;
    border-top: thin solid #ececec;
}

.mobile-account .mobile-menu {
    column-count: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.mobile-account h6 {
    font-weight: 600;
    font-size: 18px;
}

.mobile-account ul li {
    padding: 13px 0;
}

.mobile-account ul li a {
    font-size: 15px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    display: inline-block;
    color: #434445;
    transition-duration: 0.2s;
}

.mobile-account ul li:hover a {
    padding-left: 3px;
    transition-duration: 0.2s;
    color: var(--primary-color-light-1);
}

.sidebar-title {
    border-bottom: thin solid #ececec;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.search-form form {
    position: relative;
}

.search-form form input {
    border: 1px solid #ececec;
    border-radius: 10px;
    height: 64px;
    box-shadow: none;
    padding-left: 20px;
    font-size: 16px;
    width: 100%;
}

.search-form form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border: none;
    font-size: 20px;
    height: 100%;
    padding: 0 24px;
    background-color: transparent;
    color: #242424;
}

@media (min-width: 992px) {
    header ul .col-lg-auto {
        flex: 0 0 auto;
        width: 20%;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 1199.98px) {
    .burger-icon,
    .custom-class {
        display: block;
    }

    .header .main-header .header-right {
        min-width: 250px;
    }

    .header-right {
        padding-right: 50px;
    }
}

@media (max-width: 567px) {
    header .btn-1 {
        display: none;
    }
    header .burger-icon {
        top: -2px !important;
    }
}

.custom_menu{
    display: flex !important;
    gap: 10px;
    align-items: start;
    margin-bottom: 20px !important;
    flex-wrap: wrap;
}

.custom_menu li{
    width: calc(25% - 10px) !important;
    float: none !important;
    display: block;
}

.custom_menu li a{
    margin-bottom: 5px;
    display: inline-block;
    color: #fff !important;
    transition: 0.2s all ease-in-out;
}


.custom_menu li:hover a{
    color: var(--primary-color) !important;
}

.custom_menu li p{
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 200;
    color: var(--body-color);
    opacity: 0.5;
}

.mobile-menu .industries-menu li p{
    color: #222;
    line-height: normal;
    font-size: 12px;
    margin: 10px 0;
    opacity: 0.8;
}