/* google poppins font ~ it is only using for poppins font as default  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* bootstrap-icons.css ~ it is using for only icon purpose  */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-bg-color: #000000;
    --on-brand-text-color: #ffffff;
    --brand_hover_color: #c5c5c5;
    --gray2_color: #62646a;
    --border_color: #e4e5e7;
    --input_border_color: #CCCCCC;
    --heading_underline_color: rgb(255, 0, 102);
    --default-font-family: 'Poppins', sans-serif;
}

/* sort code for global  */
.max400 {
    max-width: 400px;
}


.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.my-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.text-center {
    text-align: center;
}

.text-danger {
    color: #dc3545 !important;
}

button {
    margin-top: 3px;
    background: #0D6EFD;
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .7px;
}

button:hover {
    background: #0a58ca;
    transition: all .5s;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.note {
    font-size: 13px;
    color: var(--gray2_color);
    letter-spacing: .3px;
    font-weight: 400;
}

body {
    font-family: 'Poppins', sans-serif;
}

body img {
    vertical-align: middle;
}

html body a {
    text-decoration: none;
}

i {
    cursor: pointer;
}

/* -----------------------------------------header-------------------------------------- */
header nav a {
    color: var(--on-brand-text-color);
}

header nav a:hover {
    color: var(--brand_hover_color);
    transition: all .5s;
}

header nav .nav_div_parent {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    color: var(--on-brand-text-color);
    align-items: center;
    background: var(--brand-bg-color);
}

header nav .nav_div_parent .nav_div_child.branding img {
    width: 100%;
    max-width: 120px;
}

header nav .nav_div_parent .nav_div_child .middle_menus .desk_middle_menus {
    margin: 0 3px 0 3px;
    border-bottom: 2px solid rgb(255, 255, 255);
}

header nav .nav_div_parent .nav_div_child.nav_div_child_last {
    display: flex;
    gap: 10px;
    align-items: center;
}

header nav .nav_div_parent .nav_div_child .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

header nav .nav_div_parent .nav_div_child .hamburger .line {
    width: 25px;
    height: 2.5px;
    background: var(--on-brand-text-color);
    margin: 3px;
}

/* -----------------------------------------mobile view -------------------------------------- */
header nav .mobile_menus_parent {
    max-height: 0;
    transition: max-height .3s ease-in-out;
    overflow: hidden;
}

header nav .mobile_menus_parent.active {
    max-height: 500px;
}

header nav .mobile_menus_parent .nav_content {
    display: flex;
    flex-direction: column;
    color: var(--on-brand-text-color);
    background: var(--brand-bg-color);
    padding: 8px;
}

header nav .mobile_menus_parent .mob_menus_child {
    margin: 8px;
}

@media screen and (max-width: 900px) {
    header nav .nav_div_parent .nav_div_child.middle_menu_cont {
        display: none;
    }
}

/* ---------------------------------------tool name header------------------------------------------ */
.name_header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #6a11cb;
    padding: 12px 10px;
    border-radius: 4px 4px 0 0;
    gap: 10px;
    object-fit: contain;
    color: #fff;
}

.name_header_container.middle {
    justify-content: center;
    padding: 10px;
}

.name_header_container .title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    letter-spacing: .4px;
}

.share_icon {
    cursor: pointer;
    font-size: 15px;

}

@media screen and (min-width: 767px) {
    .name_header_container {
        padding: 12px 20px;
    }
}

/* ------------------------------------heading with underline---------------------------------------- */
.heading_cont .headintxt {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .5px;
}

.heading_cont .headintxt::after {
    content: "";
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -5px;
    border: 1px solid var(--heading_underline_color);
}

