@import url('https://fonts.googleapis.com/css2?family=Heebo&family=Poppins:wght@400;500;600;700;900&family=Roboto:wght@400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body a {
    text-decoration: none;
}

.cursor_pointer {
    cursor: pointer;
}

:root {
    --white-color: #fff;
    --hover-yellow: #eaff7e;
    --danger-color: #DC4C64;
    --secondary-color: #565959;
    --success-color: #14A44D;
    --info-color: #54B4D3;
    --black-color: #000;
    --global-font: Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header nav .navcontainer .nav_parent {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(to right, #29323c, #485563);
    color: var(--white-color);
    align-items: center;
}

header nav .navcontainer .nav_parent a {
    color: var(--white-color);
    transition: all ease-in-out .3s;
}

header nav .navcontainer .nav_parent a:hover {
    color: var(--hover-yellow);
}

header nav .navcontainer .nav_parent .logo_link {
    font-size: 19px;
    letter-spacing: .6px;
}
header nav .navcontainer .nav_parent .nav_links_desk .humburg_container{
    display: flex;
    align-items: center;
    gap: 10px;
}
header nav .navcontainer .nav_parent .nav_links_desk .humburg_container .bi {
    font-size: 18px;
    cursor: pointer;
}
header nav .navcontainer .nav_parent .nav_links_desk .humburg_container .bi-share{
    font-size: 14px !important;
}

header nav .navcontainer .mobile_nav_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(to right, #29323c, #485563);
    transition: all ease-in-out .3s;
    height: 0;
    overflow: hidden;
}

header nav .navcontainer .mobile_nav_links a {
    color: var(--white-color);
    font-size: 17px;
    transition: all ease-in-out .3s;
}

header nav .navcontainer .mobile_nav_links a:hover {
    color: var(--hover-yellow);
}

header nav .navcontainer .mobile_nav_links.show {
    height: auto;
    padding: 15px;
}

/* input area */
.input_area {
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #29323c, #485563);
    padding: 40px 10px 20px 10px;
    color: var(--white-color);
    position: relative;
    font-family: var(--global-font);
}

.input_area .input_parent {
    text-align: center;
    max-width: 750px;
}

.input_area .input_parent .heading_txt {
    font-size: 28px;
    letter-spacing: .8px;
    font-weight: 700;
    margin: 0;
}

.input_area .input_parent .short_para {
    font-size: 16.5px;
}

.input_area .input_parent .input_field_parent {
    display: flex;
    justify-content: center;
}

.input_area .input_parent .input_field_parent .input_field_cls {
    display: flex;
    flex-direction: column;
    padding: 13px 2px;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
}

.input_area .input_parent .input_field_parent .input_field_cls:focus {
    outline: none;
}

.input_area .input_parent .input_field_parent .dnd_button {
    border: none;
    padding: 13px;
    background-color: #0095f6;
    color: var(--white-color);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    white-space: nowrap;
}

.input_area .input_parent .input_field_parent .dnd_button:disabled {
    background-color: #656565;
}

.input_area .input_parent #progress_bar {
    width: 100%;
    background: #fff;
    padding: 3px;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
    margin-top: 10px;
    display: none;
}

.input_area .input_parent #progress_bar div {
    width: 70%;
    height: 10px;
    background: linear-gradient(to right, #29323c, #485563);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

@media screen and (max-width: 425px) {
    .input_area {
        padding: 15px 10px;
    }

    .input_area .input_parent .input_field_parent .input_field_cls {
        width: 95%;
    }

    .input_area .input_parent .input_field_parent .dnd_button {
        padding: 0 5px;
        margin-right: 2px;
    }

    .input_area .input_parent .heading_txt {
        font-size: 22px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 350px) {
    .input_area {
        padding: 15px 8px;
    }

    .input_area .input_parent .heading_txt {
        font-size: 20px;
        letter-spacing: .3px;
    }

    .input_area .input_parent .short_para {
        font-size: 14px;
    }

}

/* animation */
.animation_parent_bxes .have_a_question_animation {
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    position: absolute;
}

.animation_parent_bxes .have_a_question_animation:nth-child(1) {
    bottom: 2%;
    left: 2%;
    animation: square 7s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(2) {
    bottom: 8%;
    left: 8%;
    animation: square 10s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(3) {
    bottom: 10%;
    left: 16%;
    animation: square 9s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(4) {
    bottom: 12%;
    left: 24%;
    animation: square 11s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(5) {
    bottom: 10%;
    left: 32%;
    animation: square 7s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(6) {
    bottom: 5%;
    left: 40%;
    animation: square 11s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(7) {
    bottom: 9%;
    left: 48%;
    animation: square 12s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(8) {
    bottom: 11%;
    left: 56%;
    animation: square 8s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(9) {
    bottom: 15%;
    left: 64%;
    animation: square 7s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(10) {
    bottom: 20%;
    left: 72%;
    animation: square 8s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(11) {
    bottom: 9%;
    left: 80%;
    animation: square 7s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(12) {
    bottom: 16%;
    left: 88%;
    animation: square 6s linear infinite;
}

.animation_parent_bxes .have_a_question_animation:nth-child(13) {
    bottom: 9%;
    left: 94%;
    animation: square 8s linear infinite;
}

@keyframes square {
    0% {
        transform: scale(0) translateX(0) rotate(0);
        opacity: .2;
    }

    100% {
        transform: scale(1.2) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .animation_parent_bxes .have_a_question_animation:nth-child(1) {
        bottom: 2%;
        left: 2%;
        animation: square 7s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(2) {
        display: none;
        bottom: 8%;
        left: 8%;
        animation: square 10s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(3) {
        display: none;
        bottom: 10%;
        left: 16%;
        animation: square 9s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(4) {
        display: none;
        bottom: 12%;
        left: 24%;
        animation: square 11s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(5) {
        bottom: 10%;
        left: 32%;
        animation: square 7s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(6) {
        display: none;
        bottom: 5%;
        left: 40%;
        animation: square 11s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(7) {
        bottom: 9%;
        left: 48%;
        animation: square 12s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(8) {
        display: none;
        bottom: 11%;
        left: 56%;
        animation: square 8s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(9) {
        bottom: 15%;
        left: 64%;
        animation: square 7s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(10) {
        display: none;
        bottom: 20%;
        left: 72%;
        animation: square 8s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(11) {
        display: none;
        bottom: 9%;
        left: 80%;
        animation: square 7s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(12) {
        bottom: 16%;
        left: 88%;
        animation: square 6s linear infinite;
    }

    .animation_parent_bxes .have_a_question_animation:nth-child(13) {
        display: none;
        bottom: 9%;
        left: 94%;
        animation: square 8s linear infinite;
    }
}

/* fetched video  */
.fetched_media_container {
    display: none;
    align-items: center;
    flex-direction: column;
    background-color: #c9c9c9;
    font-family: var(--global-font);
}

.fetched_media_container .fetched_video_outdoor {
    padding: 10px;
}

.fetched_media_container .fetched_media_parent {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 600px;
    padding: 10px;
    gap: 10px;
    flex-wrap: wrap;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    background: #e7dcf5;
}

.fetched_media_container .fetched_media_parent .img_container {
    max-width: 500px;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.fetched_media_container .fetched_media_parent .img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out .3s;
}

.fetched_media_container .fetched_media_parent .img_container:hover img {
    scale: 1.3;
}

.fetched_media_container .download_link_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.fetched_media_container .download_link_btn a {
    color: var(--white-color);
    background: #0095f6;
    padding: 8px 10px;
    color: var(--white-color);
    /* width: fit-content; */
    border-radius: 7px;
    transition: all ease-in-out .3s;
    letter-spacing: .9px;
}



/* how to dwonload  */
.how_to_download_container {
    margin: 30px 20px;
    font-family: var(--global-font);
}

.documention_for_download_parent {
    padding: 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    transition: all ease-in-out .4s;
    overflow: hidden;
}

.documention_for_download_parent .header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    cursor: pointer;
}

.documention_for_download_parent .hide_show .navigation_span_container i {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
}

.documention_for_download_parent .heading_txt {
    margin: 0;
    padding: 15px 5px;
    font-size: 23px;
    color: #1e2d56;
}

.documention_for_download_parent .content {
    height: 0;
    overflow: hidden;
    transition: all ease-in-out .4s;
}

.documention_for_download_parent .content.show {
    height: auto;
    transition: all ease-in-out .4s;
    display: flex;
    flex-direction: column;
}

.documention_for_download_parent .content .img_parent {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.documention_for_download_parent .content .img_parent .img_child {
    flex-basis: calc(25% - 10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.documention_for_download_parent .content .img_parent .img_child span {
    letter-spacing: .5px;
    background: #29323c;
    padding: 5px 2px;
    color: var(--white-color);
}

.documention_for_download_parent .content .img_parent .img_child img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 1024px) {
    .documention_for_download_parent .content .img_parent .img_child {
        flex-basis: calc(50% - 10px);
    }
}

@media screen and (max-width: 650px) {
    .documention_for_download_parent .content .img_parent .img_child {
        flex-basis: calc(100% - 10px);
    }

    .how_to_download_container {
        margin: 10px;
    }

    .documention_for_download_parent {
        padding: 5px;
    }
}

/* heading  */
.heading_cls{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 10px 10px 10px;
    font-family: var(--global-font);
}
.heading_cls .heading_one{
    font-weight: 600;
    font-size: 34px;
    margin: 0;
}
.heading_cls .nearheadin_span{
    text-align: center;
}


/* faq */
.heading_two{
    font-size: 29px !important;
}

.faq_container {
    padding: 1px 0 20px 0;
    font-family: var(--global-font);
}
.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: "-";
}



/* footer  */
footer {
    margin-top: 30px;
}

footer .footer_parent {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    background: linear-gradient(to right, #29323c, #485563);
    color: var(--white-color);
    letter-spacing: .7px;
}

footer .footer_parent a {
    color: var(--white-color);
    font-size: 17px;
    transition: all ease-in-out .3s;
}

footer .footer_parent a:hover {
    color: var(--hover-yellow);
}

/* 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%;
}

.error_message_parent .close_btn {
    border: 1.3px solid #000;
    padding: 1px 8.5px;
    border-radius: 50%;
    cursor: pointer;
}

.error_message_parent .message_details {
    font-size: 17px;
    color: rgb(255, 29, 29);
    letter-spacing: .4px;
}