@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

a {
    text-decoration: none;
}

:root {
    --theme: #FE7213;
}

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

.heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}


.fa-solid.fa-bars.text-white {
    font-size: 30px;
    color: #AB6F0F !important;
}

.para {
    font-size: 16px;
    color: #A2A2A2;
    font-weight: 300;
}

.para_new {
    line-height: 29px;
}

.theme_btn {
    min-width: 148px;
    border: 3px solid white;
    box-shadow: -5px 2px 23.76px 0.24px rgba(0, 0, 0, 0.47);
    height: 50px;
    font-size: 16px;
    background-color: var(--theme);
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

header.header {
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    z-index: 0;
    padding: 0px 0px 80px;
}

header {
    background-image: url(../images/banner.png);
    padding: 0px 0px 0px;
}

header::before {
    content: '';
    /* background-color: #000000; */
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.navbar .nav-link {
    font-size: 14px;
    margin: 10px 15px !important;
    padding: 8px 20px !important;
    line-height: 29px;
    color: white;
    font-weight: 400;
}

.banner {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.navbar .nav-link.active {
    /*! border-bottom: 2px solid #FBFAFA; */
    color: var(--theme);
}

.navbar-brand img {
    width: 130px;
}

.nav_btn {
    min-width: 140px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.nav_drop img {
    width: 44px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}

.nav_drop .nav-link {
    display: flex;
    justify-content: start;
    align-items: center;
}

.nav_drop strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.nav_drop small {
    font-size: 12px;
    font-weight: 400;
    color: var(--theme);

}

.nav_drop p {
    margin-bottom: 0;
    line-height: 14px;
    margin-left: 10px;
}

/* \ navbar */


/* Modal =============================== */

.modal_side_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal_form {
    height: fit-content;
    width: 100%;
}

.modal_form h2 {
    font-weight: 600;
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.socal_modal_icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.socal_modal_icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #edf2f7;
    text-decoration: none;
    border-radius: 10px;
    margin: 0 8px;
    width: 45px;
    height: 40px;
}

.socal_modal_icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.via_line {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 20px 0px 10px;
}

.via_line strong {
    font-size: 14px;
    font-weight: 500;
    background: white;
    z-index: 0;
    padding: 0 15px;
}

.via_line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
    left: 0;
    bottom: 10px;
    z-index: 0;
}


.modal_form label {
    margin-top: 15px;
    font-weight: 500;
    font-size: 15px;
}

.modal_form label a {
    font-size: 15px;
}

.modal_form .form-control {
    border-radius: 30px;
    border: none;
    height: 51px;
    padding: 0px 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175);
    margin: 10px 0px 20px;
}

.form-control::placeholder{
    opacity: 0.3;
}

.modal_form .form-control:focus,
.modal_form .form-control:focus-visible {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175) !important;
}

.modal-xl {
    max-width: 1060px;
}

.modal_form .form-control {
    border-radius: 10px;
    height: 51px;
    padding: 0px 11px;
    margin: 5px 0px 10px;
    font-size: 16px;
}

.modal_form .switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 20px;
}

.modal_form .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.modal_form .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: gainsboro;
    -webkit-transition: .4s;
    transition: .4s;
}

.modal_form .slider::before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.modal_form input:checked+.slider {
    background-color: var(--theme);
}

.modal_form input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.modal_form input:checked+.slider::before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.form-check-input {
    max-width: 16px;
    width: 100%;
    margin-right: 6px;
    border-color: #000;
}

.form-check-input:checked {
    background-color: var(--theme);
    border-color: var(--theme);

}

.modal_form .slider.round {
    border-radius: 34px;
}

.modal_form .slider.round:before {
    border-radius: 50%;
}

.modal_form .submit_modal {
    width: 100%;
    height: 51px;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--theme);
    color: black;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175);
    margin: 30px 0px;
}

.xsm {
    width: 75%;
    margin: 0 auto;
}

/* .modal_form .submit_modal:focus , .modal_form .submit_modal:focus-visible{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.175) !important;
} */
.modal_form .submit_modal {
    width: 100%;
    height: 41px;
    font-size: 18px;
    border-radius: 10px;
    margin: 20px auto;
    font-weight: 400;
}

.modal-header {
    position: relative;
}

.modal .btn-close {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ff0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    opacity: 1;
    font-size: 22px;
    padding: 0;
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 10;
    padding-right: 0.5px;
}

.modal .form-group {
    position: relative;
}

.modal .form-group i {
    position: absolute;
    top: 62px;
    right: 15px;
    color: rgba(0, 0, 0, 0.175);
}

.modal_form .nav-pills .nav-link {
    background-color: #d5d5d5;
    color: #000;
    box-shadow: -6px 3px 17.82px 0.18px rgba(0, 0, 0, 0.17);
    margin: 0 10px;
    width: 154px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.modal_form .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #000;
}