/* ---------------------------custom container as bootstrap functionality------------------------------ */
.container {
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto !important;
    margin-left: auto !important;
    width: 100%;
    font-family: var(--default-font-family);
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* --------------------------------middle content and both side advertisements---------------------------- */
.middle_content_container {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
    padding: 10px;
}
@media screen and (max-width: 1050px) {
    .middle_content_container {
        grid-template-columns: 1fr;
    }

    .middle_content_container .child:nth-child(1),
    .middle_content_container .child:nth-child(3) {
        display: none;
    }

    .middle_content_area {
        width: 100%;
    }
}

.middle_content_area .indoor_content {
    padding: 20px 10px 20px 10px;
    background: #fff;
    border-radius: 0 0 4px 4px;
    border: 1px solid var(--border_color);
}


/* ---------------------------global for products (tools right now)-------------------------------------- */
/* products wrapper */
.product_wrapper {
    margin: 30px 0;
    font-family: var(--default-font-family);
}

.product_wrapper .product_grand_parent {
    display: flex;
    justify-content: space-evenly;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 15px 0 10px 0;
}

.product_wrapper .product_grand_parent::-webkit-scrollbar {
    display: none;
}

.product_wrapper .products_parent {
    display: flex;
    gap: 1px;
    text-align: center;
}

.product_wrapper .products_parent .product_child {
    margin: 10px;
    padding: 7px;
    width: 210px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 6px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_wrapper .products_parent .product_child img {
    /* min-width: 200px; */
    max-height: 200px;
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}

.product_wrapper .products_parent .product_child .product_heading {
    font-size: 15.8px;
    font-weight: 600;
    margin: 0;
    letter-spacing: .1px;
    white-space: nowrap;
    overflow-x: hidden;
}

.product_short_desc {
    font-size: 14px;
    color: #198754;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0;
}

/* if not need sliding - like category page or home page  */
.product_wrapper.no_sliding .product_grand_parent {
    display: flex;
    flex-direction: column;
}

.product_wrapper.no_sliding .products_parent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product_wrapper.no_sliding .products_parent .product_child {
    margin: 10px;
    width: calc(100% / 4 - 21px);
}

.product_wrapper.no_sliding .products_parent .product_child img {
    max-height: 250px;
}

@media screen and (max-width: 1200px) {
    .product_wrapper.no_sliding .products_parent .product_child {
        width: calc(100% / 3 - 21px);
    }
}

@media screen and (max-width: 767px) {
    .product_wrapper.no_sliding .products_parent .product_child {
        width: calc(100% / 2 - 21px);
    }

    .product_wrapper.no_sliding .products_parent .product_child img {
        max-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .product_wrapper.no_sliding .products_parent .product_child {
        width: calc(100% / 1 - 21px);
    }

    .product_wrapper.no_sliding .products_parent .product_child img {
        max-height: fit-content;
    }

    .product_wrapper .products_parent .product_child .product_heading {
        white-space: wrap;
        overflow-x: visible;
    }
}


/* -------------------------------------------------FAQs------------------------------------------------ */
.faq_parent_ul .li {
    list-style: none;
    width: 100%;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-left: 0;
}

.faq_parent_ul .li label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.faq_parent_ul .li label::before {
    content: "+";
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

.faq_parent_ul .li input[type="radio"] {
    display: none;
}

.faq_parent_ul .ans_content {
    padding: 0 9.5px;
    color: #555;
    line-height: 25.8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.faq_parent_ul input[type="radio"]:checked+label+.ans_content {
    max-height: fit-content;
    padding: 10px 10px 20px;
}

.faq_parent_ul .li input[type="radio"]:checked+label::before {
    content: "-";
}



/* -----------------------------Global Form Styles------------------------------ */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: var(--default-font-family);
}

.input_field_heading {
    font-size: 17px;
    font-weight: 500;
}

.form label {
    font-size: 16px;
    letter-spacing: .1px;
}

.input_info_txt {
    font-size: 13px;
    color: var(--gray2_color);
    letter-spacing: .3px;
    font-weight: 400;
}

input,
textarea,
select {
    border: 1px solid var(--input_border_color);
    outline: none;
    padding: 8px 1px;
    border-radius: 4px;
    width: 100%;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    font-size: 16px;
    letter-spacing: .5px;
    color: var(--input_border_color);
}

input:focus,
textarea:focus,
select:focus {
    border: 1px solid #e4e5e7;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form .each_inp_field {
    display: flex;
    flex-direction: column;
    margin: 5px 0;
}



/* -------------------------------footer------------------------------------- */
footer {
    background: var(--brand-bg-color);
    color: var(--on-brand-text-color);
    font-family: var(--default-font-family);
    letter-spacing: .3px;
}

footer a {
    color: var(--on-brand-text-color);
}

footer a:hover {
    color: var(--brand_hover_color);
    transition: all .5s;
}

footer .footer_parent {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    gap: 10px;
    flex-wrap: wrap;
    background-color: #000;
}

footer .footer_parent .footer_child {
    flex-basis: calc(100% / 4 - 7.9px);
}

footer .footer_parent ul {
    list-style-type: none;
    padding-left: 0;
}

footer .footer_parent .heading_footer {
    position: relative;
    width: fit-content;
}

footer .footer_parent .heading_footer::after {
    content: "";
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: var(--on-brand-text-color);
    right: 0;
    left: 0;
    bottom: -5px;
}

footer .footer_parent .foote_links {
    margin-top: 20px;
}

footer .footer_parent .foote_links.social_links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

footer .footer_parent .foote_links.social_links a {
    font-size: 20px;
    border-radius: 8px;
    border: 1px solid var(--on-brand-text-color);
    padding: 5px 10px;
}


footer .footer_cedit_areas {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
    background: var(--brand-bg-color);
    align-items: center;
    padding: 10px;
    letter-spacing: 1px;
}

footer .footer_cedit_areas img {
    width: 100%;
    max-width: 100px;
}

@media screen and (max-width:747px) {
    footer .footer_parent .footer_child {
        flex-basis: calc(100% / 2 - 5px);
    }
}

@media screen and (max-width:420px) {
    footer .footer_parent .footer_child {
        flex-basis: calc(100% / 1 - 10px);
    }
}


/* error message display  */
.error_message_parent {
    position: fixed;
    padding: 8px 10px;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 4px;
    font-family: var(--global-font);

    display: none;
    gap: 10px;
    align-items: center;
    max-width: 90%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.error_message_parent .close_btn {
    border: 1.3px solid #000;
    padding: 1px 8.5px;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
}

.error_message_parent .message_details {
    font-size: 17px;
    color: rgb(255, 29, 29);
    letter-spacing: .4px;
}