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

// @font-face {
//     font-family: 'Quicksand';
//     src: url('asset/Quicksand/Quicksand-Regular.ttf') format('truetype');
//     font-weight: normal;
// }
// @font-face {
//   font-family: 'AuroraBoldCondensed';
//   src: url('https://db.onlinewebfonts.com/t/7e9f34fef0fda35a5bd0ab82ec6be5db.woff') format('woff'),
//        url('https://db.onlinewebfonts.com/t/7e9f34fef0fda35a5bd0ab82ec6be5db.ttf') format('truetype');
//   font-weight: bold;
//   font-style: normal;
// }

// /* Custom Font Class */
// .auroraCondensed {
//     font-family: 'AuroraBoldCondensed', sans-serif;
//     font-weight: bold;
// }
// $auroraCondensed: "AuroraBoldCondensed" sans-serif;

@font-face {
    font-family: 'Quicksand';
    src: url('asset/Quicksand/Quicksand-Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('asset/Roboto/Roboto_Condensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}
@font-face {
  font-family: 'AuroraBoldCondensed';
  src: url('https://db.onlinewebfonts.com/t/7e9f34fef0fda35a5bd0ab82ec6be5db.woff') format('woff'),
       url('https://db.onlinewebfonts.com/t/7e9f34fef0fda35a5bd0ab82ec6be5db.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Custom Font Class */
.auroraCondensed {
    font-family: 'AuroraBoldCondensed', sans-serif;
    font-weight: bold;
}
$auroraCondensed: "AuroraBoldCondensed" sans-serif;

.Greenf{
    color: #2D923F !important;
}

body {
    // font-family: "Quicksand", sans-serif !important;
    font-family: "Roboto", sans-serif !important;
    background-color: #FEFCFF;
    height: 100%;
    overflow: hidden;
}
a{
    text-decoration: none !important;
}

.My_custome_btn{
    display: flex;
    .Custome_Comun_button{
        background-color: #2D923F;
        border: 1px solid #2D923F;
        border-radius: 50px;
        // text-transform: uppercase;
        height: 40px;
        padding: 0px 15px;
        display: flex;
        align-items: center;
        h5{
            color: #FFF;
            font-size: 18px;
            font-weight: 700;
            padding-top: 1px;
        }
    }
    .Btn_arrow_box{
        border: 1px solid #2D923F;
        border-radius: 50%;
        height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    &:hover{
        .Custome_Comun_button{
            background-color: #2D923F;
            h5{
                color: #FFF;
            }
        }
        .Btn_arrow_box{
            background-color: #08449A;
            svg{
                path{
                    fill: #FFF;
                }
            }
        }
    }
}

.Hariom_Center_Logo{
    position: absolute;
    width: 271px;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    img{
        width: 100%;
    }
}

.menu_btn.active {
    // background: #007bff;
    color: #fff;
    border-radius: 0px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid #2D923F !important;
    h5{
        color: #2D923F;
        font-weight: 700;
    }
}

.viewport-box {
    position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #FEFCFF;
}

.mainBoc {
    position: relative;
    overflow: hidden;
    background: #FEFCFF;
    border: 1px solid #5BB76B;
    border-radius: 20px;
    height: 100%;
}
.Banner_Video{
    position: absolute;
    width: 100%;
    height: 100%;
    // overflow: hidden;
    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        // height: 100%;
        object-fit: cover;
    }
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
        z-index: 1;
    }
}

/* Outer screen box - full height minus padding */
.Screen_Box {
  height: 100%;
  display: flex;
  flex-direction: column;
//   padding: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 25px;
}

/* Yahan sirf Main_Contain_Box scroll karega */
.Main_Contain_Box {
    position: relative;
    // overflow-x: hidden;
  flex: 1 1 auto;
  overflow-y: auto;
  margin-top: 30px;
//   margin-top: 10px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Custom scrollbar */
.Main_Contain_Box::-webkit-scrollbar {
    display: none;
  width: 8px;
}
.Main_Contain_Box::-webkit-scrollbar-track {
  background: #f3f6ff;
  border-radius: 8px;
  display: none;
}
.Main_Contain_Box::-webkit-scrollbar-thumb {
    background: #a5c5f6;
    border-radius: 8px;
    display: none;
}


.Custome_Navbar{
    position: relative;
    z-index: 5;
    ul{
        li{
            a{
                span{
                    color: #696969;
                    font-size: 18px;
                    border: 1px solid #696969;
                    border-radius: 50px;
                    padding: 7px 15px 4px 15px;
                    text-transform: uppercase;
                    &:hover{
                        color: #5BB76B;
                        border: 1px solid #5BB76B;
                    }
                }
                .Active{
                    color: #FFF !important;
                    font-size: 18px;
                    border: 1px solid #5BB76B;
                    background-color: #2D923F;
                    border-radius: 50px;
                    padding: 7px 15px 4px 15px;
                    text-transform: uppercase;
                }
            }
        }
    }
}

.About_Page_Section_Menu{
    display: flex;
    align-items: center;
    justify-content: center;
    .all_sec_Menu{
        gap: 3%;
        border-bottom: 1px solid #2D923F;
        .menu_btn{
            font-size: 18px;
            color: #484848;
            border: none;
        }
    }
}


.Blue_f{
  color: #054DA2 !important;
}

.custome_text{
  color: #054DA2;
  font-size: 22px;
  font-weight: 700;
  font-family: $auroraCondensed !important;
  b{
    font-size: 25px;
  }
}
.inBox_Sec{
    font-size: 28px;
    color: #2D923F;
    font-weight: 700;
}




// ***********************************

.About_dp_box{
    .scroll_Box{
        p{
            color: #484848;
            font-size: 18px;
            text-align: justify;
        }
        .inBox_Sec{
            font-size: 28px;
            color: #2D923F;
            font-weight: 700;
        }

        h3{
            color: #054DA2;
            font-size: 22px;
            font-weight: 700;
        }
        ul{
            li{
                color: #484848;
                // font-weight: 700;
                font-size: 18px;
                line-height: 28px;
            }
        }
    }
}

// ****************************************

.History_dp_box{
    // .History_line{
    //     position: relative;
    //     &::before{
    //         position: absolute;
    //         content: "";
    //         width: 2px;
    //         height: 100%;
    //         background-color: #000;
    //         left: 50%;
    //         // top: 0%;
    //         transform: translate(-50%);
    //     }
    //     .Custome_Card_Left{
    //         position: relative;
    //         background-color: #DEECFF;
    //         padding: 20px;
    //         border-radius: 10px;
    //         max-width: 450px;
    //         margin-left: auto;
    //         margin-right: 5px;
    //         .Dot_List_img{
    //             position: absolute;
    //             height: 50px;
    //             width: 50px;
    //             right: -14%;
    //             top: 50%;
    //             transform: translate(-50%, -50%);
    //         }
    //         h3{
    //             color: #484848;
    //             font-size: 18px;
    //             font-weight: 700;
    //             text-align: end;
    //         }
    //         p{
    //             color: #484848;
    //             font-size: 16px;
    //             text-align: justify;
    //         }
    //     }
    //     .Custome_Card_Right{
    //         position: relative;
    //         background-color: #DEECFF;
    //         padding: 20px;
    //         border-radius: 10px;
    //         max-width: 450px;
    //         margin-left: 5px;
    //         // margin-left: auto;
    //         .Dot_List_img{
    //             position: absolute;
    //             height: 50px;
    //             width: 50px;
    //             left: -4%;
    //             top: 50%;
    //             transform: translate(-50%, -50%);
    //         }
    //         h3{
    //             color: #484848;
    //             font-size: 18px;
    //             font-weight: 700;
    //             // text-align: end;
    //         }
    //         p{
    //             color: #484848;
    //             font-size: 16px;
    //             text-align: justify;
    //         }
    //     }
    //   }
    .scroll_Box{
        p{
            color: #484848;
            font-size: 18px;
            text-align: justify;
        }
        .inBox_Sec{
            font-size: 28px;
            color: #2D923F;
            font-weight: 700;
        }

        h3{
            color: #054DA2;
            font-size: 22px;
            font-weight: 700;
        }
        ul{
            li{
                color: #484848;
                // font-weight: 700;
                font-size: 18px;
                line-height: 28px;
            }
        }
    }
}

// ****************************************

.Credentials_dp_box{
    .Custome_Card{
        // width: 70%;
        .image_box{
            border: 1px solid #000;
            overflow: hidden;
            border-radius: 15px;
        }
        h3{
          color: #054DA2;
          font-size: 18px;
          margin-bottom: 0px;
          text-align: center;
        }
      }

      .Certificate_cardd{
        // width: 70%;
        .img_box{
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            .overlayDp {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                height: 100%;
                width: 100%;
                opacity: 0;
                transition: .5s ease;
                background-color: #07070799;
                cursor: pointer;
                .textDp {
                    color: white;
                    font-size: 20px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    -webkit-transform: translate(-50%, -50%);
                    -ms-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
                    text-align: center;
                    z-index: 50;
                }
            }
            &:hover{
                .overlayDp{
                    opacity: 1;
                }
            }
        }
        h3{
            color: #054DA2;
            font-size: 18px;
            font-weight: 700;
        }
    }
}

.Certificate_model_img_box{
    height: 500px;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

// ***************************************

.Achievements_dp_box{
    .What_We_Do_sec{
        p{
            color: #3A3A3A;
            font-size: 18px;
        }
        .Custome_card{
            background-color: #EFF7FF;
            color: #3A3A3A;
            padding: 20px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
        }
    }
    // .contain_cafrd{
    //     .right_Contain{
    //         p{
    //         color: #000000;
    //         font-size: 18px;
    //         margin-bottom: 0px;
    //         text-align: justify;
    //         }
    //     }
    //     }
    //     .contain_cafrd_second{
    //     margin-top: -50px;
    //     .left_Contain{
    //         p{
    //         color: #000000;
    //         font-size: 18px;
    //         margin-bottom: 0px;
    //         text-align: justify;
    //         }
    //     }
    // }
}

// ***************************************

.Policies_dp_box{
    .teem_card_box{
        position: relative;
        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-image: linear-gradient(#00000000, #000000);
            // background-color: #008CBA;
            overflow: hidden;
            width: 100%;
            height: 0;
            transition: .5s ease;
            .text {
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                text-align: center;
                h3{
                    color: white;
                    font-size: 18px;
                    font-weight: 700;
                }
                p{
                    color: white;
                    font-size: 16px;
                    // font-weight: 700;
                }
            }
        }
        &:hover{
            .overlay{
                height: 40%;
            }
        }
    }
    // h3{
    //     color: #054DA2;
    //     font-size: 28px;
    //     font-weight: 700;
    // }
    // p{
    //     color: #484848;
    //     text-align: justify;
    //     font-size: 18px;
    // }
    // .hilite_text{
    //     background-color: #054DA2;
    //     color: #FFF;
    //     font-size: 18px;
    //     border-radius: 5px;
    //     padding: 5px 20px;
    // }
    // .contain_cafrd{
    //     .right_Contain{
    //         p{
    //         color: #000000;
    //         font-size: 18px;
    //         margin-bottom: 0px;
    //         text-align: justify;
    //         }
    //     }
    // }
    // .contain_cafrd_second{
    //     margin-top: -50px;
    //     .left_Contain{
    //         p{
    //             color: #000000;
    //             font-size: 18px;
    //             margin-bottom: 0px;
    //             text-align: justify;
    //         }
    //     }
    // }
}

// ***************************************

.ManagementTeam_do_box{
.team_custome_card{
    padding: 16px;
    border: 1px solid #E4E6E8;
    border-radius: 15px;
    background-color: #FFF;
    display: flex;
    gap: 15px;
    .img_box{
        width: 92px;
    }
    h3{
        color: #054DA2;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 0px;
    }
    h4{
        color: #054DA2;
        font-size: 16px;
        font-weight: 700;
    }
    p{
        color: #000;
        font-size: 16px;
        margin-bottom: 0px;
    }
    }

}

// ***************************************

.Milestone_dp_box{
    position: relative;
    .graph_image{
        img{
            width: 68%;
            margin: 0 auto;
        }
    }
    .custome_graph_bar{
        position: relative;
        // height: 300px;
        width: 100%;
        #stacked{
            // display: none;
            position: relative !important;
            min-height: 350px;
            height: 600px !important;
            width: 100% !important;
            z-index: 10;
        }
    }
}

// ***************************************

.MachineryEquipment_dp_box{
h3{
    color: #054DA2;
    font-size: 28px;
    font-weight: 700;
    }
}

// ***************************************

.Our_Services_dp_box{
    .scroll_Box{
        display: flex;
        align-items: center;
        h3{
        color: #054DA2;
        font-size: 22px;
        font-weight: 700;
        }
        p{
        color: #000;
        font-size: 18px;
        }
    }
}

// ***************************************

.Sectors_We_Serve_dp_box{
    p{
        font-size: 18px;
        color: #3A3A3A;
    }
    // .inBox_Sec{
    //     font-size: 28px;
    //     color: #054DA2;
    //     font-weight: 700;
    // }
    // .CustomeCard{
    //     background-color:  #F8FAFC;
    //     border-radius: 15px;
    //     width: 100%;
    //     height: 265px;
    //     display: flex;
    //     flex-direction: column;
    //     align-items: center;
    //     justify-content: center;
    //     padding: 30px 0px;
    //     img{
    //         margin-bottom: 20px;
    //     }
    //     h3{
    //         color: #054DA2;
    //         font-weight: 700;
    //         font-size: 22px;
    //     }
    // }
}

// ***************************************

.Clients_Box{
    // .inBox_Sec{
    //     font-size: 28px !important;
    //     color: #054DA2;
    //     font-weight: 700;
    // }
    .clent_logo_box{
        // position: relative;
        // display: flex;
        // align-items: center;
        // justify-content: center;
        // border: 1px solid #E3F7FF;
        // padding: 40px 40px;
        // margin: 30px 20px;
        // &::after{
        //     position: absolute;
        //     content: url('../img/logo_center_Line.png');
        //     width: 5px;
        //     height: 100%;
        //     // background-color: #054DA2;
        //     right: -13%;
        // }
        img{
            // padding: 50px 90px;
            // margin-bottom: 20px;
        }
    }
}

// ***************************************

.Ongoing_Projects_dp_box{
    .table{
        tr{
            th{
                background-color: #FFF;
                color: #000;
                font-size: 16px;
                font-weight: 700;
                border: 1px solid #E4E6E8;
                text-align: center;
            }
            td{
                // background-color: #F8F8F8;
                color: #000;
                font-size: 14px;
                // font-weight: 700;
                border: 1px solid #E4E6E8;
            }
        }
    }
}

// ***************************************

.Complete_Projects_dp_box{
    .table{
        tr{
            th{
                background-color: #FFF;
                color: #000;
                font-size: 16px;
                font-weight: 700;
                border: 1px solid #E4E6E8;
                text-align: center;
            }
            td{
                // background-color: #F8F8F8;
                color: #000;
                font-size: 14px;
                // font-weight: 700;
                border: 1px solid #E4E6E8;
            }
        }
    }
}

// ***************************************

.Gallery_dp_box{
    .image_Container{
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        img{
            display: block;
            width: 100%;
            height: auto;
        }
        .Overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        &:hover{
            .Overlay{
                opacity: 1;
            }
        }
    }
}

// ***************************************

.Career_Box{
    .sec_Contain_Detail{
        form{
            .input_part{
                position: relative;
                border: 1px solid #054DA2;
                border-radius: 10px;
                padding: 20px 30px;
                label{
                position: absolute;
                background-color: #FEFCFF;
                color: #054DA2;
                font-size: 18px;
                font-weight: 700;
                top: -16px;
                left: 3%;
                padding: 0px 10px;
                }
                .input_field{
                font-size: 16px;
                border: none;
                outline: none;
                background-color: transparent;
                }
            }
            .form_submit_btn{
                background-color: #054DA2;
                border-radius: 7px;
                font-size: 18px;
                color: #FFF;
                font-weight: 500;
                padding: 10px 25px;
                cursor: pointer;
            }


            .container {
                width: 100%;
                max-width: 100%;
                display: flex;
                flex-direction: column;
                // gap: 20px;
            }

            .dropbox {
                width: 100%;
                height: 220px;
                // border: 3px dashed #4c6fff;
                border-radius: 12px;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                // background-color: #f0f7ff;
                transition: all 0.3s ease;
                cursor: pointer;
                padding: 20px;
                gap: 15px;
            }

            .dropbox:hover {
                // background-color: #e6f0ff;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            }

            .dropbox.dragover {
                background-color: #e6f0ff;
                border-color: #3451b2;
                transform: scale(1.02);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .dropbox-icon {
                font-size: 40px;
                color: #4c6fff;
                margin-bottom: 10px;
            }

            .dropbox-text {
                font-size: 18px;
                color: #999999;
                margin-bottom: 5px;
                font-weight: 600;
            }

            .dropbox-subtext {
                font-size: 14px;
                color: #999999;
                text-align: center;
            }

            .browse-btn {
                background-color: #4c6fff;
                color: white;
                border: none;
                padding: 10px 20px;
                border-radius: 8px;
                font-size: 14px;
                cursor: pointer;
                transition: background-color 0.3s;
                font-weight: 500;
                margin-top: 5px;
            }

            .browse-btn:hover {
                background-color: #3451b2;
            }

            .file-previews {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
                width: 100%;
            }

            .file-preview {
                background-color: #fff;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                position: relative;
            }

            .file-preview:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            }

            .preview-img-container {
                height: 150px;
                width: 100%;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #f9f9f9;
            }

            .preview-img {
                max-width: 100%;
                max-height: 150px;
                object-fit: contain;
            }

            .file-icon {
                font-size: 60px;
                color: #4c6fff;
            }

            .file-info {
                padding: 12px;
            }

            .file-name {
                font-size: 14px;
                color: #333;
                margin-bottom: 5px;
                font-weight: 600;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .file-size {
                font-size: 12px;
                color: #666;
            }

            .file-actions {
                display: flex;
                justify-content: space-between;
                margin-top: 10px;
            }

            .remove-btn {
                background-color: #ff4d4f;
                color: white;
                border: none;
                padding: 6px 12px;
                border-radius: 6px;
                font-size: 12px;
                cursor: pointer;
                transition: background-color 0.3s;
            }

            .remove-btn:hover {
                background-color: #d9363e;
            }

            .upload-notification {
                position: fixed;
                top: 20px;
                left: 50%;
                transform: translateX(-50%);
                background-color: #4c6fff;
                color: white;
                padding: 12px 20px;
                border-radius: 8px;
                font-size: 14px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                z-index: 1000;
                display: flex;
                align-items: center;
                gap: 10px;
                opacity: 0;
                transition: opacity 0.3s, transform 0.3s;
                pointer-events: none;
            }

            .upload-notification.show {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
                pointer-events: all;
            }

            .upload-notification.success {
                background-color: #52c41a;
            }

            .upload-notification.error {
                background-color: #ff4d4f;
            }

            .notification-progress {
                position: absolute;
                bottom: 0;
                left: 0;
                height: 3px;
                background-color: rgba(255, 255, 255, 0.5);
                width: 100%;
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 3s linear;
            }

            .upload-notification.show .notification-progress {
                transform: scaleX(1);
            }

            .upload-stats {
                background-color: white;
                border-radius: 10px;
                padding: 15px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                width: 100%;
                margin-top: 10px;
                display: none;
            }

            .stats-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 15px;
            }

            .stats-title {
                font-size: 16px;
                color: #333;
                font-weight: 600;
            }

            .stats-info {
                display: flex;
                gap: 20px;
            }

            .stat-item {
                text-align: center;
            }

            .stat-value {
                font-size: 18px;
                color: #4c6fff;
                font-weight: 600;
            }

            .stat-label {
                font-size: 12px;
                color: #666;
            }

            // .progress-bar {
            //   height: 8px;
            //   width: 100%;
            //   background-color: #f0f0f0;
            //   border-radius: 4px;
            //   overflow: hidden;
            // }

            .progress-fill {
                height: 100%;
                background-color: #4c6fff;
                width: 0;
                transition: width 0.3s ease;
            }

            .empty-state {
                display: none;
                text-align: center;
                padding: 30px;
                color: #666;
            }

            input[type="file"] {
                display: none;
            }
        }
    }
}

// ***************************************

.Contact_Box{
    .contain_detail_Box{
        .left_part{
            form{
                .input_part{
                    position: relative;
                    border: 1px solid #2D923F;
                    border-radius: 10px;
                    // padding: 20px 30px;
                    label{
                        position: absolute;
                        background-color: #FEFCFF;
                        color: #2D923F;
                        font-size: 18px;
                        font-weight: 700;
                        top: -16px;
                        left: 3%;
                        padding: 0px 10px;
                    }
                    .input_field{
                        font-size: 16px;
                        border: none;
                        outline: none;
                        background-color: transparent;
                        padding: 20px 30px;
                        border-radius: 11px;
                    }
                }
                .form_submit_btn{
                background-color: #054DA2;
                border-radius: 7px;
                font-size: 18px;
                color: #FFF;
                font-weight: 500;
                padding: 10px 25px;
                cursor: pointer;
                }
            }
            }
            .right_part{
            // position: relative;
            .map_Box{
                position: relative;
            //   height: 300px;
            //   width: 300px;
            //   padding: 10px;
                #map {
                position: relative;
                height: 400px;
                width: 100%;
                border-radius: 30px;
                padding: 10px;
                z-index: 5;
                }
            }
            h3{
                color: #2B2A29;
                font-size: 18px;
                font-weight: 700;
            }
            .social_icon{
                height: 30px;
                width: 30px;
                border-radius: 50%;
                border: 1px solid #054DA2;
                display: flex;
                align-items: center;
                justify-content: center;
                &:hover{
                background-color: #054DA2;
                    svg{
                        path{
                        fill: #FFF;
                        }
                    }
                }
            }
        }
    }
}
.leaflet-container .leaflet-control-attribution {
    display: none;
}

// ***************************************

.Custome_thanku_popup{
    .Custome_p_design{
        .logo_div{
            background-color: #FFF;
        }
        h3{
            color: #2D923F;
            font-size: 28px;
            font-weight: 700;
        }
        p{
            color: #2B2A29;
            font-size: 18px;
        }
        .custome_tx_btn{
            background-color: #2D923F;
            color: #FFF;
            font-size: 18px;
            border-radius: 5px;
            padding: 7px 20px;
            border: 1px solid #2D923F;
        }
    }
  }

// ***************************************

#chart-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 800px;
    margin: auto;
}
#stacked {
    position: relative;
    height: 100%;
}
.annotation {
    position: absolute;
    background: rgba(139, 69, 19, 0.9); /* brown */
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 5px;
    pointer-events: none;
    text-align: center;
    line-height: 1.3;
    width: 350px !important;
    top: 8px;
    left: 200px;
    z-index: 50;
    tr{
    th{
        background-color: #e9e8e8;
        color: #000;
        font-size: 16px;
        font-weight: 700;
        border: 3px solid #FFF;
    }
    td{
        background-color: #e9e8e8;
        color: #000;
        font-size: 14px;
        font-weight: 700;
        border: 3px solid #FFF;
    }

    }
}

// ***************************************

.Footer{
    background-color: #FFF;
    padding: 30px 30px 15px 30px;
    border-radius: 20px;
    h2{
        font-size: 28px;
        color: #2D923F;
        font-weight: 700;
    }
    h3{
        color: #2D923F;
        font-size: 22px;
        font-weight: 700;
    }
    p{
        a{
            color: #2B2A29;
            font-size: 16px;
        }
    }
    p{
        color: #2B2A29;
        font-size: 16px;
    }
    .social_links{
        position: relative;
        // &::before{
        //     position: absolute;
        //     content: '';
        //     width: 150px;
        //     height: 2px;
        //     background-color: #FFF;
        //     top: -25px;
        // }
        .social_icon{
            height: 30px;
            width: 30px;
            border-radius: 50%;
            border: 1px solid #2D923F;
            display: flex;
            align-items: center;
            justify-content: center;
            &:hover{
            background-color: #2D923F;
                svg{
                    path{
                        fill: #FFF;
                    }
                }
            }
        }
    }
    .rightsss{
        border-top: 1px solid #5BB76B;
        padding-top: 15px;
    }
}

// ***************************************

.TermsConditions_Box{
    .sec_Contain_Detail{
        h3{
        color: #2D923F;
        font-size: 28px;
        font-weight: 700;
        }
    }
}

// ***************************************

.PrivacyPolicy_Box{
    .sec_Contain_Detail{

        h3{
        color: #2D923F;
        font-size: 28px;
        font-weight: 700;
        }
    }
}

// ***************************************

.Disclaimer_Box{
    .sec_Contain_Detail{

        h3{
        color: #2D923F;
        font-size: 28px;
        font-weight: 700;
        }
    }
}

// ***************************************

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    color: #000;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    color: #000;
}