.input_group {
    display: flex;
    justify-content: start;
    align-items: center;
}

.input_group .input_inner {
    width: 50px;
    height: 100%;
    position: relative;
}

.input_group .input_inner select {
    background-color: transparent;
    height: 100%;
    width: 100%;
    border: none;
    appearance: none;
}

.input_group .input_inner i {
    top: 12px;
    font-size: 19px;
    right: 5px;
}

.logout_img {
    width: 80px;
    padding-bottom: 24px;
}

/* \ modal */

/* banner */
.banner h1 {
    font-size: 37px;
    font-weight: 400;
    color: white;
}

.banner h2 {
    color: #fff;
    font-size: 73px;
    font-weight: 600;
}

.banner p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
}

.bar .img_nav_tab {
    max-width: 190px;
    width: 33vw;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar .img_nav_tab img {
    width: 40%;
    filter: contrast(0.2);
}

.bar.active .img_nav_tab {
    background: rgb(255, 255, 255);
    background: radial-gradient(circle, #fac220 0%, #fe7213 56%);
}
.bar.active .img_nav_tab img{
    filter: contrast(1);
}

.bar h3{
    color: #B2B2B2;
    font-size: 21px;
    line-height: 43px;
}
.bar.active h3{
    color: #000;
}

.appstores {
    display: flex;
    align-items: center;
    justify-content: start;
}

.appstores a img {
    padding-right: 10px;
    width: 210px;
}

.join_us {
    font-size: 16px;
    color: #fff !important;
    background-color: var(--theme);
    border-radius: 6px;
    /*! height: 44px; */
    min-width: 151px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.black_btn {
    font-size: 16px;
    color: white;
    background-color: var(--theme);
    border-radius: 6px;
    min-width: 151px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 10px 0px;
    font-weight: 400;
}

.black_btn:hover {
    color: #ddd;
}

/* \banner */


/* about us */
.ab_card {
    border-radius: 20px;
    /*! box-shadow: 0px 3px 6px #00000029; */
    border: none;
    /* transform: translate(-25%); */
}

.ab_card .card-body {
    padding: 48px;
}

.mini_heading {
    font-size: 20px;
    color: var(--theme);
    font-weight: 500;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}

.mini_heading::before {
    content: "";
    width: 38px;
    height: 2px;
    border-radius: 0;
    background-color: var(--theme);
    position: absolute;
    bottom: -5px;
    left: 0px;
    /* transform: translate(-50%); */
}


.owl-dot {
    margin-top: 48px !important;
}

.owl-dot span {
    width: 42px !important;
    height: 10px !important;
    border-radius: 4px !important;
    background: black !important;
}


.owl-dot.active span {
    background-color: var(--theme) !important;
}

/* about us */

/*company_forum */



.white_line {
    color: white;
    text-align: center;
}

.white_line::before {
    left: 50%;
    transform: translate(-50%);
    background-color: white;
    bottom: -10px;
}

.company_forum {
    background: url(../images/v3.png) no-repeat center/cover;
}

.card_forum {
    padding: 22px;
    border-radius: 29px;
    background-color: white;
}

.card_forum ul {
    list-style-type: none;
}

.cf_user {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
    padding: 15px 0px;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
}

.cf_user:last-child {
    border: none;
    padding-bottom: 0;
}

.cf_user img {
    max-width: 88px;
    width: 100%;
    height: 88px;
    border-radius: 50%;
}

.content_box p {
    text-align: left;
    font-size: 18px;
    color: black;
    line-height: 35px;
    font-weight: 400;
}

.cf_user textarea {
    box-shadow: 0px 1px 6px #00000029;
    border-radius: 15px;
    border: none;
    width: 100%;
    padding: 15px;
    height: 150px;
    resize: none;
}

/*  \company_forum */


/* contact us  */
.rounded_ico img {
    width: 50%;
    aspect-ratio: 1/1;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact_card {
    box-shadow: 0px 1px 34.65px 0.35px rgba(0, 0, 0, 0.09);
    border-radius: 15px;
    width: 100%;
    height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: white;
}

.contact_card h5 {
    font-size: 22px;
    font-weight: bold;
}

.contact_card p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.contact_card::before {
    content: '';
    background-color: var(--theme);
    position: absolute;
    bottom: -4px;
    width: 65%;
    height: 8px;
    border-radius: 4px;
}

.form-group textarea.form-control {
    height: 150px;
    padding: 10px;
    resize: none;
}

.contact_info h6 {

    color: var(--theme);
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

#gmap_canvas {
    max-width: 100%;
}

.contact_info h6::before {
    content: '';
    position: absolute;
    top: 41%;
    left: 0;
    width: 36px;
    background-color: var(--theme);
    height: 3px;
}

.contact_info h2 {
    font-size: 30px;
    font-weight: 600;
    /*! color: white; */
}

.contact_info li {
    margin: 40px 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}

.contact_info li h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--theme);
}

.contact_info li p {
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 400;
    /* color: white; */
}

span.rounded_ico {
    max-width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    width: 100%;
}


/* \ contact us  */


footer {
    background: url(../images/v8.png) no-repeat center/cover;
    text-align: center;
}

footer ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_logo {
    width: 130px;
    margin-bottom: 35px;
}

.footer_link {
    color: #fff;
    font-size: 18px;
    line-height: 29px;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 300;
}

footer .inner {
    padding: 50px 0px;
}

footer p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 0;
    color: #fff;
}

footer p .footer_link {
    font-size: 16px;
    line-height: 26px;
    margin: 0 5px;
}

.footer_end {
    border-color: #ffffff54 !important;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    filter: drop-shadow(10px 10px 12px rgba(0, 0, 0, 0.31));
}

.owl-carousel .item {
    padding: 20px 0;
}

.navbar.navbar-expand-lg {
    border-bottom: 1px solid #cacaca40;
    padding: 18px 0px;
}

.img_loc img {
    right: 12px;
    width: 20px;
    bottom: 10px;
}

.modal_form .img_loc input {
    padding-right: 40px;
}

@media (max-width: 1399.98px) {

    .modal_form .form-control {
        border-radius: 10px;
        height: 45px;
        padding: 0px 8px;
        margin: 4px 0px 0px;
        font-size: 13px;
    }

    .contact_card p {
        font-size: 14px;
    }

    header {
        padding: 10px 0px;
        background-size: cover;
    }

    .banner h2 {
        font-size: 45px;
    }

    .para {
        font-size: 14px;
        line-height: 27px;
    }

}


@media (max-width: 767.98px) {
    .img_loc img {
        width: 14px;
    }

    .bar img {
        margin-top: 30px;
    }

    .banner {
        min-height: 220px;
    }

    .modal .btn-close {
        top: 12px;
        right: 12px;
    }

    .xsm {
        width: 100%;
    }

    .logout_img {
        width: 50px;
        padding-bottom: 14px;
    }

    .navbar-brand img {
        width: 80px;
    }


    .navbar .nav-link {
        font-size: 13px;
        padding: -4px 0px !important;
        padding: 5px 15px !important;
    }

    .nav_btn {
        border: 2px solid white;
        font-size: 14px;
    }

    header {
        background-size: cover;
        padding: 0px 0px 0px;
    }

    .banner {
        padding-bottom: 110px;
    }

    .para {
        font-size: 14px;
        line-height: 26px;
    }

    .heading {
        font-size: 25px;
    }

    .heading::before {
        width: 94px;
        height: 5px;
    }

    footer .inner {
        padding: 20px 0px;
    }

    .banner h1 {
        font-size: 25px;
        margin-top: 40px;
    }

    .appstores a img {
        max-width: 150px;
    }

    .banner h2 {
        color: #fff;
        font-size: 25px;
        font-weight: 400;
    }

    .ab_card {
        transform: translate(0);
        margin-top: 20px;
    }

    .banner h2 {
        font-size: 36px;
        line-height: 44px;
        font-weight: 600;
    }

    .banner p {
        font-size: 16px;
    }

    .ab_card .card-body {
        padding: 28px 15px;
    }

    .heading {
        font-size: 24px;
        line-height: 35px;
    }

    .cf_user {
        display: block;
        text-align: left;
    }

    .cf_user img {
        max-width: 78px;
        height: 78px;
        margin-bottom: 10px;
    }

    .content_box p {
        font-size: 16px;
    }

    .footer_link {
        font-size: 14px;
        padding: 10px 8px;
    }

    footer p {
        font-size: 12px;
    }

    footer p .footer_link {
        font-size: 12px;
        margin: 0;
    }

    .footer_logo {
        width: 130px;
        margin-bottom: 5px;
    }

    .footer_img {
        position: initial;
    }

    footer {
        padding: 30px 0px 0px;
    }

    .contact_card h5 {
        font-size: 20px;
    }

    .contact_card p {
        font-size: 15px;
    }

    .contact_info h6 {
        font-size: 18px;
    }

    .contact_info h6::before {
        top: 44%;
    }

    .contact_info h2 {
        font-size: 30px;
    }

    span.rounded_ico {
        max-width: 52px;
        height: 52px;
        margin-right: 20px;
    }

    .rounded_ico img {
        width: 50%;
    }

    .contact_info li h4 {
        font-size: 20px;
    }

    .contact_info li p {
        font-size: 16px;
    }

    .contact_info li {
        margin: 20px 0;
    }
}


@media (max-width: 575.98px) {
    .modal_form label {
        font-weight: 400;
        font-size: 13px;
    }

    .owl-carousel .owl-item img {
        width: 80%;
        margin: auto;
        padding: 0px 0px;
    }
}