@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');


*{
  margin: 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
}

:root {
    --primary-color: #30315c;
    --secondry-color: #b0cb1f;
    --white-color: #fff;
    --black-color: #070707;
    --black-color2: #141615;
    --black-color3: #202020;
    --black-color4: #212529;
    --gray-color: #F5F5F5;
    --gray-color2: #ECF0F1;
    --gray-color3: #F8F8FF;
    --gray-color4: #f6f6f6;
    --facebook-color: #3b5998;
     --instagram-color: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    --danger-color: #af2722;
    --youtube-color: #c4302b;
    --lightgray-color: #e7e6e6;
    --background-color: #f9f6f0;
    --hover-color:#d8d7d7;
}

img {
  max-width: 100% !important;
}

body {
    font-family: "Lexend Deca", sans-serif;
   overflow-x: hidden !important
}

body,
html {
  scroll-behavior: smooth;
    font-family: "Lexend Deca", sans-serif;
}

a {
  text-decoration: none !important;
}

a:focus {
  outline: none;
  text-decoration: none;
}


textarea{
    resize: none !important;
}

h1, h2, h3, h4, h5, h6{
   font-family: "Exo 2", sans-serif;

}

.products_main_div_box img,
.why_choose_us_image_main_div,
.testimonials_main_div,
.gallery_slider_main_div,
.number_of_counts_box_main_div {
  will-change: transform, opacity;
}

/*  */
.split-heading {
    text-transform: capitalize;
 }

.split-heading .char {
  display:inline-block;
  white-space:pre;
  text-transform: capitalize;
}


.slider_section2{
    display: none;
}


/* css  */

.some_points_section{
    background-color: var(--gray-color);
    padding: 10px 0px 10px 0px;
}

.some_flex_main_div{
    display: flex;
    align-items: center;
    justify-content: space-between;
     flex-wrap: wrap;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 0px 5px 0px 5px;
    background-color: var(--secondry-color);
    border-radius: 20px 5px 20px 5px;
    border: 2px solid var(--white-color);
}


.item_flex_div{
    text-align: center;
    border-right: 2px solid var(--white-color);
    padding: 12px 10px 12px 10px;
    width: 20%;
}

.item_flex_div:nth-child(2) {
    background-color: var(--primary-color);
}

.item_flex_div:nth-child(4) {
    background-color: var(--primary-color);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.item_flex_div:nth-child(2) .item_icon_div img,
.item_flex_div:nth-child(4) .item_icon_div img {
    animation: bounce 2.5s infinite ease-in-out;
}



.item_flex_div:nth-last-child(1){
    border: none !important;
}

.item_icon_div > span{
    display: block;
    margin-bottom: 5px;
}

.item_icon_div > span > img{
    width: 50px;
    filter: brightness(0%) invert(1);
}

.item_flex_div > h3{
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px !important;
    color: var(--white-color);
}
/* css end */

/* products css start */
.products_section{
    padding: 30px 0px 20px 0px;
    background-color: var(--gray-color);
}

.products_title_div{
    text-align: center;
    margin-bottom: 35px;

}

.products_title_div > h1 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 0px !important;
}

.products_title_div > h1 i.fa-motorcycle {
    display: inline-block;
    animation: scootyMove 3s linear infinite;
    font-size: 25px;
    color: var(--secondry-color);
}

@keyframes scootyMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); } /* move 10px right */
    100% { transform: translateX(0); }  /* back to start */
}

.products_title_div > p{
    color: var(--black-color4);
    font-size: 15px;
    max-width: 800px;
    margin: auto;
    margin-top: 8px;
    font-weight: 400;
    line-height: 25px;

}


