:root {
    --bs-blue: #21212d;
    --bs-orange: #f76c1c;
    --bs-white: #fff;
    --bs-black: #000;
    --bs-Montserrat: "Montserrat", sans-serif;
    --bs-Roboto: "Roboto", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

body {
    width: 100%;
    height: 100%;
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none;
}

@font-face {
    font-display: swap;
    font-family: boxicons;
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/boxicons.eot);
    src: url(../fonts/boxicons.eot) format('embedded-opentype'), url(../fonts/boxicons.woff2) format('woff2'), url(../fonts/boxicons.woff) format('woff'), url(../fonts/boxicons.ttf) format('truetype'), url(../fonts/boxicons.svg?#boxicons) format('svg')
}

.bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.bxs-chevron-down:before {
    content: "\ed35";
}

.bx-menu:before {
    content: "\eb5f";
}

.bx-x:before {
    content: "\ec8d";
}

.bxs-phone-call:before {
    content: "\ee67";
}

.bxs-envelope:before {
    content: "\ed9f";
}

.bxs-map-pin:before {
    content: "\ee19";
}

.bxl-facebook-circle:before {
    content: "\e930";
}

.bxl-youtube:before {
    content: "\e992";
}

.bxl-instagram-alt:before {
    content: "\e943";
}

.bxl-twitter:before {
    content: "\e982";
}

.bxl-linkedin:before {
    content: "\e94d";
}

.bxs-chevrons-right:before {
    content: "\ed40";
}


/* Nav Style */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: #ffffff; */
    background: rgb(255, 255, 255);
    box-shadow: rgb(33 35 38 / 10%) 0px 10px 10px -10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border-bottom: 1px solid rgb(193, 193, 193); */
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
    z-index: 99999;
}

nav .navbar {
    height: 100%;
    /* max-width: 1250px; */
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 0px;
    height: 65px;
}

.navbar .logo a {
    font-size: 30px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
    text-transform: capitalize;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: var(--bs-blue);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: rgb(0, 0, 0);
    transition: all 0.3s ease;

}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    /* background: #32a6de; */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.links ul, ol {
    padding: 5px;

}

.links ul li:hover {
    background-color: #fe8743;
    border-radius: 7px;
}

.links ul li:hover ul a li {
    color: #fff;
    padding-left: 5px;
}


.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3e8da8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3e8da8;
}

.search-box .input-box::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3e8da8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.cont-foot {
    position: fixed;
    bottom: 0;
    background-color: #fe8743;
    width: 100%;
    z-index: 10;
    padding: 10px 0;
}

.cont-foot h3 {
    text-align: center;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.cont-foot-div {
    display: flex;
    justify-content: space-around;
}

.cont-foot .cont-foot-detail {
    padding: 5px 5px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 22px;
    width: 45%;
}

.cont-foot .cont-foot-detail a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fe8743;
    white-space: nowrap;
    gap: 5px;
    font-weight: 500;
}

.cont-foot .cont-foot-detail a p {
    margin: 0;
}



@media (max-width: 920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 0px;
        height: 70px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width: 800px) {
    .navbar .bx-menu {
        display: block;
    }

    nav .navbar {
        height: auto;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 290px;
        width: 100%;
        background: var(--bs-orange);
        line-height: 40px;
        /* padding: 20px; */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
        padding: 10px 5px;
        overflow: scroll;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 30px;
        color: rgb(0, 0, 0);
    }

    .sidebar-logo i {
        color: white;
    }

    nav .navbar .links {
        display: block;
        /* margin-top: 20px; */
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
        line-height: 50px;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    .down {
        display: none;
    }

}

@media (max-width: 370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }

    .down {
        display: none;
    }
}

nav .contactbtn {
    background-color: #3f55a3;
    color: white !important;
    width: 120px;
    height: 36px !important;
    text-align: center;
    border-radius: 10px;
    box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px,
        rgb(0 0 0 / 30%) 0px 3px 7px -3px;
    line-height: 40px;
}

.nav-item .contactbtn:hover {
    color: white !important;
}

.logo-img {
    height: 40px;
}

@media only screen and (max-width:768px) {
    nav {
        height: 50px;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        /* background: rgba(255, 255, 255, 0.4); */
        /* box-shadow: 0 8px 32px 0 rgb(31 38 135 / 37%); */
        backdrop-filter: unset;
        /* -webkit-backdrop-filter: blur(10px) ; */
        /* border: 1px solid rgba(255, 255, 255, 0.18); */
        /* box-shadow: 0 1px 2px rgb(0 0 0 / 20%); */
        z-index: 99999;
    }

    nav .navbar .links li a {
        color: white;
        font-size: 18px;
    }

    nav .navbar .links li .arrow {
        color: white;
    }

    .logo-img {
        padding: 3px;
    }

    nav .contactbtn {
        background-color: rgba(105, 86, 86, 0) !important;
        color: white !important;
        width: 120px;
        height: 36px !important;
        text-align: center;
        border-radius: 10px;
        box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px, rgba(0, 0, 0, 0) 0px 3px 7px -3px;
        line-height: 40px;
    }

    nav .navbar .links li .sub-menu {
        left: -5px;
    }

    .navbar .links li .sub-menu li {
        padding: 0px 10px;
    }
}

/* down */

.down {
    width: 100%;
    /* margin-top: 90px; */
    display: flex;
    justify-content: flex-end;
    padding: 5px 5px;
    gap: 10px;
    background: rgb(0, 0, 0);
    background: rgb(43 42 42 / 82%);
    /* background-color: rgba(238, 165, 31, 0.293); */
    /* background-color: #f76c1cc4; */
    padding-right: 50px;
    border-bottom: 1px solid #ffa50042;

}