// ************************************************************************************

.p_Contain{
    color: #3A3A3A;
    font-size: 18px;
}
.sec_tit{
    color: #2D923F;
    font-size: 24px;
    font-weight: 700;
}

.Dp_Custome_Card{
    border: 1px solid #5BB76B;
    border-radius: 10px;
    background-color: #FFFFFE;
    padding: 30px;
    height: 100%;
    h3{
        color: #2D923F;
        font-size: 24px;
        font-weight: 700;
    }
    p{
        color: #3A3A3A;
        font-size: 18px;
    }
}


// **************************************

.GetAGuote_Popup{
    form{
        .input_part{
            position: relative;
            border: 1px solid #2D923F;
            border-radius: 10px;
            // padding: 20px 30px;
            label{
                position: absolute;
                background-color: #FEFCFF;
                color: #2D923F;
                font-size: 18px;
                font-weight: 700;
                top: -16px;
                left: 3%;
                padding: 0px 10px;
            }
            .input_field{
                font-size: 16px;
                border: none;
                outline: none;
                padding: 20px 30px;
                border-radius: 11px;
            }
        }
        .form_submit_btn{
        background-color: #054DA2;
        border-radius: 7px;
        font-size: 18px;
        color: #FFF;
        font-weight: 500;
        padding: 10px 25px;
        cursor: pointer;
        }
    }
}


.selDrop {
  appearance: none; /* remove default arrow */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 10px) center !important; /* arrow 10px from right */
  background-size: 16px;

  padding-right: 30px; /* make space for arrow */
}