.products_main_div{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white-color);
    padding: 10px 5px 5px 5px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.products_image_div > img{
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.products_details_div > h2{
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    border-bottom: 1.5px solid var(--secondry-color);
    padding-bottom: 6px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}


.products_details_div > h2 > a{
    font-size: 14px;
    text-decoration: underline !important;
    text-transform: capitalize;
    color: var(--danger-color);
}

.products_details_div > h2 > a > i{
    font-size: 13px;
}

.product_feature_flex_div{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
    border-bottom: 1.2px dotted #b8b7b7;
    padding-bottom: 10px;
}

.product_feature_flex_div:nth-last-child(1){
    border: none !important;
}

.product_feature_item_div{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 55%;
}


.product_feature_item_div > div{
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    line-height: 27px;
    text-align: center;
    border-radius: 3px;
    padding: 4px;
    display: inline-block;
    flex-shrink: 0;
}

.product_feature_item_div > div > img{
    width: 30px;
    text-align: center;
    border-radius: 3px;
    object-fit: contain;
    filter: brightness(0%) invert(1);


}

.product_feature_item_div > span > h4{
    font-size: 12px;
    color: var(--black-color3);
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 3px !important;
}

.product_feature_item_div > span > h3{
    font-size: 14px;
    color: var(--youtube-color);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

/* end */

/* about us css */
.aboutus_section{
    padding: 30px 0px 30px 0px;
}

.about_us_content_div > h3{
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 7px !important;
}


.about_us_content_div > h4{
    color: var(--secondry-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 25px;
    margin-bottom: 7px !important;
}

.about_us_content_div > p{
    color: var(--black-color2);
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 8px !important;
}


.about_us_content_div > h5{
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 2px !important;
}
/* end */


/* counter css */
.counter_state_section {
    background-color: var(--white-color);
    padding: 40px 0px 30px 0px;
    margin-bottom: 20px;
}

.counter_title_div {
    text-align: center;
    margin-bottom: 60px;
}

.counter_title_div>h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px !important;
}

.counter_title_div > p {
    font-size: 15px;
    font-weight: 400;
    max-width: 700px;
    margin: auto;
}

.counter_main_div {
    margin-bottom: 15px;
    text-align: center;
    padding: 20px 10px 20px 10px;
    border-radius: 3px;
    border: 2px solid var(--white-color);
    border-radius: 10px;
    background-color: var(--primary-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.counter_state_section>.container>.row>.col-lg-3:nth-child(odd) .counter_main_div {
    background-color: var(--primary-color);
}

.counter_state_section>.container>.row>.col-lg-3:nth-child(even) .counter_main_div {
    background-color: var(--secondry-color);
    animation: moveUpDown 3s ease-in-out infinite;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.counter_icon_div {
    margin-bottom: 10px;
    margin-top: -60px;
    background-color: var(--primary-color);
    display: inline-block;
    border-radius: 100px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border: 5px solid var(--white-color);
}


.counter_state_section>.container>.row>.col-lg-3:nth-child(odd) .counter_main_div>.counter_icon_div {
    background-color: var(--primary-color);
}

.counter_state_section>.container>.row>.col-lg-3:nth-child(even) .counter_main_div>.counter_icon_div {
    background-color: var(--secondry-color);
}


.counter_icon_div>img {
    width: 50px;
    height: 85px;
    object-fit: contain;
    margin: auto;
    display: block;
    filter: brightness(0%) invert(1);
}

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

.counter_number_div>h3 {
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 10px !important;
    color: var(--white-color);

}

.counter_number_div>span {
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 30px;
    margin: 0px 0px 0px 8px ;
}

.counter_main_div>h4 {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px !important;

}

/* counter css end */


/* css start */

/* testimonials css start */
.testimonials_section{
    padding: 30px 0px 20px 0px;
    background-color: var(--gray-color);
}

.testimonials_title_div{
    text-align: center;
    margin-bottom: 30px;
}

.testimonials_title_div > h1 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 0px !important;
}

.testimonials_title_div > h1 i.fa-motorcycle {
    display: inline-block;
    animation: scootyMove 3s linear infinite;
    font-size: 25px;
    color: var(--secondry-color);
}

@keyframes scootyMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); } /* move 10px right */
    100% { transform: translateX(0); }  /* back to start */
}

.testimonials_content_main_div{
    background-color: var(--white-color);
    padding: 20px 20px;
}

.testimonials_title_div > p{
    color: var(--black-color4);
    font-size: 15px;
    max-width: 800px;
    margin: auto;
    margin-top: 8px;
    font-weight: 400;
    line-height: 25px;
}

.testimonials_image_div{
    margin-bottom: 10px;
}

.testimonials_image_div > .d-flex > .flex-shrink-0 > img{
    width: 70px;
}

.testimoals_details_div > h5{
    font-weight: 700;
    margin-bottom: 2px !important;
    text-transform: capitalize;
    color: var(--primary-color);
}

.testimoals_details_div > p{
    margin-bottom: 0px !important;
}

.testimoals_details_div > p > i{
    color: #c7c006;
    font-size: 13px;
}

.testimonials_content_main_div > p{
    font-size: 14px;
    margin-bottom: 0px !important;
    line-height: 24px;
}

/* end */


/* css start */
.contact_us_page_section {
  padding: 40px 0px 40px 0px;
}

.contact_page_frm_main_div {
  margin-bottom: 30px;
}

.contact_page_frm_main_div>span {
  color: var(--black-color3);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.contact_page_frm_main_div>h1 {
  font-size: 35px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--black-color2);
  letter-spacing: .4px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact_page_frm_main_div input {
  margin-bottom: 20px;
  padding: 20px 20px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
  box-shadow: none !important;
  outline: none !important;
}

.contact_page_frm_main_div textarea {
  margin-bottom: 20px;
  padding: 20px 20px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
  box-shadow: none !important;
  outline: none !important;
}

.contact_page_frm_main_div button {
  border: 1px solid var(--gray-color) !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 2px !important;
  padding: 12px 30px;
  font-weight: 500;
  background-color: var(--primary-color);
  font-size: 15px;
  color: var(--white-color);
}

.contact_page_frm_main_div button:hover{
    background-color: var(--secondry-color) !important;
      color: var(--white-color) !important;
}

.main_div_contact_us_numbers>span {
  color: var(--black-color3);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.main_div_contact_us_numbers>h1 {
  font-size: 35px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--primary-color);
  letter-spacing: .4px;
  margin-bottom: 20px;
}


.main_div_contact_us_numbers .d-flex {
  margin-bottom: 30px;
}

.main_div_contact_us_numbers .d-flex>.flex-shrink-0>span {
  background-color: var(--primary-color);
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  border-radius: 10px;
  color: var(--white-color);
}

.main_div_contact_us_numbers .d-flex>.flex-grow-1 h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0px;
  color: var(--secondry-color);
  letter-spacing: .4px;
  margin-bottom: 1px;
}

.main_div_contact_us_numbers .d-flex>.flex-grow-1 a {
  display: block;
  color: var(--black-color4);
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
}


.main_div_contact_us_numbers .d-flex>.flex-grow-1 p {
  display: block;
    color: var(--black-color4);
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
}

/* css end */


/* pagetitle css */
.page_title_mkp_section {
  position: relative;
  background-position: center center;
  background-size: cover;
}

.page_ti_overly_mkp_div {
  background-color: var(--white-color);
  padding-top: 0px;
  padding-bottom: 0px;
}


.page_title_tax_mkp_div {
  text-align: center;
  display: inline-block;
  padding: 7px 5px 7px 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.page_title_tax_mkp_div h1 {
  color: var(--black-color);
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 900;
  display: none !important;
}

.page_title_tax_mkp_div ul {
  list-style: none;
  padding: 4px 20px;
  border-radius: 100px;
  margin-bottom: 0px !important;
}

.page_title_tax_mkp_div li a {
  color: var(--black-color);
  font-weight: 600;
}

.page_title_tax_mkp_div span {
  margin: 0px 5px 0px 5px;

}

.page_title_tax_mkp_div li {
  display: inline-block;
  color: var(--secondry-color);
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
}


/* page titile css end */

/*  */

.products_details_section{
    padding: 30px 0px 30px 0px;
}

.details_img_div{
    margin-bottom: 15px;
}

.details_img_div > img{
    width: 100%;
    margin: auto;
    height: 300px;
    display: block;
    object-fit: contain;
}


.details_img_div02{
    margin-bottom: 15px;
}

.details_img_div02 > img{
    width: 100%;
    margin: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.details_content_div_pro > h1{
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.details_content_div_pro > p{
    color: var(--black-color2);
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 2px !important;
}

.details_content_div_pro > p > strong{
    color: var(--primary-color);
    font-size: 14px;
}

.details_content_div_pro > h2{
    font-size: 20px;
    color: var(--secondry-color);
    text-transform: capitalize;
    font-weight: 700;
}

/*  */


/*  */
.mobile_call_enquiry_fixed_main_div{
    position: fixed;
    bottom: 45px;
    right: 10px;
    z-index: 99999;
}

.mobile_enquiry_list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.mobile_enquiry_list > a{
    margin-bottom: 15px;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    display: inline-block;
}

.mobile_enquiry_list > a:nth-child(1){
    background-color:#477002;
}


.mobile_enquiry_list > a:nth-child(2){
    background-color:#eb3d0d;
    color: var(--white-color);
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(25, 243, 130, 0.4);
  }
  100% {
    box-shadow: 0 0 7px 20px rgba(211, 128, 69, 0);
  }
}


.pulse {
  animation: shadow-pulse 1.5s infinite;
}


@keyframes shadow-pulse2 {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 7px 15px rgba(255, 255, 255, 0);
  }
}

.pulse2 {
  animation: shadow-pulse2 1.5s infinite;
}
/*  */

/*  */
.whatsapp_fixed_main_div{
    position: fixed;
    bottom: 45px;
    left: 10px;
    z-index: 99999;
}

    .mobile_whatsapp{
        display: none;
    }

.mobile_whatsapp_list > a{
    margin-bottom: 5px;
    padding: 7px 10px 7px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    background-color: #02c18d;
}


@keyframes shadow-pulse3 {
  0% {
    box-shadow: 0 0 0 0px rgba(18, 207, 147, 0.4);
  }
  100% {
    box-shadow: 0 0 7px 15px rgba(90, 228, 205, 0);
  }
}

.pulse3 {
  animation: shadow-pulse3 1.5s infinite;
}

/*  */



/*  */

.enquiry_modal_main_div > .modal > .modal-dialog > .modal-content {
    background-color:var(--white-color) !important;
    border-radius: 4px !important;
}

.enquiry_modal_main_div > .modal > .modal-dialog > .modal-content > .modal-header{
    padding: 7px 20px !important;
}

.enquiry_modal_main_div > .modal > .modal-dialog > .modal-content > .modal-header > button{
    background-color:var(--primary-color) !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 100px !important;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color:#fff;
    font-size: 14px;
}

.enquiry_modal_image_div > img{
    border-radius: 10px;
}

.enquiry_modal_main_div > .modal > .modal-dialog > .modal-content > .modal-header > h4{
color:var(--primary-color);
font-weight: 800;
text-transform: capitalize;
font-size: 20px;
margin-bottom: 0px !important;
}
/*  */



.enquirymodal_form_main_div{
    background-color: var(--white-color);
    padding: 1px;
    border-radius: 5px;
}

.enquirymodal_form_main_div > h2{
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 800;
    color: var(--secondry-color);
    margin-bottom: 10px;
}

.enquirymodal_image_div2 > img{
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 4px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.enquirymodal_input_div{
    margin-bottom: 8px;
    position: relative;
}

.enquirymodal_input_div > input{
    margin-bottom: 10px;
    padding: 13px 20px;
    outline: 0;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 0.9rem;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
}


.enquirymodal_input_div > textarea{
    padding: 13px 20px;
    outline: 0;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 0.9rem;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;

}


.enquirymodal_input_div ::placeholder{
    font-size: 14px;
    color: #686a6f !important;
}



.enquirymodal_input_div > select{
   margin-bottom: 10px;
    padding: 13px 20px;
    outline: 0;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 14px;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
     appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 35px;
  text-transform: capitalize;

}

.enquirymodal_input_div select + i.fa-chevron-down {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #333;
  font-size: 14px;
}


.enquirymodal_input_div select  option{
    color: #222222 !important;
}

.enquirymodal_btn_div > button{
    background-color: var(--primary-color) !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.enquirymodal_btn_div > button:hover{
    background-color: var(--secondry-color) !important;
}

.enquirymodal_input_div > label{
    font-size: 14px;
    color: #121212;
    margin-bottom: 3px !important;
}

/*  */

/*  */

.swiper{
    overflow: unset !important;
}

.swiper-button-prev:after{
    display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after{
    display: none !important;
}

.products_swiper_slider {
  position: relative;
}

.custom-swiper-btns {
  position: absolute;
  top: -20px;
  right: 50px;
  display: flex;
  gap: 4px;
}

.custom-swiper-btns button {
  background: transparent;
  border: none;
  font-size: 13px;
  cursor: pointer;
  background-color: var(--secondry-color);
  color: var(--white-color);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 10px;
}

/*  */

/* footer contact us css*/
.footer_contact_us_section{
    background-color: var(--secondry-color);
    padding: 20px 0px 5px 0px;
}

.footer_number_div{
    margin-bottom: 15px;
}

.footer_number_div > .d-flex > .flex-shrink-0 > i{
background-color: var(--white-color);
width: 55px;
height: 55px;
line-height: 60px;
text-align: center;
border-radius: 100px 100px 10px 100px;
color: var(--secondry-color);
font-size: 25px;

}

.footer_num_content_div > h5{
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 2px !important;
}

.footer_num_content_div > a{
    display: block;
    color: var(--white-color);
    font-size: 14px;
}


.footer_num_content_div > a:hover{
    color: var(--white-color);
}

.footer_num_content_div > p{
    margin-bottom: 0px !important;
    color: var(--white-color);
    font-size: 14px;
}

/* footer contact us css end */

/* footer css */
.footer{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.footer-overaly{
   background-color: var(--primary-color);
    padding: 50px 0px 20px 0px;
}


.main_div_footer {
    margin-bottom: 10px;
}

.main_div_footer img {
    width: 200px;
    margin-bottom: 8px;
}

.main_div_footer .fa {
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
}

.footer_num_div > h5{
    margin-bottom: 1px !important;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    color: var(--white-color);
}

.footer_num_div a {
    color: var(--white-color);
    display: block;
    font-size: 14px;
    line-height: 24px;

}


.footer_num_div a:hover {
    color: var(--white-color);
    display: block;
    font-size: 14px;
}

.footer_num_div p {
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 0px !important;

}

.main_div_footer > h5 {
    color: var(--white-color);
    text-transform: capitalize;
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 700;

}

.footer_usefull_link {
    margin-bottom: 20px;
}

.footer_usefull_link h5 {
    color: var(--white-color);
    text-transform: capitalize;
    padding-bottom: 6px;
    font-size: 20px;
    font-weight: 700;

}

.footer_usefull_link ul {
    list-style: none;
    padding: 0px;
}

.footer_usefull_link li {
    line-height: 45px;
}

.footer_usefull_link li a {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: .3px;
    text-transform: capitalize;

}


.footer_usefull_link li a:hover {
    color: var(--gray-color);
    font-size: 14px;
    letter-spacing: .3px;
}


.footer_usefull_link li:before {
    position: relative;
    content: '\279D';
    margin-right: 4px;
    font-weight: bold;
    color: var(--white-color);
    top: 1px;
    font-size: 15px;
}

.footer_usefull_link b {
    letter-spacing: 1px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
}

.footer_usefull_link > p{
    margin-bottom: 10px !important;
}

.footer_usefull_link p iframe{
    border-radius: 10px;
}

.footer_social_icon {
    margin-top: 5px;
    margin-bottom: 20px;
}

.footer_social_icon > b{
    display: block;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.footer_social_icon a {
    background-color: var(--secondry-color);
    width: 33px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    color: var(--white-color);
    border-radius: 5px;
    margin: 0px 2px;
    font-size: 14px;
}


.app_side_bar_div2{
 margin-top: 10px;
}

.app_side_bar_div2 > h6{
    color: var(--white-color);
    margin-bottom: 5px;
}

.app_side_bar_div2 > a > img{
    width: 130px;
}

/*  */

 .copy_right_section{
    background-color: var(--secondry-color);
    text-align: center;
    padding: 7px 1px;
  }

  .copyright_content_div > p{
    margin-bottom: 0px !important;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
  }

  .copyright_content_div > p > a{
    color: var(--white-color);
    text-decoration: underline !important;
  }

/**/

 .scroll-to-top {
        position: fixed;
        right: -140px;
        bottom: 300px;
        transform: rotate(90deg);
        transform-origin: left center;
        z-index: 9999;
    }

    .scroll-top-inner {
        display: flex;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all cubic-bezier(.4, 0, .2, 1) .4s;
        cursor: pointer;
        padding: 6px 10px;
        background: transparent;
        border-radius: 6px;

    }

    .scroll-top-inner.visible {
        visibility: visible !important;
        opacity: 1 !important;
    }

    .scroll-bar {
        width: 50px;
        height: 2px;
        margin-right: 10px;
        position: relative;
        background: rgba(0, 0, 0, 0.04);
    }

    .scroll-bar:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: var(--secondry-color);
        opacity: .15;
    }

    .bar-inner {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background-color: var(--facebook-color);
        transition: width 150ms linear;
    }

    .scroll-bar-text {
        font-size: 15px;
        font-weight: 700;
        color: #052944;
        user-select: none;
    }

    .scroll-top-inner.on-footer {

        background: transparent;
    }


    .scroll-top-inner.on-footer .scroll-bar:before {
        background-color: rgba(255, 255, 255, 0.18);
    }

    .scroll-top-inner.on-footer .bar-inner {
        background-color: #f96f63;
    }

    .scroll-top-inner.on-footer .scroll-bar-text {
        color: #f96f63;
    }