.down a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    /* background-color: #fff; */
    padding: 5px;
    border-radius: 22px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
}

.down a p {
    margin: 0;
    color: white;

}

.down a i {
    color: rgb(238, 165, 31);
    padding: 4px;
    background-color: white;
    border-radius: 50%;
}

/* Responsive Css Style Sheet */
@media only screen and (max-width: 768px) {
    body {
        background-color: var(--bs-white);
        width: 100%;
        height: 100%;
    }

    .down {
        display: none;
    }
}

/* nav - end */


/* footer - start */
.footer {
    width: 100%;
    background-color: #faf5ef !important;
    padding: 20px 0;
    /* border-top: 0.3px solid rgba(255, 166, 0, 0.649); */
    position: relative;
}

.footer-div {
    margin-top: 50px;
    display: flex;
    align-items: baseline;
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.first-footer {
    width: 30%;
    padding: 25px;
}

.second-footer {
    width: 20%;
    padding: 25px;
}

.third-footer a {
    text-decoration: none;
}

.third-footer {
    width: 25%;
    padding: 25px;
}

.forth-footer {
    width: 35%;
    padding: 25px;
}

.first-footer img {
    width: auto;
    height: 60px;
}

.form-control {
    padding: 0.8rem 0.75rem !important;
}

.footer-div h3 {
    font-family: var(--bs-Montserrat);
    font-size: 24px;
    font-weight: 600;
}

.footer-div .bx {
    color: var(--bs-orange);
    font-size: 22px;
}

.contact-foot p {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--bs-Montserrat);
}

.contact-foot span {
    font-weight: 400;
}

.footer-links ul li {
    font-size: 17px;
    line-height: 30px;
    font-family: var(--bs-Roboto);
    cursor: pointer;
}

.footer-links li a {
    text-decoration: none;
    color: black;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li::before {
    content: "\2022";
    color: var(--bs-orange);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.footer-links ul a {
    text-decoration: none;
    color: var(--bs-black);
}

.first-footer p, .third-footer p {
    font-size: 16px;
    font-family: var(--bs-Roboto);
    text-align: justify;
    color: #000;
}

.form-input button {
    width: 25%;
    padding: 7px 5px;
    background-color: var(--bs-orange);
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
}

.form-input button:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

}

.footer-end {
    display: flex;
    background-color: #373738;
    padding: 15px 5px;
    align-items: center;
    justify-content: space-around;
}

.footer-end p {
    color: #fff;
    margin: 0;
}

.end-content {
    display: flex;
    gap: 70px;
}

.end-content p {
    cursor: pointer;
}

.end-content a {
    text-decoration: none;
}

.footer-links ul li:hover {
    font-weight: 500;
}


.svg-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

/* footer - end */

/* Media Css Home Index  */
/* Tablets */
@media only screen and (max-width: 1024px) {
    .footer-div {
        flex-wrap: wrap;
    }

    .first-footer, .second-footer, .third-footer, .forth-footer {
        width: 50%;
    }
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .wrapper {
        width: 100%;
    }

    .footer-div {
        flex-wrap: wrap;
    }

    .first-footer, .second-footer, .third-footer, .forth-footer {
        width: 100%;
    }

    .footer-end {
        flex-wrap: wrap;
        margin-bottom: 85px;
    }

    .contact-divs {
        width: 95%;
        padding: 15px;
    }
}


.floating-wpp {
    position: fixed;
    bottom: 20px;
    left: 15px;
    font-size: 14px;
    transition: bottom .2s
}

.floating-wpp .floating-wpp-button {
    position: relative;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
    transition: box-shadow .2s;
    cursor: pointer;
    overflow: hidden
}

.floating-wpp .floating-wpp-button img, .floating-wpp .floating-wpp-button svg {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 50%
}

.floating-wpp:hover {
    bottom: 17px
}

.floating-wpp:hover .floating-wpp-button {
    box-shadow: 1px 2px 8px rgba(60, 60, 60, .4)
}

.floating-wpp .floating-wpp-popup {
    border-radius: 6px;
    background-color: #E5DDD5;
    position: absolute;
    overflow: hidden;
    padding: 0;
    box-shadow: 1px 2px 8px rgba(60, 60, 60, .25);
    width: 0;
    height: 0;
    bottom: 0;
    opacity: 0;
    transition: bottom .1s ease-out, opacity .2s ease-out;
    transform-origin: bottom
}

.floating-wpp .floating-wpp-popup.active {
    padding: 0 12px 12px;
    width: 260px;
    height: auto;
    bottom: 82px;
    opacity: 1
}

.floating-wpp .floating-wpp-popup .floating-wpp-message {
    background-color: #fff;
    padding: 8px;
    border-radius: 0 5px 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .15);
    opacity: 0;
    transition: opacity .2s
}

.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
    opacity: 1;
    transition-delay: .2s
}

.floating-wpp .floating-wpp-popup .floating-wpp-head {
    text-align: right;
    color: #fff;
    margin: 0 -15px 10px;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.floating-wpp .floating-wpp-input-message {
    background-color: #fff;
    margin: 10px -15px -15px;
    padding: 0 15px;
    display: flex;
    align-items: center
}

.floating-wpp .floating-wpp-input-message textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    padding: 8px;
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: inherit;
    resize: none
}

.floating-wpp .floating-wpp-btn-send {
    margin-left: 12px;
    font-size: 0;
    cursor: pointer
}

.fb_dialog_content iframe {
    right: 15px !important;
}

@media only screen and (max-width: 768px) {
    .floating-wpp, .fb_dialog_content iframe {
        bottom: 100px !important;
    }
}