@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Caveat:wght@400..700&display=swap');

:root {
    --primary-color: #06B873;
    --darkColor: #0D151C;
    --darkColor2: #202227;
    --darkColor3: #050A0F;
    --darkBg: #060B10;
    --text-color: #666666;
    --blue-color: #1B7CFF;
    --blue-color2: #008CFF;
    --red-color: #FF4043;
    --light-green-color: #e4fff59e;
    --yellow-color: #FFA300;
    --purple-color: #9900FF;
    --purple-color2: #8E8AFE;
    --cyan-color: #28EDFB;
    --pink-color: #FF7D93;
    --white-color: #ffffff;
    --transition: all 0.3s;
    --fontPlus: "Plus Jakarta Sans", sans-serif;
    --fontCaveat: "Caveat", cursive;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: var(--fontPlus);
    overflow-x: hidden;
    background-color: var(--white-color);
    color: var(--text-color);
}
html {
    scroll-behavior: smooth;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background-color: #dddddd;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}
/* Scroll */
*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
a,
a:hover,
a:focus {
    /* text-transform: capitalize; */
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: var(--fontPlus);
}
p {
    font-family: var(--fontPlus);
    margin: 0;
    padding: 0;
}
img,
video {
    max-width: 100%;
}
input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    /* box-shadow: none;
  border: none; */
}

