@font-face {
    font-family: "SF Pro Display";
    src: url("../../storage/fonts/SF-Pro-Display-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Display-bold";
    src: url("../../storage/fonts/SF-Pro-Display-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF-Pro-Text";
    src: url("../../storage/fonts/SF-Pro-Text-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.sp {
    width: 100%;
    height: 200px;
}

@media (min-width: 1800px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px !important;
    }
}


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

html,
body {
    width: 100%;
    /* height: 100%; */
    overflow-x: hidden;
}

:root {
    --main-font: "SF Pro Display", sans-serif;
    --main-font-bold: "SF-Pro-Display-bold", sans-serif;
    --sub-font: "SF-Pro-Text", sans-serif;
    --primary-color: #ffcc29;
    --secondary-color: #1f1f1f;
    --third-color: #be80d1;
    --fourth-color: #f87b33;
}

.head-bg {
    background-color: var(--secondary-color);
    /* padding-top: 30px; */
}

.menu-show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* mega menu */

.mega-menu-sp {
    /* padding: 40px 0px;
    background-color: #fcfcfc; */
    border-bottom: 8px solid var(--primary-color-blue);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    top: 75px;
    left: 0px;
    z-index: 10;

    /* new css */
    margin-inline: auto;
    transform: translate(-50%);
    left: 50%;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 450px;
    background-color: #fcfcfc;
    padding: 30px 0px 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* @media only screen and (max-width: 1400px) {
    .mega-menu-grid {
        grid-template-columns: 275px 340px 415px;
    }
} */

.mega-menu-grid .mega-menu-grid-box .mega-menu-grid-box-title {
    font-size: 18px;
    font-family: var(--main-font-bold);
    color: #4E4E4E;
    /* margin-bottom: 13px; */
}

.mega-menu-grid .mega-menu-grid-box .mega-menu-grid-box-divider {
    width: 191px;
    height: 1px;
    background-color: var(--primary-color-blue);
}

.mega-menu-grid .mega-menu-grid-box ul {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 25px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-grid .mega-menu-grid-box ul li {
    font-size: 14px;
    font-family: var(--main-font);
    color: #000;
    /* margin-top: 14px; */
    transition: 200ms ease-out;
    cursor: pointer;
}

.mega-menu-grid .mega-menu-grid-box ul li:hover {
    text-decoration: underline;
}

.mega-menu-grid .mega-menu-grid-box .mega-menu-grid-box-img {
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
}

.mega-menu-grid .mega-menu-grid-box-boder {
    /* border-right: 1px solid #d4d4d4; */
    padding-inline: 20px;
}

.mega-menu-grid-box-img p {
    font-size: 18px;
    line-height: 23px;
    font-family: var(--main-font);
    font-weight: 600;
    margin-bottom: 16px;
    width: 360px;
    color: #000;
}

.mega-menu-grid-box-img a {
    font-size: 20px;
    font-family: var(--main-font-bold);
    color: #FFCC29;
    text-decoration: none;
}

.mega-menu-grid-box-img-divider {
    width: 427px;
    height: 1px;
    background-color: #D9D9D9;
    margin-block: 14px;
}

.mega-menu-grid-box-img-logo-gride {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 40px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mega-menu-grid-box-img-arrow {
    margin-left: 5px;
}

.mega-menu-grid-box-img-logo {
    margin-bottom: 20px;
}

.mega-menu-grid-box-img-link {
    color: #000 !important;
}

/* mobile-menu */

/* .mega-menu-mobile {
    background-color: red;
} */

.hamburger {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 1000;
}

/* Sidebar */
.mega-menu-mobile-sidebar {
    position: fixed;
    top: 0;
    right: -353px;
    /* Hidden initially */
    width: 100%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    transition: right 0.4s ease-in-out;
    padding-top: 60px;
    z-index: 1000;
}

.mega-menu-mobile-sidebar ul {
    list-style: none;
    padding-left: 0px;
}

.mega-menu-mobile-sidebar ul li {

    position: relative;
}

.mega-menu-mobile-sidebar ul li a {
    text-decoration: none;
    color: #000;
    display: block;
    font-size: 16px;
    font-family: var(--main-font);
    padding: 15px;
    transition: 0.3s;

}

/* When sidebar is active */
.mega-menu-mobile-sidebar.active {
    right: 0;
    /* Slide in */
}

/* Dropdown Styles */
.mega-menu-mobile-dropdown {
    max-height: 0;
    /* Initially hidden */
    overflow: hidden;
    background: transparent;
    transition: max-height 0.4s ease-in-out;
}

.mega-menu-mobile-dropdown a {
    padding: 10px;
    display: block;
}

/* 
.mega-menu-mobile-dropdown a:hover {
    background: #000;
} */

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;

    cursor: pointer;
    color: #000;
    background: none;
    border: none;
}

/* Show Dropdown */
.mega-menu-mobile-dropdown.show {
    max-height: 600px;
    overflow: scroll;
    /* Adjust based on content */
}

.inner-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding-right: 20px;
}

.inner-dropdown a {
    padding: 5px !important;
    padding-left: 30px !important;
    display: block;
    font-size: 14px !important;
}

/* .inner-dropdown a:hover {
    background: #666;
} */

.inner-dropdown.show {
    max-height: 310px;
    overflow: scroll;
}

.dropdown.show {
    max-height: 150px;
}



.nav-text {
    font-size: 18px;
    font-family: var(--main-font);
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff !important;
    padding-inline: 30px !important;
    /* padding-inline: 20px !important; */
}

.sign-in {
    font-size: 20px;
    font-family: var(--main-font-bold);
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
    /* margin-right: 25px; */
}

#wrap-overlay {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    /* height: 100%; */
    height: calc(100% - 76px);
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
    /* z-index: 1; */
}

#wrap-overlay.visible-overlay {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

/* serch bar */

.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: var(--secondary-color);
    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: 250px;
    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: 250px;
    /* width: 200px; */
    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);
}

