@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Lexend;
    user-select: none;
}
html,body
{
    width: 100%;
}

body
{
    background-color: rgba(236, 242, 251, 1);
}


::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background-image: -webkit-gradient(linear,
                                    left bottom,
                                    left top,
                                    color-stop(0.44, #0040ff),
                                    color-stop(0.72, #0040ff),
                                    color-stop(0.86, #0040ff));
}

#ques_main_section_container h4{
    
    font-weight:500;
    
}

#question_ans_main_box .question_box{
    padding-right:15%;
}


.body_main
{
    width: 100%;
}

.container
{
    margin: 0 auto;
    max-width: 1200px;
}

/* 0 Result */
.zero_result_found_msg
{
  padding: 15px 30px;
  border: 2px solid #fd335f;
  color: #fd335f;
  background-color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 50px;
}

@media only screen and (max-width: 767px)
{
    .container
    {
        padding: 0 10px;
    }
}

a
{
    color: inherit;
    text-decoration: none;
}

li
{
    list-style: none;
}


/* ===================== */
/* PreLoader Style Start */
/* ===================== */

.preloader
{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.loader-demo-box {
    border-radius: 0.25rem !important;
  }
  
  .loader-demo-box {
    width: 100%;
    height: 200px;
  }
  
  .jumping-dots-loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
  }
  
  .jumping-dots-loader span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    /* background-color: rgba(24, 57, 103, 1); */
    margin: 35px 5px;
  }
  
  .jumping-dots-loader span:nth-child(1) {
    background-color: rgba(83, 215, 145, 1);
    animation: bounce 1s ease-in-out infinite;
  }
  
  .jumping-dots-loader span:nth-child(2) {
    background-color: rgba(24, 57, 103, 1);
    animation: bounce 1s ease-in-out 0.33s infinite;
  }
  
  .jumping-dots-loader span:nth-child(3) {
    background-color: rgba(83, 215, 145, 1);
    animation: bounce 1s ease-in-out 0.66s infinite;
  }
  
  @keyframes bounce {
    0%,
    75%,
    100% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
  
    25% {
      -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      -o-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  }

/* =================== */
/* PreLoader Style End */
/* =================== */


/* ========================== */
/* Header Section Style Start */
/* ========================== */
.header
{
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 20px hsla(207, 24%, 35%, 0.1);
    background-color: #ffffff;
    z-index: 999;
}

nav
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.logo a
{
    color: #0040ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo a span
{
    color: #ff2121;
}


.logo img
{
	width: 100%;
    max-width: 200px;
}

.menu
{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .header_right_items_box
{
    margin-left: 50px;
} */

.menu a
{
    display: block;
    padding: 7px 15px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s all ease-in-out;
    color: #000000;
}

.menu:hover a
{
    opacity: 0.4;
}

.menu a:hover
{
    opacity: 1;
    color: #0040ff;
}

.menu-icon
{
    display: none;
}

#menu-toggle
{
    display: none;
}

#menu-toggle:checked ~ .menu
{
    transform: scale(1, 1);
}

.papers_btn a
{
    padding: 10px 15px;
    /* background: rgb(0,3,255);
    background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%); */
    color: #0040ff;
    border-radius: 5px;
    border: 2px solid #0040ff;
    cursor: pointer;
}

.papers_btn a:hover
{
    color: #fff;
    background: linear-gradient(10deg, rgba(0,3,255,1) 10%, rgba(2,126,251,1) 90%);
}
  
@media only screen and (max-width: 950px)
{
    .menu
    {
        flex-direction: column;
        background-color: #ffffff;
        align-items: start;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
    }

    .header_right_items_box
    {
        display: block;
        margin: 0;
    }

    .menu a
    {
        margin-left: 12px;
    }

    .menu li
    {
        margin-bottom: 10px;
    }

    .menu-icon
    {
        display: block;
        color: #000000;
        font-size: 36px;
        cursor: pointer;
    }

    .papers_btn a
    {
        margin-left: 25px;
    }
}
  

/* ======================== */
/* Header Section Style End */
/* ======================== */


/* ========================= */
/* Main Slider Start Section */
/* ========================= */

.main_slider_container
{
    width: 100%;
    padding: 40px 0 0;
    background-color: rgb(39 39 66);
    color: #fff;
}

.main_slider_box
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main_slider_box .main_slide_left_main_container,.main_slider_box .main_slide_right_main_container
{
    width: 50%;
}

.main_slider_box .main_slide_left_main_container
{
    text-align: start;
}

/* .main_slider_box .main_slide_left_main_container .heading_title_slider
{
    width: 100%;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
} */

.main_slider_box .main_slide_left_main_container .main_heading_box
{
    width: 100%;
    font-size: 42px;
}

.main_slider_box .main_slide_left_main_container .main_subheading_box
{
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
}

.main_slider_box .main_slide_left_main_container .signup_btn
{
    padding: 15px 20px;
    margin: 25px 0;
    border: none;
    background-color: #0040ff;
    color: #fff;
    font-size: 22px;
    border-radius: 5px;
    cursor: pointer;
}

/* .main_slider_box .main_slide_left_main_container .study_meterial_list
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
} */

/* .main_slider_box .main_slide_left_main_container .study_meterial_list li
{
    width: 50%;
    min-width: 250px;
    padding-bottom: 5px;
} */

.main_slider_box .main_slide_right_main_container
{
    text-align: end;
    position: relative;
    overflow: hidden;
}
.main_slider_box .main_slide_right_main_container img
{
    /* width: 70%; */
    margin-bottom: -5px;
}

.main_slider_box .main_slide_right_main_container .bannner_top_circle
{
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 150px;
    height: 150px;
    outline: 100px solid red;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {
    .main_slider_container
    {
        padding: 25px 0 0;
    }
    .main_slider_box
    {
        padding: 0px 15px 0 15px;
    }
    .main_slider_box .main_slide_left_main_container,.main_slider_box .main_slide_right_main_container
    {
        width: 100%;
    }
    .main_slider_box .main_slide_right_main_container img
    {
        width: 100%;
    }
    .main_slider_box .main_slide_left_main_container .main_heading_box
    {
        font-size: 32px;
    }
}

/* ======================= */
/* Main Slider End Section */
/* ======================= */

/* =========================== */
/* Main Services Start Section */
/* =========================== */
.main_services_container
{
    width: 100%;
}

.main_services_box
{
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main_services_box .services_card_box
{
    flex: 0 1 calc(30% - 10px);
    text-align: center;
    border-radius: 15px;
    padding: 50px 25px;
}

.main_services_box .services_card_box .s_i_box
{
    padding: 5px 0;
    font-size: 36px;
    color: #ff2121;
}

.main_services_box .services_card_box h4
{
    padding: 15px 0;
    font-size: 24px;
}

.main_services_box .services_card_box p
{
    padding: 10px 0;
    font-size: 14px;
}

.main_services_box .services_card_box a
{
    font-size: 16px;
    text-decoration: underline;
    color: #ff2121;
}

@media screen and (max-width: 767px) {
    .main_services_box .services_card_box
    {
        flex: 0 1 calc(100% - 10px);
        margin: 5px 0;
    }
}

/* ========================= */
/* Main Services End Section */
/* ========================= */

/* ======================== */
/* Why Choose Start Section */
/* ======================== */

.why_choose_container
{
    width: 100%;
    padding: 50px 0;
}

.why_choose_box
{
    background-color: rgba(255, 255, 255, 1);
    padding: 50px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.why_choose_box .why_choose_content_container
{
    width: 55%;
}

.why_choose_box .why_choose_content_container .why_choose_title_heading
{
    color: #ff2121;
}

.why_choose_box .why_choose_content_container .why_choose_us_main_heading
{
    font-size: 42px;
    padding: 10px 0;
}

.why_choose_box .why_choose_content_container p
{
    font-size: 14px;
}

.why_choose_box .why_choose_content_container .why_choose_counter_elemnts_container
{
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.why_choose_box .why_choose_content_container .why_choose_counter_elemnts_container .counter_why_choose_card_box
{
    flex: 0 1 calc(33.33% - 10px);
}

.why_choose_box .why_choose_content_container .why_choose_counter_elemnts_container .counter_why_choose_card_box .counter_box
{
    font-size: 52px;
    font-weight: bold;
}

.why_choose_box .why_chosse_us_banner
{
    width: 40%;
}

.why_choose_box .why_chosse_us_banner img
{
    width: 100%;
    /* margin-top: -100px; */
    border-radius: 5px;
}

.why_choose_paper_btn
{
    padding: 25px 0;
    margin-top: 25px;
}

.why_choose_paper_btn a
{
    margin: 0;
    padding: 15px 30px;
    font-size: 21px;
}
.vl
{
    border-left: 1px solid rgba(84, 84, 84, 0.1);
    height: 100px;
}

@media screen and (max-width: 767px) {
    .why_choose_box
    {
        padding: 25px;
    }
    .why_choose_box .why_choose_content_container .why_choose_us_main_heading
    {
        font-size: 32px;
    }
    .why_choose_box .why_choose_content_container
    {
        width: 100%;
    }
    .vl
    {
        margin: 10px 0;
        border-top: 1px solid rgba(84, 84, 84, 0.1);
        width: 100%;
        height: 0;
    }
    .why_choose_box .why_chosse_us_banner
    {
        width: 100%;
        padding: 25px 0;
    }
    
    .why_choose_box .why_chosse_us_banner img
    {
        margin-top: 0px;
    }
    .why_choose_box .why_choose_content_container .why_choose_counter_elemnts_container .counter_why_choose_card_box
    {
        flex: 0 1 calc(100% - 10px);
    }
}

/* ====================== */
/* Why Choose End Section */
/* ====================== */

/* ========================= */
/* Subject Fav Start Section */
/* ========================= */
.fav_subject_main_container
{
    width: 100%;
    padding: 25px 0;
}

.fav_subject_main_box
{
    width: 100%;
}

.fav_subject_main_box .fav_subject_main_heading
{
    width: 100%;
    text-align: center;
    font-size: 42px;
}

.fav_subject_main_box .subjects_card_main_box_container
{
    width: 100%;
    padding: 25px 0;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
}

.fav_subject_main_box .subjects_card_main_box_container .subject_card
{
    flex: 0 1 calc(25% - 10px);
    padding: 50px 15px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
}

.fav_subject_main_box .subjects_card_main_box_container .subject_card span
{
    padding: 10px 15px;
    font-size: 32px;
    border-radius: 5px;
}

.fav_subject_main_box .subjects_card_main_box_container .subject_card h4
{
    padding: 10px 0;
    font-size: 22px;
}

.suject_paper_btn
{
    width: 100%;
    text-align: center;
}

.suject_paper_btn button
{
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    color: #fff;
    background: rgb(0,3,255);
    background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    outline: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.suject_paper_btn button:hover
{
    background: linear-gradient(10deg, rgba(0,3,255,1) 10%, rgba(2,126,251,1) 90%);
}

@media screen and (max-width: 767px) {
    .fav_subject_main_box .subjects_card_main_box_container .subject_card
    {
        flex: 0 1 calc(33.33% - 10px);
    }
    .fav_subject_main_box .fav_subject_main_heading
    {
        font-size: 32px;
    }
}

@media screen and (max-width: 550px) {
    .fav_subject_main_box .subjects_card_main_box_container .subject_card
    {
        flex: 0 1 calc(50% - 10px);
    }
}
/* ======================= */
/* Subject Fav End Section */
/* ======================= */

/* ===================== */
/* Reviews Start Section */
/* ===================== */
.reviews_main_container
{
    width: 100%;
    padding: 50px 0;
}

.reviews_main_box
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.reviews_main_box .review_banner_container_box
{
    width: 50%;
    text-align: center;
    padding: 15px;
}

.reviews_main_box .review_banner_container_box img
{
    width: 100%;
    /* border-radius: 50%; */
}

.reviews_main_box .reviews_slider_main_box .reviews_box_title
{
    font-size: 18px;
    color: #ff2121;
    margin-left: 5px;
}

.reviews_main_box .reviews_slider_main_box .reviews_main_heading_box
{
    font-size: 52px;
    padding: 10px 0;
}

.reviews_main_box .reviews_slider_main_box
{
    width: 50%;
}

.reviews_main_box .reviews_slider_main_box .slider_reviews
{
    width: 100%;
    position: relative;
}

.reviews_main_box .reviews_slider_main_box .slider_reviews .card-block {
    width: 100%;
    /* display: flex; */
    padding: 0.6em 1em 0.6em 0.6em;
    margin-bottom: 1em;
    border-radius: 0.3em;
}

/* .img {
    width: 421px;
    height: 421px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #d6c091 0%, #c05c9a 100%);
    opacity: 0.7;
    margin: 0 0.6em 0 0;
    border: solid 1px firebrick;
} */

/* .card-block h3 {
    font-size: 3em;
} */

.reviews_main_box .reviews_slider_main_box .slider_reviews .card-block .content p {
    font-size: 16px;
    line-height: 24px;
}

.reviews_main_box .reviews_slider_main_box .slider_reviews .card-block .content .star_main_box
{
    padding-top: 20px;
    padding-bottom: 5px;
    color: #ffbb27;
}

.reviews_main_box .reviews_slider_main_box .slider_reviews .card-block .content .reviews_name
{
    font-weight: bold;
}
.reviews_main_box .reviews_slider_main_box .slider_reviews .mynav {
    position: absolute;
    bottom: 0px;
    right: 0;
    display: inline-block;
    cursor: pointer;
}
.reviews_main_box .reviews_slider_main_box .slider_reviews .mynav-prev,
.reviews_main_box .reviews_slider_main_box .slider_reviews .mynav-next {
    position: relative;
    width: 25px;
    height: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50%;
    border-color: transparent;
    z-index: 9;
}

@media screen and (max-width: 767px) {
    .reviews_main_container
    {
        padding: 50px 15px;
    }
    .reviews_main_box .review_banner_container_box
    {
        width: 100%;
    }
    .reviews_main_box .reviews_slider_main_box
    {
        width: 100%;
    }

    .reviews_main_box .reviews_slider_main_box .reviews_main_heading_box
    {
        font-size: 32px;
    }
}
/* =================== */
/* Reviews End Section */
/* =================== */

/* ============================== */
/* Paper Card Section Style Start */
/* ============================== */
.papercard_main_conatiner
{
    width: 100%;
    /* background-color: #ffffff; */
}
.papercard_main_box
{
    width: 100%;
    padding: 25px;
}

.paper_heading
{
    padding: 10px 0;
}

.papers_card_div_box
{
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    gap: 50px;
    flex-wrap: wrap;
}

.paper_card_section
{
    width: 100%;
    max-width: 350px;
    padding: 50px 25px;
    box-shadow: 10px 10px 0px rgba(115, 77, 255, 0.5);
    background: linear-gradient(-45deg,#9600FF,#AEBAF8);
    /* color: #fff; */
    border-radius: 2px;
    border-left: 20px solid black;
    border-radius: 0px 20px 0px 20px;
    position: relative;
}

.paper_card_section .paper_lang
{
    background-color: #ffbb27;
    border-radius: 0px 20px 0px 20px;
    box-shadow: 5px 5px 0px rgba(97, 97, 97, 0.5);
    padding: 5px 10px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.paper_card_section .paper_attent
{
    font-size: 24px;
    position: absolute;
    top: 15px;
    left: 25px;
}

span
{
    position: relative;
}

.rotate_start
{
    font-size: 8px;
    position: absolute;
    top: 0;
    right: -10;
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }

.paper_card_section .paper_card_heading
{
    width: 100%;
    font-size: 36px;
    padding-top: 15px;
    padding-bottom: 5px;
}

.paper_card_section .paper_details
{
    font-size: 25px;
}

.paper_card_section .paper_details ul
{
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 2px 0;
    font-size: 18px;
}

.paper_card_section .paper_details ul li:first-child
{
    font-weight: 600;
}

.btns_container
{
    width: 100%;
    padding: 20px 0 0;
}

.btns_container .already_attened_Paper_msg
{
    width: 100%;
    color: #ff2121;
}

.btns_container button
{
    width: 100%;
    padding: 10px 0;
    font-size: 24px;
    cursor: pointer;
    border: none;
    color: #fff;
    background: rgb(0,3,255);
    background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    outline: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btns_container button:hover
{
    background: linear-gradient(10deg, rgba(0,3,255,1) 10%, rgba(2,126,251,1) 90%);
}

.btns_container button i
{
    margin-left: 25px;
}


.paper_header_container
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter_subject_level_language
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* .filter_subject_level_language .select_box
{
    flex: 0 1 calc(33.33% - 10px);
} */

.filter_subject_level_language .select_box select
{
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* ============================ */
/* Paper Card Section Style End */
/* ============================ */

/* ================================ */
/* Custom Paper Section Style Start */
/* ================================ */
.custom_popup_paper_details
{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 999;
    top: 0;
    right: -100%;
}

.bg_layer_paper_popup
{
    width: 100%;
    height: 100%;
}

.paper_details_main_body
{
    width: 95%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.paper_details_main_body .border_popup_paper
{
    height: 5px;
    background-color: #0040ff;
    border-radius: 5px;
}

.cross_paper_details_popup
{
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

.paper_details_box
{
    width: 100%;
}

.paper_details_box .popup_details_heading
{
    padding: 0px 30px;
    padding-top: 30px;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paper_details_box .paper_details_text
{
    padding: 15px 30px;
    font-size: 14px;
}

.paper_details_box .paper_rank_details_table
{
    margin: 0 30px;
    max-height: 250px;
    overflow-y: auto;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.paper_details_box .paper_rank_details_table table
{
    width: 100%;
}
.paper_details_box .paper_rank_details_table table td
{
    padding: 5px 10px;
}

.paper_details_box .paper_popup_fee_and_terms_condition
{
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paper_details_box .paper_popup_fee_and_terms_condition .popup_terms_and_condition_box
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.paper_details_box .paper_popup_fee_and_terms_condition .popup_terms_and_condition_box span
{
    font-size: 14px;
}

.paper_details_box .paper_popup_fee_and_terms_condition .popup_terms_and_condition_box span a
{
    text-decoration: underline; 
}

.paper_details_box .paper_popup_fee_and_terms_condition .popup_terms_and_condition_box #terms_condi
{
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.paper_details_box .paper_popup_fee_and_terms_condition .fee_popup_data
{
    font-size: 18px;
}

.paper_details_box .error_popup
{
    padding: 5px 30px;
}

.paper_details_box .popup_buttons
{
    padding: 0px 30px;
    width: 100%;
    margin-bottom: 30px;
}

.paper_details_box .Proceed_btn
{
    width: 100%;
    padding: 10px 0px;
    border-radius: 5px;
    background: #0040ff;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

/* ============================== */
/* Custom Paper Section Style End */
/* ============================== */


/* ==================== */
/* Footer Section Start */
/* ==================== */

.foorer
{
    width: 100%;
    margin-top: 25px;
}

.footer_top_main_container
{
    width: 100%;
    padding: 50px 0;
    background-color: #123088;
    color: #fff;
}

.footer_top_main_container .logo a 
{
    justify-content: flex-start;
}

.footer_top_main_container .footer_top_main_box
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer_top_main_container .footer_top_main_box .footer_card_box
{
    flex: 0 1 calc(25% - 10px);
}

.footer_top_main_container .footer_top_main_box .footer_card_box .icons_address_box
{
    width: 100%;
    padding: 15px 0;
}

.footer_top_main_container .footer_top_main_box .footer_card_box .icons_address_box .icons_footer
{
    width: 100%;
    /* font-size: 14px; */
    padding: 5px 0;
    display: flex;
    justify-content: flex-start;
    column-gap: 15px;
    align-items: flex-start;
}

.footer_top_main_container .footer_top_main_box .footer_card_box form
{
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_top_main_container .footer_top_main_box .footer_card_box form input
{
    display: inline-block;
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    border: none;
}

.footer_top_main_container .footer_top_main_box .footer_card_box form button
{
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    border: none;
    cursor: pointer;
    background-color: #ffbb27;
    color: #fff;
}

.hr_footer
{
    width: 100%;
    border-top: 1px solid #999;
}

.footer_bottom_main_container
{
    width: 100%;
    padding: 15px 0;
    background-color: #123088;
    color: #fff;
}

.footer_bottom_main_container .footer_bottom_main_box
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .footer_top_main_container .footer_top_main_box .footer_card_box
    {
        flex: 0 1 calc(100% - 10px);
    }
    
    .footer_top_main_container
    {
        padding: 50px 25px;
    }
}

/* ================== */
/* Footer Section End */
/* ================== */