input,
select {
    height: 40px;
    background-color: var(--white-color);
    border-radius: 10px;
    border: none;
    color: var(--text-color);
    font-family: var(--fontPlus);
}
input::placeholder,
textarea::placeholder {
    font-family: var(--fontPlus);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
button {
    cursor: pointer;
}
.container1500 {
    max-width: 1530px;
}
.container1440 {
    max-width: 1470px;
}
.container1200 {
    max-width: 1200px;
}
.container1260 {
    max-width: 1260px;
}
.container1102 {
    max-width: 1102px;
}
.animated_btn{
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.animated_btn:hover::before, .animated_btn:hover::before {
    --size: 200px;
}
.animated_btn::before, .animated_btn::before {
    content: '';
    position: absolute;
    --size: 0px;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, #81e700, transparent);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;
    z-index: -1;
}

/* header start */
.fe_header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* backdrop-filter: blur(2px);
    background: #ffffff82; */
    padding: 10px;
    z-index: 3;
}
.fe_header_wrap.fe_header_fixed {
    background: #060e15;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 12%);
}
.fe_header_wrap .container-fluid{
 max-width: 1750px;
}
.fe_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fe_colorfull_btn{
    padding: 10px 20px;
    border-radius: 30px;
}
.fe_colorfull_btn:hover{
    color: #ffffff;
}
.fe_green_btn:hover{
    color: #ffffff;
}
.fe_green_btn {
    padding: 10px 20px;
    box-shadow: 0px 12px 60px 0px #71C80099;
}
.fe_green_big_btn {
    padding: 1% 5%;
    border: 1px solid #5D9119;
    box-shadow: 0px 12px 60px 0px #71C80099;
    line-height: normal;
}
.fe_green_big_btn:hover {
    color: #ffffff;
}
/* header end */
/* banner start */
.fe_banner_wrap {
    background: url(../images/banner/bg.webp) no-repeat top center;
    background-size: cover;
    padding: 120px 0 20px;
}
.fe_banner_details_box {
    flex: 1;
}
.fe_video_wrapper {
    background: linear-gradient(180deg, #06B873 0%, rgba(255, 255, 255, 0) 100%);
    max-width: 740px;
    border-radius: 20px;
    width: 100%;
    flex: 1;
    padding: 1%;
    margin: auto;
}
.click_unmute {
    position: absolute;
    left: -20%;
}
.fe_video_wrapper iframe {
    border-radius: 20px;
}
.fe_video_main_wrapper {

}
.fe_banner_wrap .container-fluid {
    max-width: 1760px;
}
.fe_banner_title1_wrap {
    border-radius: 40px;
    padding: 10px 30px;
    text-align: center;
    box-shadow: 0px 4px 50px 0px #07472E33;
    background: #FFFFFF1A;
    border: 1.5px solid #06B873;
}
.fb_down_scroll_arrow{
     animation: bounce 2s ease 0s infinite;
}
/* banner end */
.sp_grid_step_bg {
    padding: 10px 20px;
    border-radius: 7px;
}
.sp_grid_digit {
    background: linear-gradient(180deg, #000000 0%, #ffffff 100%);
    font-size: 160px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.05;
    top: 0;
    right: 0;
}
.sp_grid_step_details {
    max-width: 620px;
    margin: auto;
}
.sp_grid_bottom_arrow.flip {
    -webkit-transform: rotate(180deg) scaleY(-1);
    transform: rotate(180deg) scaleY(-1);
}
/* second section start */

/* buy section start */
.green_border_white_bg {
    border: 1px solid #BDF07C;
    background: #FFFFFF;
    padding: 12px 22px;
}
/* buy section end */
/* top testimonial section start */
.fe_top_testimonial .container-fluid {
    max-width: 1632px;
}
.fe_top_testi_box {
box-shadow: 0px 21px 50px 0px #0000001A;
    border: 1px solid #ECEEF0;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px 40px;
    display: flex;
    gap: 20px;
    height: 100%;
}
.fe_top_testi_box_right{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: baseline;
}
.fe_top_testi_box_left {
    flex: none;
}
/* top testimonial section end  */
/* fail section start  */
.fe_fail_section {

}
.fe_fail_Inner_section {
    background: url(../images/fail/inner_bg.webp) no-repeat top center;
    background-size: cover;
    max-width: 1700px;
    margin: auto;
    padding: 4% 0%;
}
.sp_fail_box {
    background: #09121B;
    border: 1px solid #233445;
    border-radius: 20px;
    padding: 4.5%;
    transition: 0.3s ease;
}
.sp_fail_box:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}
.fe_fail_section .sp_fail_box {
    margin-bottom: 30px;
}
.sp_fail_box_icon {
    width: 65px;
    flex: none;
}
/* fail section end  */
/* Dead End section start  */
.fe_deadEnd_icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 9px 11px 23.3px 0px #E58B8B66;
}
.fe_deadEnd_list {
    list-style-type: disc;
    padding: 0 0 0 20px;
}
.fe_deadEnd_box{
    border-radius: 20px;
    padding: 30px 30px;
    background: linear-gradient(360deg, #FFFFFF 0%, #FFD8D8 100%);
}
.fe_deadEnd_box.inline {
    display: flex;
    gap: 20px;
}
.fe_deadEnd_box.inline .fe_deadEnd_icon {
    flex: none;
}
.fe_deadEnd_row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}
.fe_deadEnd_right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
/* Dead End section end  */
/* Choices section start  */
.fe_choice_box {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-shadow: 0px 0px 50px 0px #0000000F;
    border-radius: 20px;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
}
.fe_choice_number {
    background: #FFA300;
    padding: 10px 20px;
    top: -23px;
    left: 20px;
}
.bg_left_border{
    background: #FFEEEE;
    padding: 10px 10px 10px 15px;
    border-left: 4px solid #FF5757;
}

.box_style1 {
    max-width: 1800px;
    margin: 80px auto 0;
    border-radius: 60px 60px 0 0;
    background-color: #C0FAE4;
    padding: 60px 0 80px;
    margin-bottom: -200px;
}
.box_style2 {
    max-width: 1700px;
    margin: 80px auto 0;
    border-radius: 60px 60px 0 0;
    background-color: #D3FFEE;
    padding: 60px 0 0;
}
.box_style3 {
    max-width: 1580px;
    margin: 40px auto 0;
    border-radius: 60px 60px 0 0;
    background-color: #E8FFF6;
    padding: 60px 0 100px;
}

.fe_choice_box_means {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    min-height: 384px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.fe_choice_box_means>img {
    margin-top: 40px;
}
.box_style1 .fe_choice_box_means>img {
    margin: 0;
}
.box_style1 .fe_choice_box_means {
    padding: 5px;
    min-height: inherit;
}
.box_style1 .fe_close_icon_box {
    background: transparent;
    text-align: center;
    justify-content: center;
    padding: 0 0 30px;
    min-height: auto;
}


.box_style2 .fe_choice_box_means>img {
    margin: 0;
}
.box_style2 .fe_choice_box_means {
    padding: 5px;
}
.box_style2 .fe_close_icon_box {
    background: transparent;
    text-align: center;
    justify-content: center;
    padding: 0 0 30px;
    margin: 0;
    min-height: auto;
}
.fe_close_icon_box {
    background: linear-gradient(90deg, #FFE6E6 0%, #FFFFFF 100%);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    min-height: 100px;
}
.fe_close_icon_box img {
    flex: none;
}

.container-fluid.container1260.container_style3 {
    border: 1px solid #72CFAB;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 30px;
    max-width: 1370px;
}

.fe_choice_box_dif {
    text-align: center;
    border-radius: 20px;
    padding: 26px;
    background: linear-gradient(180deg, #FBF6FF 0%, #FFFFFF 100%);
}
.fe_choice_perfect1 {
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(180deg, #EBCAFF 0%, #FFFFFF 100%);
}
.fe_choice_perfect1 .fe_choice_box_dif {
    background: linear-gradient(180deg, #FBF6FF 0%, #FFFFFF 100%);
}
.fe_choice_perfect2 {
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(180deg, #A6CDFF 0%, #FFFFFF 100%);
}
.fe_choice_perfect2 .fe_choice_box_dif {
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}
.fe_choice_perfect3 {
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(180deg, #FFB8DF 0%, #FFFFFF 100%);
}
.fe_choice_perfect3 .fe_choice_box_dif {
    background: linear-gradient(180deg, #FDF2F8 0%, #FFFFFF 100%);
}
.fe_choice_perfect4 {
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(180deg, #FFD198 0%, #FFFFFF 100%);
}
.fe_choice_perfect4 .fe_choice_box_dif {
    background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
}
.fe_choice_box_dif h4 {
    margin-top: 25px;
}
.fe_choice_box_dif img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}
/* Choices section end  */
/* Slider section section start  */
.sc_banner_slider{
    overflow: hidden;
}
.sc_banner_slider_item_img {
    border-radius: 10px;
    font-size: 0;
}
.sc_banner_slider_item_img video, .sc_banner_slider_item_img img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
/* Slider section section end  */
/* introducing section start */
.fe_intro_section {
    background: url(../images/intro/01.webp) no-repeat top center;
    background-size: cover ;
}

.fe_noice_bg_green{
    background: url(../images/noice_bg.webp) center repeat;
    background-size: 100% 100%;
    max-width: max-content;
    margin: auto;
    padding: 1.5% 2% 0%;
    border-radius: 60px;

}
.fe_gray_simple_box {
    background: #F0F0F0;
    padding: 1.5%;
}
.fe_v_section_wrap {
    max-width: 1393px;
    border-radius: 60px;
    margin: auto;
    overflow: hidden;
    padding: 0 0 0 3%;
}
/* introducing section end */
/* small section start */
.fe_small_section .container1168{
    max-width: 1168px;
}
.fe_full_two_wrap {
    width: 100%;
    max-width: 1006px;
    margin: auto;
}
.full_vector.one {
    top: -110px;
    left: -12%;
}

.full_vector.two {
    top: 26%;
    left: -17%;
}
.fe_small_Inner_section {
    background: url(../images/fail/inner_bg.webp) no-repeat top center;
    background-size: cover;
    max-width: 1700px;
    margin: auto;
    padding: 4% 2%;
}
/* small section end */

/* step section start */
.fe_yellow_simple_box {
    background: #FFF9D9;
    padding: 1% 2%;
}
/* step section end */
/* Video Section start */
.fe_videos_section_inner {
    background: url(../images/videoSection/bg.webp) no-repeat top center;
    background-size: cover;
    padding: 4%;
    margin: auto;
    border-radius: 60px;
    max-width: 1800px;
}
.fe_videos_section_box {
    background: url(../images/videoSection/video_noice.webp), linear-gradient(180deg, #ffffff 0%, rgb(255 255 255) 100%);
    max-width: 1240px;
    border-radius: 35px;
    width: 100%;
    flex: 1;
    margin: auto;
}
.fe_videos_section_box iframe {
    padding: 2px;
    border-radius: 35px;
}
.fe_feature_video {
    position: relative;
    background: linear-gradient(180deg, #06B873 0%, rgba(5, 10, 15, 0) 80%);
    max-width: 680px;
    width: 100%;
    border-radius: 35px;
    padding: 15px;
}
.fe_feature_video video {
    border-radius: 20px;
}
/* Video Section end */
.sp_hasH_tag {
    background: linear-gradient(180deg, #C8FFEA 0%, rgba(200, 255, 234, 0) 100%);
    font-size: 160px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    top: -52%;
    left: 0;
    line-height: 0.7;
}
.fe_automation_section .sp_grid_step_details{
    margin: inherit;
}
.sp_common_bg_heading{
    padding: 0.7% 1.2%
}

.fe_production_quality_section {
    background: url(../images/noice_black_bg.png), linear-gradient(180deg, #0e151c 0%, #090E13 146.99%) no-repeat top center;
    background-size: cover;
    border-radius: 30px 30px 0 0;
    max-width: 1700px;
    margin: auto;
    padding: 3% 2%;
}
.fe_production_quality_section.withBuiltIn {
    max-width: 1800px;
}
/* bonus section start */
.fe_bonusBox1{
    padding: 2px
}
.fe_bonusBox2 {
    background: #ffffff;
    padding: 3% 0;
}
.fe_bonus_section .width {
    max-width: 1500px;
    margin: 0 auto 30px;
}

/* bonus section end */
/* warning section start */
.fe_blackBorderBox {
    background: #09121B;
    border: 1px solid #233445;
}
.fe_warning_section .width {
    max-width: 1700px;
    margin: auto;
    padding: 3% 2%;
}
/* warning section end */

/* with and without css start */
.fe_life_list_li {
    background: linear-gradient(90deg, #FFDDDD 0%, #FFF4F4 100%);
    border-radius: 20px 0 0 20px;
    padding: 10px 20px;
    min-height: 86px;
    margin-bottom: 20px;
}
.fe_life_list > li:last-child .fe_life_list_li{
    margin-bottom: 0px;
}
.fe_ww_top {
    background: linear-gradient(180deg, #FFF4F4 0%, #FFFFFF 111.43%);
    border-radius: 30px;
    text-align: center;
    max-width: 545px;
    margin: auto;
    margin-left: 3%;
    margin-right: 3%;
}
.fe_ww_box.without .fe_ww_top {
    min-height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fe_ww_box.without .fe_life_list {
    margin-top: 44px;
}
.fe_ww_box {
    background: #FFF4F4;
    border-radius: 20px;
    border: 1px solid #FF5757;
    padding: 0 0 40px;
    max-width: 665px;
    margin: auto;
    width: 100%;
}
.fe_life_list {
    margin-left: -40px;
}
.fe_ww_box.with_box{
    background: var(--primary-color);
    box-shadow: 0px 0px 60px 0px #3B329833;
    border: 3px solid #FFFFFF
}
.fe_ww_box.with_box .fe_life_list_li {
background: linear-gradient(90deg, #12E895 0%, #06B873 100%);

}
.fe_ww_box.with_box .fe_ww_top {
    background: linear-gradient(183.15deg, #06B873 16.26%, #23E89C 108.37%);
    height: 136px;
    padding-top: 35px;

}
.fe_ww_top_logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -50px;
}
.fe_ww_box.with_box .fe_life_list {
    margin-top: 80px;
}
.fe_ww_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 80px 100px;
    max-width: 1465px;
    width: 100%;
    margin: auto;
transform: translateX(19px);
    padding: 0 20px;

}
/* with and without css end */
/* founder section start */
.fe_owner_box {
    background: linear-gradient(180deg, #DFFFF3 0%, #FFFFFF 87.34%);
    border-radius: 30px;
    padding: 20px 0 0;
}
.fe_owner_box_list {
    display: flex;
    position: relative;
    top: 30px;
    justify-content: center;
    gap: 50px;
}
.fe_owner_box_heading {
    top: -24px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 469px;
}
.fe_owner_box_wrap {
    margin: 60px 0 100px;
}
.fe_owner_inner {
    z-index: 0;
}
.fe_owner_inner:after {
    position: absolute;
    content: "";
    background: rgba(7, 116, 74, 0.3);
    filter: blur(30px);
    border-radius: 30px;
    width: 100%;
    height: 80%;
    left: 0;
    right: 0;
    z-index: -1;
    top: 60px;
}
/* founder section end */
.fe_double_video_wrap {
    position: relative;
    background: linear-gradient(180deg, #06B873 0%, rgba(5, 10, 15, 0) 80%);
    max-width: 500px;
    width: 100%;
    border-radius: 35px;
    padding: 15px;
    display: flex;
    gap: 20px;
    margin: auto;
}
.fe_double_video_wrap > video {
    border-radius: 15px;
    max-width: calc(50% - 10px);
}
.video_with_img_inner {
    background: #080F16;
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 12px;
    border-radius: 20px;
}

.video_with_img  video {
    border-radius: 10px;
}
 /* input and output video start */
 .fe_inputOutput_input > video {
    border: 2px solid #06B873;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 30px 0px rgb(6 184 115 / 26%);
}
.fe_inputOutput_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1191px;
    margin: auto;
}
.fe_inputOutput_wrap .fe_inputOutput_input video.lazy-video {
    width: 246px;
}
.fe_inputOutput_output video {
    border: 2px solid #ffa300;
    border-radius: 10px;
    overflow: hidden;
    width: 276px;
    box-shadow: 0px 0px 30px 0px rgb(255 163 0 / 25%);

}
.fe_inputOutput_output {
    gap: 10px;
    display: flex;
}
.fe_inputOutput_img {
    padding: 0 1%;
}
.fe_input_img_vector {
    position: absolute;
    top: 20%;
    margin: auto;
}
.fe_input_img_vector.left {
    left: -14%;
}
.fe_input_img_vector.right {
    right: -23%;
}
@media (max-width: 1799px) {
    .fe_input_img_vector.right {
        right: -17%;
        width: 200px;
    }
}
@media (max-width: 1599px) {
.fe_inputOutput_wrap {
    max-width: 1051px;
}
.fe_input_img_vector.right {
    width: 170px;
}
}
@media (max-width: 1399px) {
    .fe_inputOutput_wrap {
        max-width: 981px;
    }
}
@media (max-width: 1299px) {
    .fe_inputOutput_wrap {
        max-width: 870px;
    }
    .fe_input_img_vector.right {
        right: -20%;
    }
    .fe_input_img_vector.left {
    width: 99px;
}
}
@media (max-width: 1199px) {
.fe_inputOutput_wrap {
        max-width: 720px;
    }
}
@media (max-width: 991px) {
    .fe_inputOutput_wrap {
        max-width: 560px;
    }
    .fe_input_img_vector.left {
        width: 58px;
    }
        .fe_input_img_vector.right {
        width: 99px;
        right: -19%
    }
}
@media (max-width: 767px) {
    .fe_input_img_vector.right {
width: 109px;
        right: -33%;
    }
    .fe_inputOutput_wrap {
        max-width: 350px;
    }
        .fe_input_img_vector.left {
        width: 78px;
        left: -24%;
    }

}
@media (max-width: 575px) {
    .fe_inputOutput_wrap {
        padding-top: 70px;
    }
        .fe_inputOutput_wrap {
        max-width: 100%;
    }
        .fe_input_img_vector.left {
        left: 0;
        top: 0;
        transform: rotate(45deg);
    }

        .fe_input_img_vector.right {
        right: 21px;
        top: -11px;
        transform: rotate(-18deg);
    }

}
 /* input and output video end */








/* final buy section section start  */
.fe_main_box_wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.fe_main_buy_box {
    background: #FFFFFF;
    border: 1px solid #ECEEF0;
    box-shadow: 0px 21px 50px 0px #0000001A;
    border-radius: 30px;
    max-width: 650px;
    border-radius: 30px;
    overflow: hidden;
}
.fe_main_buy_box_img{
    background: #051F15;
    padding: 20px 10px 0;
    margin-bottom: 6px;
}
.fe_mainBuyBoxImgLogo {
    /* position: relative;
    top: 60px; */
}
.fe_main_buy_box_body {
    padding: 20px 20px 50px;
}
.fe_green_noice_bg {
    border: 1px solid #9FD37F;
    padding: 3% 3%;
    background: url(../images/light_noice_mini.webp) #F2FFEA  center center;
    /* background: #F2FFEA  center center; */
    background-size: cover;
}
.fe_main_buy_box_body .fe_green_noice_bg {
    padding-bottom: 0px;
}
.fe_green_noice_list.with_full > li{
    width: 100%;
}
.fe_main_buy_box_img_logo > img {
    max-width: 300px;
}
.fe_green_noice_list.inline_list> li {
    width: calc(50% - 7px);
}
/* final buy section  section end  */
.fe_dark_box_li {
    border-radius: 10px;
    background: #0B1620;
    padding: 20px 15px;
}
/* FAQ css start */
.sc_faq_wrapper .container{
    max-width: 1400px;
}
.sc_faq_parent{
    gap: 15px;
}

.sc_faq_right{
    max-width: 650px;
    width: 100%;
}
.accordion-button:not(.collapsed) {
    background: #FFFFFF0D !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 10px !important;
    padding: 20px 25px 15px !important;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.accordion-button {
    color: var(--darkColor) !important;
    background: #FFFFFF0D !important;
    background: transparent !important;
    padding: 20px 25px !important;
    backdrop-filter: blur(4px);
    border-radius: 10px !important;
}
.accordion-item {
    border-radius: 10px !important;
    margin-bottom: 20px;
    background: #C7C7C70D !important;
    border: 1px solid #4040401A !important;
    backdrop-filter: blur(4px);
}
.accordion-item:last-child {
    margin-bottom: 0;
}
.accordion-body p {
    margin-bottom: 20px;
}
.accordion-body p:last-child{
    margin-bottom: 0;
}
.accordion-button:focus {
    box-shadow: none !important;
}
.accordion-button::after{
    background-image: url(../images/faq-arrow.png) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 9px;
}
.accordion-body {
    max-height: 400px;
    overflow-x: hidden;
    padding: 0 15px 15px 25px !important;
}
/* FAQ css end */
/* Footer section start  */
.fe_footer_legal_item{
    text-decoration: underline;
    padding: 0 10px;
}
.fe_footer_legal_item:hover, .fe_footer_copywrite a:hover{
    color: var(--primary-color);
}
.footer_hr {
    background: linear-gradient(270deg, rgba(6, 184, 115, 0) 0%, rgba(6, 184, 115, 0.3) 50%, rgba(6, 184, 115, 0) 100%);
    opacity: 1;
}
/* Footer section end  */

@media (min-width: 576px) {
    .fe_green_noice_list > li{
    width: 100%;
    gap: 10px;
}
}
@media (min-width: 992px) {
.section_vector_upper:after {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    right: 0;
    width: 100%;
    background: url(../images/section_shape_upper.png);
    background-size: 100% 100%;
    height: 152px;
}
.v_responsive{
    display: none;
}
    .click_unmute{
        animation: 05s ani_top infinite alternate;
    }
}
@media (max-width: 1599px) {
    .fe_ww_row {
        grid-gap: 80px 40px;
    }
}
@media (max-width: 1399px) {
    .fe_banner_title3 br{
        display: none;
    }
    .fb_down_scroll_arrow > img{
        max-width: 40px;
    }
    .fe_video_main_wrapper {
        gap: 30px;
    }
    .full_vector.one {
        top: -12%;
        left: -90px;
    }
    .full_vector.two {
        left: -110px;
    }
    .full_vector {
        width: 130px;
    }
    .fe_shopy_img_logo > img {
        max-width: 190px;
    }
}


@media (max-width: 1399px) and  (min-width: 1200px) {
    .video_wii_left {
        max-width: 200px;
    }
    .video_wii_right {
    width: 150px;
    }
    .video_with_img_inner {
        padding: 15px;
        gap: 10px;
    }
}

@media (max-width: 1299px) {
.fe_banner_title1_wrap {
    padding: 10px 20px;
}
}
@media (max-width: 1199px) {
    .fe_header_logo > img {
        width: 150px;
    }
    /* with and without */
    .fe_ww_box.without .fe_ww_top {
        min-height: 125px;
    }
    .fe_ww_box.with_box .fe_ww_top {
        height: 87px;
        padding-top: 14px;
    }
    .fe_ww_top_logo > img {
        max-width: 250px;
    }
    .fe_ww_top_logo {
        bottom: -33px;
    }
    /* with and without */
    .sc_faq_parent {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    .accordion-item {
        text-align: left;
    }
    .sc_faq_img img {
        max-width: 130px;
    }
    .fe_v_section_wrap {
        border-radius: 20px;
    }
    .full_vector{
        display: none;
    }
    .fe_videos_section_inner {
        border-radius: 20px;
    }
    .click_unmute {
        left: -13%;
    }
    .click_unmute img.img-fluid {
        width: 100px;
    }


}

@media (max-width: 1199px) and  (min-width: 1024px) {
    .video_wii_left {
        max-width: 160px;
    }
    .video_wii_right {
        width: 120px;
    }
    .video_with_img_inner {
        padding: 10px;
        gap: 8px;
    }
}
@media (max-width: 1023px) and  (min-width: 992px) {
    .video_wii_left {
        max-width: 140px;
    }
    .video_wii_right {
        width: 110px;
    }
    .video_with_img_inner {
        padding: 10px;
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .fe_green_big_btn {
        padding: 2% 5%;
    }
    .fe_header_wrap {
        padding: 10px 0;
    }
    .fe_video_main_wrapper {
        gap: 30px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
     /* with and without */
    .fe_ww_row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap:50px 0px;
    }
    .fe_life_list_li {
        padding: 20px;
        min-height: inherit;
    }
     /* with and without */
     .v_main{
        display:none;
    }
    .fe_feature_video {
        margin: auto;
    }
    .sp_grid_bottom_arrow {
        display: none;
    }

    .fe_deadEnd_row {
        grid-template-columns: auto;
    }
    .sp_common_bg_heading {
        padding: 10px 20px;
    }
    .fe_v_section_wrap {
        padding: 5%;
    }
    .fe_automation_section .sp_grid_step_details {
        margin: auto;
    }
    .fe_automation_section .sp_hasH_tag{
        position: inherit!important;
    }
    .fe_wraninig_btn > img {
        width: 22px;
    }
    .click_unmute {
        left: -19%;
        top: -40px;
        right: 0;
        margin: auto;
    }
    .click_unmute{
        animation: 05s ani_left_right infinite alternate;
    }
    .fe_main_box_wrapper {
    flex-direction: column;
    justify-content: center;
}
.fe_main_buy_box {
    margin: auto;
}
.fe_main_buy_section .fe_green_noice_list.inline_list> li{
    width: 100%;
}
}


@media (max-width: 767px) {
    .fe_header_logo {
        width: 100%;
        text-align: center;
    }
    .fe_green_big_btn {
        padding: 2% 4%;
    }
    .fe_header_inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .accordion-item {
        margin-bottom: 12px;
    }
    .fe_v_section_wrap {
        border-radius: 20px;
    }
    .video_wii_left {
        max-width: 160px;
    }
    .video_wii_right {
        width: 120px;
    }
    .video_with_img_inner {
        padding: 15px;
    }
}
@media (min-width: 576px) {
    .img-fluid.crossper {
        position: relative;
        top: -10px;
    }
}
@media (max-width: 575px) {
    .fe_owner_box_list {
        gap: 10px;
    }
    .fe_top_testi_box {
        flex-direction: column;
    }
    .fb_down_scroll_arrow > img{
        max-width: 25px;
    }
        .fe_green_noice_list > li{
        width: 100%;
    }
        .video_wii_left {
        max-width: 130px;
    }
    .video_wii_right {
        width: 100px;
    }
    .fe_choice_box_means {
        min-height: auto;
    }
    .fe_close_icon_box {
        min-height: auto;
    }
     .click_unmute img.img-fluid {
        width: 57px;
    }
    .click_unmute {
        top: -28px;
    }
}
@media (max-width: 479px) {
.fe_banner_title1_wrap {
    border-radius: 10px;
    padding: 10px 10px;
}
.fe_top_testi_box {
    padding: 20px 20px;
}
.fe_deadEnd_box.inline {
    gap: 10px;
    flex-direction: column;
    padding: 15px 15px;
}
.fe_main_buy_box_img_logo > img {
    max-width: 200px;
}
.fe_feature_video {
    border-radius: 15px;
    padding: 2px;
}
.video_with_img_inner {
    padding: 5px;
    border-radius: 15px;
}
.fe_inputOutput_output {
    gap: 3px;
}
.fe_close_icon_box > img {
    width: 20px;
}

}
@media (max-width: 419px) {
     /* with and without */
    .fe_life_list_li {
        padding: 10px 10px 10px 10px;
    }
    .fe_ww_top_logo > img {
        max-width: 180px;
    }
        .fe_ww_top_logo {
        bottom: -22px;
    }
     /* with and without */

}





.fe-audio-wrapper {
 display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.fe-audio-card {
    border-radius: 140px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 10px 30px 0px #5391791A;
    border: 1px solid #C8E4D8;
    background: #FFFFFF;
}

.fe-audio-avatar {
    width: 56px;
    height: 56px;
    background: #ddd;
    border-radius: 50%;
}

.fe-audio-info {
    flex: 1;
}

.fe-audio-info h4 {
    margin: 0;
    font-size: 14px;
}

.fe-audio-wave {
    color: #22c55e;
    font-size: 10px;
    letter-spacing: 2px;
}

.fe-audio-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fe-audio-play-btn img {
    transition: transform 0.2s ease;
}

.fe-audio-play-btn:active img {
    transform: scale(0.9);
}
/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .fe-audio-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .fe-audio-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width: 576px) {
    .fe-audio-wrapper {
        grid-template-columns: 1fr;
    }
}