/* footer */

.foot-bg {
    background-color: var(--secondary-color);
    padding-top: 86px;
    /* padding-bottom: 132px; */
    /* margin-top: 80px; */
}

.foot-main-title {
    font-size: 35px;
    font-family: var(--main-font-bold);
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.foot-main-phara {
    font-size: 19px;
    font-family: var(--main-font);
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
}

.btn-foot-search {
    width: 135px;
    height: 40px;
    border-radius: 6px;
    background-color: #ffcc29;
    font-size: 20px;
    font-family: var(--sub-font);
    font-weight: 700;
    border: none;
}

/* service page eleven section */
/* .service-page-eleven-section {
    background-color: var(--secondary-color);
} */

/* .service-page-eleven-section-content {
    padding: 48px 0px;
} */

.service-page-eleven-section-content h2 {
    font-size: 40px;
    font-weight: bold;
    /* margin-bottom: 24px; */
    font-family: var(--main-font-bold);
}

.service-page-eleven-section-content .accordion-item {
    border: none;
    margin-bottom: 25px;
    border-radius: 0;
}

.service-page-eleven-section-content .accordion-button {
    background: #fff;
    color: #000;
    font-weight: bold;
    border: none;
    box-shadow: none;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-family: var(--main-font);
}

.service-page-eleven-section-content .accordion-button::after {
    font-size: 16px;
    transition: transform 0.3s ease;
}


.service-page-eleven-section-content .accordion-button:not(.collapsed) {
    background: #FFD000;
    /* Yellow background */
    color: #000;
    font-size: 22px;
    font-weight: bold;
    font-family: var(--main-font);
}

.service-page-eleven-section-content .accordion-collapse {
    background: #fff;
    /* padding: 10px 15px; */
    /* border-top: 1px solid #000; */
}

.service-page-eleven-section-content .accordion-body {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    font-family: var(--main-font);
    padding-left: 25px;
}

.foot-serch-bar {
    border-radius: 0px !important;
}

.foot-tabs {
    margin-top: 51px;
    margin-bottom: 15px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #fff;
}

.foot-tabs {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tabs-title {
    font-size: 22px;
    font-family: var(--main-font-bold);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.tabs-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.tabs-links li {
    font-size: 18px;
    font-family: var(--main-font);
    font-weight: 500;
    color: #fff;
}

.sub-foot-text {
    font-size: 14px;
    font-family: var(--sub-font);
    font-weight: 500;
    color: #777777;
}


@media only screen and (max-width:767px) {
    /* mobile navbar */

    .head-bg {
        padding-top: 0px;
    }

    .sign-in {
        font-size: 16px;
        margin-right: 0px;
    }

    .nav-serch-icon {
        width: 17px;
    }

    .input-search:focus {
        width: 203px;
        position: absolute;
        right: 0px;
    }

    .btn-search:focus~.input-search {
        width: 203px;
    }

    .mob-nav-tabs-wrap {
        border-top: 1px solid #fff;
    }

    .mob-nav-tabs li {
        font-size: 16px;
        font-family: var(--main-font-bold);
        font-weight: 700;
    }

    .mob-nav-tabs {
        list-style: none;
        overflow: auto;
        scrollbar-width: none;
        white-space: nowrap;
        margin: 0px;
        padding: 0px;
        gap: 29px;
    }

    /* footer */

    .foot-bg {
        padding-top: 32px;
        padding-bottom: 33px;
        /* margin-top: 32px; */
    }

    .foot-main-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .foot-main-phara {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .btn-foot-search {
        width: 135px;
        height: 40px;
        border-radius: 6px;
        background-color: #ffcc29;
        font-size: 17px;
        font-family: var(--sub-font);
        font-weight: 700;
        border: none;
    }

    .foot-serch-bar {
        border-radius: 6px !important;
        width: 65%;
    }

    /* footer tabs */

    .foot-tabs {
        margin-top: 30px;
        margin-bottom: 29px;
        padding-top: 0px;
        padding-bottom: 32px;
        grid-template-columns: 1fr;
    }

    .tabs-title {
        margin-top: 28px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .nav-text {
        font-size: 18px;
        padding-inline: 25px !important;
        /* padding-inline: 15px !important; */
    }

    .sign-in {
        font-size: 20px;
    }

    .btn-search {
        padding: 0px;
    }

    .btn-search,
    .input-search {
        width: 35px;
        height: 35px;
    }

    .btn-search:focus~.input-search,
    .input-search:focus {
        width: 210px;
        /* width: 190px; */
    }
}