* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    ;
}
/* =========================
   HORIZONTAL SCROLL FIX
========================= */

html,
body {
    overflow-x: hidden;
}
/*  */
.navbar {
    height: 75px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

body.dark-mode .navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.30);
}

.beplas_nav-left {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO SPACE */
.beplas_logo-box {
    width: 64px;
    height: 64px;
}

.beplas_logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* BRAND TEXT */
.box {
    width: 200px;
    height: 100px;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.box2 {
    width: 250px;
    height: 150px;
    padding-right: 30px;
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.title {
    color: #1e73be;
    font-size: 22px;
    font-weight: bold;
}

.title2 {
    color: #1e73be;
    font-size: 28px;
    font-weight: bold;
}

body.dark-mode .title {
    color: #fff;
}

body.dark-mode .title2 {
    color: #fff;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1e73be;
    font-size: 16px;
    font-weight: bold;
}

.subtitle2 {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1e73be;
    font-size: 22px;
    font-weight: bold;
}

body.dark-mode .subtitle {
    color: white;
}

body.dark-mode .subtitle2 {
    color: white;
}

.line {
    width: 40px;
    height: 3px;
    background: orange;
}

.line2 {
    width: 50px;
    height: 3px;
    background: orange;
}

.beplas_nav-right {
    display: flex;
    align-items: center;
}

/* MENU LIST */
.beplas_nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.beplas_nav-menu li {
    position: relative;
}

/* MENU ITEMS */
.beplas_nav-menu li {
    position: relative;
}

/* MENU LINKS */
.beplas_nav-menu a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 480;
    color: #000000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.beplas_arrow {
    display: inline-block;
    font-size: 40px;
    margin-top: 0;
    transition: transform 0.3s ease;
}

.beplas_dropdown:hover .beplas_arrow {
    transform: rotate(180deg);
}

/* ================= DROPDOWN ================= */
.beplas_dropdown_menu {
    position: absolute;
    top: calc(100% - 12px);
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    list-style: none;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
}

/* DROPDOWN LINKS */
.beplas_dropdown_menu li a {
    display: block;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: normal;
    color: #000;
    text-transform: none;
    display: block;
}

/* HOVER TO OPEN DROPDOWN */
.beplas_dropdown:hover .beplas_dropdown_menu {
    display: block;
}

/* Dark / Light Style */
.theme-switch {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    position: relative;
    width: 85px;
    height: 36px;
    background: #e5e5e5;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.theme-switch input {
    display: none;
}

.theme-switch label {
    width: 50%;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    color: #555;
}

.theme-switch .slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 50%;
    height: 28px;
    background: #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

#darkMode:checked~.slider {
    left: 50%;
}

#lightMode:checked+label {
    color: #000;
}

#darkMode:checked+label {
    color: #000;
}

body.dark-mode .theme-switch {
    background: #222;
}

body.dark-mode .theme-switch .slider {
    background: #000;
}

body.dark-mode .theme-switch label {
    color: #aaa;
}

body.dark-mode {
    background-color: #000;
    color: #fff;
}

/* Text white */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode p,
body.dark-mode a,
body.dark-mode th,
body.dark-mode td,
body.dark-mode span,
body.dark-mode li {
    color: #fff;
}

/* Navbar */
body.dark-mode .navbar {
    background-color: #111;
}

body.dark-mode .beplas_dropdown_menu {
    background-color: #000;
}

body.dark-mode .beplas_dropdown_menu li a {
    color: #fff;
}

body.dark-mode .beplas_home_footer_line {
    background-color: #fff;
}

body.dark-mode input,
body.dark-mode textarea {
    background-color: #111;
    color: #fff;
    border-color: #555;
}

/* Section One style */
.beplas_home_sectionone {
    width: 100%;
    height: 680px;
    margin-top: 74px;
    display: flex;
    justify-content: flex-start;
}

.beplas_home_sectionone_image {
    height: 680px;
    width: 80%;
    position: relative;
    overflow: hidden;
}

/*=--------=*/
.beplas_home_banner {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.beplas_home_banner.active {
    opacity: 1;
    z-index: 1;
}

.beplas_home_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beplas_home_banner.active img {
    animation: beplasZoom 5s linear forwards;
}

/* @keyframes beplasZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
} */

/*=----=*/
.beplas_home_sectionone_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplas_home_image_text {
    position: absolute;
    bottom: 90px;
    left: 20%;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    /* =-----*/
    opacity: 0;
    transform: translateX(120px);
    transition: all 1s ease;
}

/*=---=* start*/
.beplas_home_banner.active .beplas_home_image_text {
    opacity: 1;
    transform: translateX(0);
}

.beplas_banner_prev,
.beplas_banner_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 2;
}

.beplas_banner_prev {
    left: 20px;
}

.beplas_banner_next {
    right: 20px;
}

.beplas_banner_bullets {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.beplas_banner_dot {
    height: 5px;
    width: 40px;
    margin: 0 5px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.4);
    transition: 0.3s;
}

.beplas_banner_dot.active {
    background: #fff;
}

/*=-----=*/
.beplas_home_sectionone_content {
    height: 680px;
    width: 20%;
    padding: 20px;
}

.beplas_info_table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

.beplas_info_table th {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 12px 8px;
    vertical-align: middle;
    width: 40%;
}

.beplas_info_table td {
    font-size: 16px;
    color: #333;
    padding: 10px 8px;
    vertical-align: middle;
}

.beplas_info_table tr {
    border-bottom: 1px solid #e0e0e0;
}

/*Section Two Style */
.beplas_home_sectiontwo {
    height: 520px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.beplas_home_sectiontwo_content {
    height: 520px;
    width: 55%;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    padding-left: 250px;
}

.beplas_home_sectiontwo_image {
    height: 520px;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
}

.beplas_sectiontwo_heading1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 54px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
}

.beplas_home_sectiontwo_content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    color: #000;
    max-width: 650px;
    line-height: 1.8;
    text-align: justify;
    padding-left: 20px;
}

.beplas_home_sectiontwo_image_box {
    height: 485px;
    width: 600px;
    overflow: hidden;
}

.beplas_home_sectiontwo_image_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Section Three Style */
.beplas_home_sectionthree {
    height: 620px;
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    justify-content: flex-start;
}

.beplas_home_sectionthree_content {
    height: 620px;
    width: 24%;
    padding-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 35px;
}

.beplas_home_sectionthree_heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 10px;
}

.beplas_home_sectionthree_content p {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.beplas_home_sectionthree_images {
    position: relative;
    overflow: hidden;
    height: 645px;
    width: 80%;
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}

.beplas_home_sectionthree_prev,
.beplas_home_sectionthree_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
}

.beplas_home_sectionthree_prev {
    left: 25px;
}

.beplas_home_sectionthree_next {
    right: 25px;
}

.beplas_home_sectionthree_image_box {
    height: 480px;
    /*width: 380px;*/
    /* new style */
    /*min-width: 33.33%;*/
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
}

/*.extra_edit{ transition: transform 0.6s ease; } .extra_edit:hover { transform: translateY(-10px) scale(1.04); } body.dark-mode .extra_edit:hover { transform: translateY(-10px) scale(1.04); }*/
.beplas_home_sectionthree_image_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.beplas_home_sectionthree_image_box .same_anchor:hover img {
    transform: scale(1.08);
}

.beplas_sectionthree_imgtext {
    /* margin-left: 40%; font-size: 20px; font-weight: 400;*/
    font-size: 20px;
    margin-top: 8px;
    text-align: center;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.beplas_home_sectionthree_image_box.beplas_sectionthree_imgtext+.beplas_sectionthree_imgtext {
    bottom: 42px;
}

/*Image Hover top to Bottom div flow*/
/* IMAGE HOVER OVERLAY */
.beplas_home_sectionthree_image_box .same_anchor {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
}

.mainSameProductBox a {
    cursor: default;
}

.beplas_hover_overlay {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.55s cubic-bezier(.22, .61, .36, 1);
    z-index: 2;
}

/* hover pe top → bottom */
.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay {
    top: 0;
}

/* list style */
.beplas_hover_overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.beplas_hover_overlay ul li a {
    color: #fff;
    font-size: 20px;
    padding: 6px 0;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s ease;
    text-decoration: none;
    color: #fff;
    display: block;
    cursor: pointer !important;
}

/* stagger animation */
.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li a {
    transform: translateY(0);
    opacity: 1;
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(1) {
    transition-delay: .05s
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(2) {
    transition-delay: .1s
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(3) {
    transition-delay: .15s
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(4) {
    transition-delay: .2s
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(5) {
    transition-delay: .25s
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(6) {
    transition-delay: .3s
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(7) {
    transition-delay: .35s
}

.beplas_home_sectionthree_image_box .same_anchor:hover .beplas_hover_overlay li:nth-child(8) {
    transition-delay: .4s
}

/* Section Four Style */
.beplas_home_sectionfour {
    height: auto;
    width: 1200px;
    margin: 0 auto;
    padding-top: 150px;
    text-align: center;
}

.beplas_home_sectionfour_heading {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 500;
    padding: 10px;
}

.beplas_home_sectionfour_brand {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.beplas_home_sectionfour_brandbox {
    height: 200px;
    width: 300px;
    transition: all 0.3s ease;
}

.beplas_home_sectionfour_brandbox:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

body.dark-mode .beplas_home_sectionfour_brandbox:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.beplas_home_sectionfour_brandbox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*----------------------------*/
.belplas_home_sectionfive_about-us {
    height: auto;
    width: 100%;
    margin-top: 80px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-around;
}

.beplas_home_sectionfive_about-us_content {
    height: 420px;
    width: 50%;
    padding-bottom: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-heading {
    padding: 0 0 25px 100px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 44px;
    font-weight: 500;
}

.beplas_home_sectionfive_about-us_content p {
    padding: 10px 0 0 100px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 30px;
    font-weight: 380;
    letter-spacing: 2px;
    line-height: 50px;
}

.beplas_home_sectionfive_about-us_input {
    height: 420px;
    width: 35%;
    padding-top: 38px;
}

.contact-heading {
    color: #6cb6e8;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 500;
}

.beplas_home_sectionfive_about-us_input input,
.beplas_home_sectionfive_about-us_input textarea {
    width: 100%;
    padding: 14px 22px;
    margin-bottom: 15px;
    border: 2px solid #6cb6e8;
    border-radius: 30px;
    outline: none;
    transition: all 0.3s ease;
}

.two-input {
    display: flex;
    gap: 15px;
}

.two-input input {
    width: 50%;
}

/* Textarea */
textarea {
    height: 110px;
    resize: none;
}

.beplas_home_sectionfive_about-us_input input:hover,
.beplas_home_sectionfive_about-us_input textarea:hover {
    border-color: #1a73c7;
    transform: scale(1.03);
}

.contact-submit-btn {
    width: 100%;
    padding: 14px 22px;
    margin-bottom: 15px;
    border: 2px solid #1a73c7;
    border-radius: 30px;
    background-color: #6cb6e8;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    border-color: #8cbfe1;
    background-color: #1a73c7;
    transform: scale(1.03);
}

body.dark-mode .contact-submit-btn {
    background-color: #1a73c7;
    border-color: #8cbfe1;
}

/* ===== WhatsApp Floating Button ===== */
.beplas_whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s ease;
    text-decoration: none;
}

.beplas_whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

/* ============================= */
/* SCROLL REVEAL ANIMATION SYSTEM */
/* ============================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.1s cubic-bezier(.22, .61, .36, 1);
    will-change: transform, opacity;
}

.reveal.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    /*filter: blur(0);*/
}

/* directions */
.reveal-left {
    transform: translateX(-180px) scale(0.96);
    /*filter: blur(6px);*/
}

.reveal-right {
    transform: translateX(180px) scale(0.96);
    /*filter: blur(6px);*/
}

.reveal-top {
    transform: translateY(80px);
}

/* cinematic heading */
.reveal-heading {
    opacity: 0;
    letter-spacing: 8px;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal-heading.show {
    opacity: 1;
    letter-spacing: 1px;
    transform: translateY(0);
}

/* stagger children (logo grid / gallery) */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal-stagger.show>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.show>*:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger.show>*:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger.show>*:nth-child(3) {
    transition-delay: 0.18s;
}

.reveal-stagger.show>*:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal-stagger.show>*:nth-child(5) {
    transition-delay: 0.30s;
}

.reveal-stagger.show>*:nth-child(6) {
    transition-delay: 0.36s;
}

.reveal-stagger.show>*:nth-child(7) {
    transition-delay: 0.42s;
}

.reveal-stagger.show>*:nth-child(8) {
    transition-delay: 0.48s;
}

/* ===== DIRECTIONAL ROTATION STYLE — NO LOGIC CHANGE ===== */
.beplas_home_sectionthree_image_box {
    transition: transform 0.55s cubic-bezier(.22, .61, .36, 1), opacity 0.55s ease, filter 0.55s ease;
}

/* when moving next */
.rot-next-out {
    transform: translateX(-200px) scale(0.92);
    opacity: 0;
    filter: blur(4px);
}

.rot-next-in {
    transform: translateX(200px) scale(0.92);
    opacity: 0;
    filter: blur(4px);
}

/* when moving prev */
.rot-prev-out {
    transform: translateX(200px) scale(0.92);
    opacity: 0;
    filter: blur(4px);
}

.rot-prev-in {
    transform: translateX(-200px) scale(0.92);
    opacity: 0;
    filter: blur(4px);
}

.rot-show {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
}

/* ================= MOBILE MENU ================= */
.beplas_menu_toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.beplas_menu_toggle span {
    width: 28px;
    height: 3px;
    background: #000;
    display: block;
    transition: .3s;
}

body.dark-mode .beplas_menu_toggle span {
    background: #fff;
}

/* ===== MENU TOGGLE ANIMATION ===== */
.beplas_menu_toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.beplas_menu_toggle.active span:nth-child(2) {
    opacity: 0;
}

.beplas_menu_toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* mobile */
@media(max-width:1024px) {
    .beplas_menu_toggle {
        display: flex;
    }

    .beplas_nav-right {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        background: white;
        backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 25px 0px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        z-index: 999;
        animation: menuFade 0.3s ease;
    }

    body.dark-mode .beplas_nav-right {
        background: #000;
    }

    .beplas_nav-right.active {
        display: flex;
    }

    .beplas_nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: left;
    }

    /* new code*/
    .beplas_nav-menu li {
        width: 100%;
    }

    .beplas_nav-menu a {
        font-size: 18px;
        padding: 12px 0;
        display: block;
        width: 100%;
    }

    .beplas_nav-menu a {
        /*font-size: 18px;
        padding: 10px 0;
        display: block;*/
        font-size: 18px;
        padding: 14px 20px;
        display: block;
        width: 90%;
        margin: 5px 10px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .beplas_nav-menu a:hover {
        background: rgba(0, 0, 0, 0.06);
        transform: translateX(6px);
    }

    body.dark-mode .beplas_nav-right {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.dark-mode .beplas_nav-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    body.dark-mode .beplas_nav-menu a {
        color: #fff;
    }

    @keyframes menuFade {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile menu click highlight */
.beplas_nav-menu a:active,
.beplas_nav-menu a.active-link {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
}

body.dark-mode .beplas_nav-menu a:active,
body.dark-mode .beplas_nav-menu a.active-link {
    background: rgba(255, 255, 255, 0.12);
}

/*body.dark-mode .beplas_nav-right {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}*/

@media (max-width: 1024px) {

    /* navbar */
    .navbar {
        padding: 0 20px;
    }

    .beplas_nav-menu {
        gap: 18px;
    }

    .beplas_nav-menu a {
        font-size: 18px;
        padding-left: 10px;
        text-decoration: none;
    }

    .theme-switch {
        margin-left: 15px;
        margin-bottom: 10px;
    }

    /* section 1 */
    .beplas_home_sectionone {
        flex-direction: column;
        height: auto;
    }

    .beplas_home_sectionone_image {
        width: 100%;
        height: 400px;
    }

    .beplas_home_sectionone_content {
        width: 100%;
        height: auto;
    }

    /* section 2 */
    .beplas_home_sectiontwo {
        flex-direction: column;
        height: auto;
    }

    .beplas_home_sectiontwo_content {
        width: 100%;
        padding: 40px 20px;
        padding-left: 20px;
        align-items: center;
    }

    .beplas_home_sectiontwo_image {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0px;
        height: 600px;
    }

    .beplas_home_sectiontwo_image_box {
        width: 90%;
        height: 600px;
    }

    .beplas_home_sectiontwo_image_box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* section 3 */
    .beplas_home_sectionthree {
        flex-direction: column;
        height: auto;
        margin-top: 50px;
    }

    .beplas_home_sectionthree_content {
        width: 100%;
        height: auto;
        padding: 20px;
        margin-top: 30px;
    }

    .beplas_home_sectionthree_images {
        overflow: hidden;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .beplas_home_sectionthree_image_box {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* section 4 */
    .beplas_home_sectionfour {
        width: 100%;
        padding: 40px 20px;
    }

    .beplas_home_sectionfour_brand {
        grid-template-columns: repeat(2, 1fr);
    }

    .beplas_home_sectionfour_brandbox {
        width: 100%;
        height: 150px;
    }

    .beplas_home_sectionfour_heading {
        font-size: 38px;
    }

    /* section 5 */
    .belplas_home_sectionfive_about-us {
        flex-direction: column;
        padding: 20px;
    }

    .beplas_home_sectionfive_about-us_content {
        width: 100%;
        height: auto;
    }

    .beplas_home_sectionfive_about-us_input {
        width: 100%;
    }

    .visit-heading {
        text-align: center;
        padding-left: 0%;
        font-size: 36px;
    }

    .beplas_home_sectionfive_about-us_content p {
        text-align: center;
        padding-left: 0%;
        font-size: 27px;
    }

    /* footer */
    .beplas_home_footer {
        flex-direction: column;
        padding: 40px 20px;
    }

    .Beplas_home_footer_leftcontent {
        width: 100%;
    }

    .Beplas_home_footer_rightcontent {
        width: 100%;
        margin-top: 30px;
    }
}

/* ================= MOBILE VIEW (<=600px) ================= */
@media (max-width: 600px) {

    /* ===== NAVBAR ===== */
    .navbar {
        padding: 0 15px;
        height: 50px;
    }

    .beplas_nav-left {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .beplas_logo-box {
        height: 40px;
        width: 40px;
    }

    .beplas_logo-box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .title {
        font-size: 16px;
        padding-right: 15px;
    }

    .subtitle {
        font-size: 13px;
        padding-right: 17px;
    }

    .line {
        width: 30px;
    }

    .box {
        padding: 0;
    }

    .beplas_nav-right {
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .beplas_nav-right.active {
        display: flex;
    }

    .beplas_nav-menu {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    /* ===== SECTION 1 ===== */
    .beplas_home_sectionone {
        flex-direction: column;
        height: auto;
        margin-top: 50px;
    }

    .beplas_home_sectionone_image {
        width: 100%;
        height: 300px;
    }

    .beplas_home_sectionone_content {
        width: 100%;
        height: auto;
    }

    .beplas_home_image_text {
        font-size: 30px;
    }

    .beplas_banner_prev,
    .beplas_banner_next {
        font-size: 18px;
    }

    /* ===== SECTION 2 ===== */
    .beplas_home_sectiontwo {
        flex-direction: column;
        height: auto;
    }

    .beplas_home_sectiontwo_content {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 50px;
        ;
    }

    .beplas_sectiontwo_heading1 {
        font-size: 30px;
    }

    .beplas_home_sectiontwo_content p {
        font-size: 18px;
        text-align: center;
        line-height: 40px;
        padding: 0;
    }

    .beplas_home_sectiontwo_image {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .beplas_home_sectiontwo_image_box {
        width: 95%;
        height: 400px;
    }

    .beplas_home_sectiontwo_image_box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* ===== SECTION 3 (IMPORTANT) ===== */
    .beplas_home_sectionthree {
        flex-direction: column;
        height: auto;
    }

    .beplas_home_sectionthree_content {
        width: 100%;
        height: auto;
        text-align: center;
        padding: 20px;
    }

    .beplas_home_sectionthree_images {
        position: relative;
        touch-action: pan-y;
        height: 525px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*  hide all images */
    .beplas_home_sectionthree_image_box {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(-50%);
        width: 100%;
        height: 370px;
        flex: none;
        max-width: 100%;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .beplas_home_sectionthree_image_box .same_anchor {
        height: 100%;
        width: 100%;
    }

    .beplas_home_sectionthree_image_box p {
        position: static;
        margin-top: 6px;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
    }

    .beplas_home_sectionthree_image_box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /*  show only first */
    .beplas_home_sectionthree_image_box.active {
        opacity: 1;
        pointer-events: auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .beplas_home_sectionthree_prev,
    .beplas_home_sectionthree_next {
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* ===== SECTION 4 (BRANDS) ===== */
    .beplas_home_sectionfour {
        width: 100%;
        padding: 40px 10px;
    }

    .beplas_home_sectionfour_brand {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .beplas_home_sectionfour_brandbox {
        width: 100%;
        height: 120px;
    }

    .beplas_home_sectionfour_heading {
        font-size: 20px;
        font-weight: 600;
    }

    /* ===== SECTION 5 (CONTACT) ===== */
    .belplas_home_sectionfive_about-us {
        flex-direction: column;
        align-items: center;
    }

    .beplas_home_sectionfive_about-us_content,
    .beplas_home_sectionfive_about-us_input {
        width: 90%;
    }

    .beplas_home_sectionfive_about-us_content p {
        padding-left: 0;
        text-align: center;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 40px;
        font-weight: 350;
    }

    .visit-heading {
        padding-left: 0;
        text-align: center;
        font-size: 30px;
        padding-bottom: 10px;
    }

    .contact-heading {
        font-size: 30px;
        padding: 0;
        text-align: center;
    }

    /* ===== FOOTER ===== */
    .beplas_home_footer {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .Beplas_home_footer_rightcontent {
        flex-direction: column;
        gap: 20px;
    }
}

/* About Page Style Start Here */
/* Section One Style */
.beplas_about_sectionone {
    height: auto;
    width: 100%;
    margin-top: 70px;
}

.beplas_about_sectionone_image {
    height: 600px;
    width: 100%;
}

.beplas_about_sectionone_imgbox {
    position: relative;
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.about-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.beplas_about_sectionone_imgbox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplas_about_sectionone_content {
    height: 500px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.beplas_about_sectionone_content_left {
    height: 450px;
    width: 65%;
    padding-left: 120px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beplas_about_sectionone_content_left h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    color: #4aa6c9;
    font-weight: 700;
    margin-bottom: 25px;
}

body.dark-mode .beplas_about_sectionone_content_left h2 {
    color: #4aa6c9;
}

.beplas_about_sectionone_content_left p {
    font-size: 20px;
    line-height: 1.7;
    color: black;
    margin-bottom: 20px;
}

.beplas_about_sectionone_content_right {
    height: 450px;
    width: 35%;
    margin-right: 25px;
}

.hexagon {
    width: 100%;
    height: 450px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    overflow: hidden;
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.dark-mode .hexagon {
    background-color: black;
}

/* Section Two Style */
.beplas_about_sectiontwo {
    height: auto;
    width: 100%;
    text-align: center;
    margin-top: 10%;
}

.beplas_about_sectiontwo_content {
    height: 200px;
    width: 100%;
    margin-bottom: 50px;
}

.beplas_about_sectiontwo_content h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.beplas_about_sectiontwo_content p {
    width: 65%;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 1px;
    color: black;
}

.beplas_about_sectiontwo_logos {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.beplas_about_sectiontwo_logobox {
    height: 500px;
    width: 400px;
    padding: 20px;
    text-align: center;
}

.beplas_about_sectiontwo_logobox .icon_box {
    height: 220px;
    width: 220px;
    margin: 0 auto 1px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplas_about_sectiontwo_logobox h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.beplas_about_sectiontwo_logobox p {
    font-size: 20px;
    line-height: 1.6;
}

/* Section Three Style */
.beplas_about_sectionthree {
    height: auto;
    width: 100%;
    margin-top: 10%;
}

.beplas_about_sectionthree h2 {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 50px;
}

.beplas_about_sectionthree_logos {
    height: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.beplas_about_sectionthree_logobox {
    height: 150px;
    width: 60%;
    margin-left: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all 0.3s ease;
}

.beplas_about_sectionthree_logobox:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

body.dark-mode .beplas_about_sectionthree_logobox:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
    border-radius: 12px;
}

.beplas_about_sectionthree_logobox_img {
    height: 140px;
    width: 140px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.beplas_about_sectionthree_logobox_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplas_about_sectionthree_logobox_content {
    height: 150px;
    width: 70%;
    padding: 20px 0 0 10px;
}

.beplas_about_sectionthree_logobox_content h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 600;
}

.beplas_about_sectionthree_logobox_content p {
    margin-top: 8px;
    font-size: 25px;
    font-weight: 400;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Section Four Style Here */
.beplas_about_sectionfour {
    width: 100%;
    height: auto;
    margin-top: 100px;
    text-align: center;
}
.beplas_about_sectionfour h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 700;
}
.beplas_sectionfour_main {
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beplas_sectionfour_slider_main {
    width: 90%;
    overflow: hidden;
}
.beplas_sectionfour_slider {
    display: flex;
    gap: 30px;
    padding: 0;
    padding-left: 20px;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
}

        /* box styling */
.beplas_box {
    min-width: calc((100% - 40px - 40px) / 3);
    height: 380px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 12px;
}
body.dark-mode .beplas_box {
    color: black;
}
body.dark-mode .beplas_box p {
    color: black;
}
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.review-text {
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    padding: 0px 10px;
    padding-bottom: 30px;
}
.review-user {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 15px;
}
.user-name {
    font-size: 22px;
    font-weight: 600;
}
.user-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
}

.stars {
    padding-left: 15%;
    text-align: left;
}

.star {
    font-size: 28px;
    color: #ccc;
}

.star.full {
    color: gold;
}

.star.half {
    background: linear-gradient(90deg, gold 50%, #ccc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Animation Base */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translate(0, 0);
}

/* Directions */
.from-left {
    transform: translateX(-80px);
}

.from-right {
    transform: translateX(80px);
}

.from-top {
    transform: translateY(-80px);
}

.from-bottom {
    transform: translateY(80px);
}

.beplas_about_sectionone_imgbox img {
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
}

.beplas_about_sectionone_imgbox img.show {
    opacity: 1;
    transform: scale(1);
}

.about-overlay-text {
    opacity: 0;
    transform: translate(-50%, 40px);
    transition: all 0.8s ease;
}

.about-overlay-text.show {
    opacity: 1;
    transform: translate(-50%, 0);
}
@media (max-width: 1024px) {

    /* SECTION ONE */
    .about-overlay-text {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: white;
        font-size: 56px;
        font-weight: 700;
        letter-spacing: 2px;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    }

    .beplas_about_sectionone_content {
        flex-direction: column;
        height: auto;
    }

    .beplas_about_sectionone_content_left {
        width: 90%;
        padding: 20px;
        text-align: center;
    }

    .beplas_about_sectionone_content_left h2 {
        font-size: 36px;
    }

    .beplas_about_sectionone_content_left p {
        font-size: 18px;
    }

    .beplas_about_sectionone_content_right {
        width: 100%;
        height: 450px;
        margin: 20px auto;
        display: flex;
        justify-content: center;
    }

    .hexagon {
        height: 450px;
        width: 75%;
    }

    .hexagon img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* SECTION TWO */
    .beplas_about_sectiontwo_content h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .beplas_about_sectiontwo_logos {
        flex-wrap: wrap;
        gap: 20px;
    }

    .beplas_about_sectiontwo_logobox {
        width: 31%;
        height: auto;
    }

    .beplas_about_sectiontwo_logobox .icon_box {
        height: 150px;
        width: 150px;
    }

    .icon_box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .beplas_about_sectiontwo_logobox h3 {
        font-size: 26px;
    }

    .beplas_about_sectiontwo_logobox p {
        font-size: 17px;
        line-height: 1.5;
    }

    .beplas_about_sectiontwo_content p {
        width: 90%;
        font-size: 22px;
    }

    /* SECTION THREE */
    .beplas_about_sectionthree h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .beplas_about_sectionthree_logobox {
        width: 90%;
        margin: auto;
        flex-direction: row;
        height: 100px;
    }

    .beplas_about_sectionthree_logobox_img {
        height: 100px;
        width: 100px;
    }

    .beplas_about_sectionthree_logobox_img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .beplas_about_sectionthree_logobox_content {
        padding: 0;
        padding-top: 35px;
    }

    .beplas_about_sectionthree_logobox_content h3 {
        font-size: 22px;
    }

    .beplas_about_sectionthree_logobox_content p {
        font-size: 16px;
        margin: 0;
        margin-top: 5px;
    }
    /* Section Four */
    .beplas_about_sectionfour h2 {
        font-size: 36px;
        font-weight: 600;
    }
    .beplas_box {
        min-width: calc((100% - 30px - 30px) / 2);
        height: 400px;
    }
    .beplas_sectionfour_slider {
        display: flex;
        gap: 40px;
        padding: 0;
        padding-left: 20px;
        box-sizing: border-box;
        transition: transform 0.5s ease-in-out;
    } 
    .btn {
        position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            border: none;
            font-size: 30px;
            padding: 10px 18px;
            cursor: pointer;
            z-index: 10;
            display: none;
        }
    .review-user {
        display: flex;
        align-items: center;
        gap: 5px;
        padding-left: 15px;
    }
    .stars {
        padding-left: 18%;
        text-align: left;
    }
}
@media (max-width: 600px) {

    /* SECTION ONE */
    .beplas_about_sectionone {
        margin-top: 55px;
    }

    .beplas_about_sectionone_image {
        height: 250px;
        width: 100%;
    }

    .beplas_about_sectionone_imgbox {
        height: 250px;
        width: 100%;
    }

    .beplas_about_sectionone_imgbox img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .about-overlay-text {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: white;
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 2px;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    }

    .beplas_about_sectionone_content {
        padding: 0;
        margin-top: 20px;
    }

    .beplas_about_sectionone_content_left {
        height: 650px;
    }

    .beplas_about_sectionone_content_left h2 {
        font-size: 28px;
    }

    .beplas_about_sectionone_content_left p {
        font-size: 16px;
    }

    .beplas_about_sectionone_content_right {
        width: 100%;
        height: 300px;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .hexagon {
        width: 90%;
        height: 300px;
    }

    .hexagon img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* SECTION TWO */
    .beplas_about_sectiontwo {
        height: auto;
    }

    .beplas_about_sectiontwo_logos {
        width: 100%;
        height: auto;
    }

    .beplas_about_sectiontwo_logobox {
        width: 100%;
    }

    .beplas_about_sectiontwo_logobox .icon_box {
        height: 150px;
        width: 150px;
    }

    .icon_box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .beplas_about_sectiontwo_logobox p {
        font-size: 16px;
    }

    .beplas_about_sectiontwo_content h2 {
        font-size: 32px;
    }

    .beplas_about_sectiontwo_content p {
        font-size: 18px;
    }

    /* SECTION THREE */
    .beplas_about_sectionthree h2 {
        font-size: 28px;
        font-weight: 600;
    }

    .beplas_about_sectionthree_logos {
        height: auto;
    }

    .beplas_about_sectionthree_logobox {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 10px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .beplas_about_sectionthree_logobox_img {
        width: 80px;
        height: 80px;
    }

    .beplas_about_sectionthree_logobox_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .beplas_about_sectionthree_logobox_content {
        width: 100%;
    }

    .beplas_about_sectionthree_logobox_content h3 {
        font-size: 24px;
    }

    .beplas_about_sectionthree_logobox_content p {
        font-size: 16px;
    }
    /* Section Four */
    .beplas_about_sectionfour h2 {
        font-size: 21px;
        font-weight: 600;
    }
    .beplas_box {
        min-width: 100%;
        height: 370px;
    }

    .beplas_sectionfour_slider {
        gap: 20px;
        padding-left: 0;
    }
    .btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: black;
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 18px;
        z-index: 10;
        display: none;
    }
    .review-bottom {
        padding-bottom: 30px;
    }
    .review-user {
        display: flex;
        align-items: center;
        gap: 5px;
        padding-left: 15px;
    }
    .star {
        font-size: 28px;
        color: #ccc;
    }
    .belplas_home_sectionfive_about-us {
        flex-direction: column;
        align-items: center;
    }

    .beplas_home_sectionfive_about-us_content,
    .beplas_home_sectionfive_about-us_input {
        width: 90%;
    }

    .beplas_home_sectionfive_about-us_content p {
        padding-left: 0;
        text-align: center;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 40px;
        font-weight: 350;
    }

    .visit-heading {
        padding-left: 0;
        text-align: center;
        font-size: 30px;
        padding-bottom: 10px;
    }

    .contact-heading {
        font-size: 30px;
        padding: 0;
        text-align: center;
    }
    /* ===== FOOTER ===== */
    .beplas_home_footer {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .Beplas_home_footer_rightcontent {
        flex-direction: column;
        gap: 20px;
    }

}
/*BePlasWalls Style Start here*/
/*sectionone Style Start here*/
.beplas_beplaswalls_sectionone {
    height: auto;
    width: 100%;
    margin-top: 74px;
}

.beplas_beplaswalls_sectionone_image {
    height: 600px;
    width: 100%;
    position: relative;
}

.beplas_beplaswalls_sectionone_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplaswalls-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/*Section Two Style here*/
.beplas_beplaswalls_sectiontwo {
    height: auto;
    width: 100%;
    margin-top: 70px;
    padding: 0 0 0 127px;
    align-items: center;
}

.beplas_beplaswalls_sectiontwo_box {
    /*display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    justify-content: space-around;
    align-items: center;*/
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.boxmargin {
    margin-top: 20px;
}

.beplas_beplaswalls_sectiontwo_samebox {
    height: 320px;
    width: 400px;
}

.beplas_beplaswalls_sectiontwo_imgbox {
    height: 260px;
    width: 400px;
    overflow: hidden;
}
.beplas_beplaswalls_sectiontwo_imgbox a {
    display: block;
    height: 100%;
    width: 100%;
}
.beplas_beplaswalls_sectiontwo_imgbox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.beplas_beplaswalls_sectiontwo_samebox a {
    display: block;
    font-size: 24px;
    font-weight: 500;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-decoration: none;
    color: black;
    text-align: center;
    margin-top: 10px;
}

/*  Section One Animation */
/* .beplas_beplaswalls_sectionone_image img {
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
}

.beplas_beplaswalls_sectionone_image img.show {
    opacity: 1;
    transform: scale(1);
}

.beplaswalls-overlay-text {
    opacity: 0;
    transform: translate(-50%, 40px);
    transition: all 0.8s ease;
}

.beplaswalls-overlay-text.show {
    opacity: 1;
    transform: translate(-50%, 0);
} */
/*  Section Two Animation 
.beplas_beplaswalls_sectiontwo_box {
    opacity: 0;
    transition: all 1s ease;
}

/* Left To Right 
.beplas_beplaswalls_sectiontwo_box:first-child {
    transform: translateX(-100px);
}

.beplas_beplaswalls_sectiontwo_box:first-child.show {
    opacity: 1;
    transform: translateX(0);
}

/* Right To Left 
.beplas_beplaswalls_sectiontwo_box:last-child {
    transform: translateX(100px);
}

.beplas_beplaswalls_sectiontwo_box:last-child.show {
    opacity: 1;
    transform: translateX(0);
} */

@media (max-width: 1024px) {
    .beplas_beplaswalls_sectiontwo {
       padding: 0px;
    }

    .beplas_beplaswalls_sectiontwo_box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .beplas_beplaswalls_sectiontwo_samebox {
        width: 45%;
        /* 2 boxes per row */
        height: auto;
    }

    .beplas_beplaswalls_sectiontwo_imgbox {
        width: 100%;
        height: auto;
    }

    .beplas_beplaswalls_sectiontwo_imgbox img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .beplas_beplaswalls_sectiontwo_samebox a {
        font-size: 20px;
    }
}

@media (max-width: 600px) {

    /* SECTION ONE */
    .beplas_beplaswalls_sectionone {
        margin-top: 55px;
    }

    .beplas_beplaswalls_sectionone_image {
        height: 250px;
        width: 100%;
    }

    .beplas_beplaswalls_sectionone_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .beplaswalls-overlay-text {
        font-size: 28px;
    }

    /* Section Two Media Query Style */
    .beplas_beplaswalls_sectiontwo_box {
        flex-direction: column;
        align-items: center;
    }

    .beplas_beplaswalls_sectiontwo_samebox {
        width: 90%;
        /* 1 box per row */
        height: auto;
    }

    .beplas_beplaswalls_sectiontwo_imgbox {
        width: 100%;
        height: auto;
    }

    .beplas_beplaswalls_sectiontwo_imgbox img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .beplas_beplaswalls_sectiontwo_samebox a {
        font-size: 18px;
    }
}


/*Be Plas Elite Komadur Style here */
/*section one Style here */
.beplas_elitekomadur_sectionone {
    height: auto;
    width: 100%;
    margin-top: 74px;
}

.beplas_elitekomadur_sectionone_imagebox {
    height: 600px;
    width: 100%;
    position: relative;
}

.beplas_elitekomadur_sectionone_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplaselite-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/*Section two style here*/
.beplas_elitekomadur_sectiontwo {
    height: auto;
    width: 100%;
    margin-bottom: 8%;
}

.beplas_elitekomadur_sectiontwo_content h2 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 600;
    padding-top: 50px;
}

.beplas_elitekomadur_sectiontwo_content p {
    font-size: 20px;
    line-height: 1.7;
    color: black;
    padding: 30px 250px 0px 250px;
    text-align: center;
}
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
}

.prev-btn {
    left: 11%;
}

.next-btn {
    right: 11%;
}

.beplas_elitekomadur_sectiontwo_image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    overflow: hidden;
}

.beplas_elite_komadur_sectiontwo_subimgbox {
    display: flex;
    justify-content: center;
    gap: 17px;
    width: 80%;
    overflow: hidden;
}

.beplas_elitekomadur_sectiontwo_slider {
    display: flex;
    gap: 17px;
    transition: transform 0.5s ease-in-out;
}

.beplas_elitekomadur_sectiontwo_imagebox {
    min-width: calc((100% - 17px) / 2);
    height: 400px;
}

.beplas_elitekomadur_sectiontwo_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*Section three style here*/
.beplas_elitekomadur_sectionthree {
    height: auto;
    width: 100%;
    margin-bottom: 2%;
}

.beplas_elitekomadur_sectionthree h2 {
    margin-left: 80px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 600;
}

.beplas_elitekomadur_sectionthree_content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 650px;
    padding: 20px;
}

.beplas_elitekomadur_sectionthree_samecontent {
    height: 80px;
    max-width: 1200px;
    width: 1200px;
    margin-left: 7%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.beplas_elitekomadur_sectionthree_samecontent_image {
    height: 80px;
    width: 80px;
}

.beplas_elitekomadur_sectionthree_samecontent_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplas_elitekomadur_sectionthree_samecontent_content {
    font-size: 20px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding-left: 40px;
    width: 1100px;
}

/*Section four style here*/
.beplas_elitekomadur_sectionfour {
    height: auto;
    width: 100%;
    margin-top: 100px;
}

.beplas_elitekomadur_sectionfour h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}

.beplas_elitekomadur_sectionfour_content {
    display: flex;
    justify-content: flex-start;
    padding-top: 30px;
}

.beplas_elitekomadur_sectionfour_colour {
    width: 50%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.beplas_elitekomadur_sectionfour_tablecontent {
    width: 50%;
    height: 500px;
}

.beplas_elitekomadur_sectionfour_tablecontent h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    padding-right: 50px;
}

.beplas_elitekomadur_sectionfour_colourbox {
    height: 80px;
    width: 650px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.beplas_elitekomadur_sectionfour_colourboxes {
    height: 82px;
    width: 82px;
}

.beplas_elitekomadur_sectionfour_colourboxes img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.technical_table {
    width: 100%;
    border-collapse: collapse;
}

.technical_table tr {
    border-bottom: 1px solid #e6e6e6;
}

.technical_table td {
    padding: 14px 0;
    font-size: 19px;
    vertical-align: top;
}

.technical_table td:first-child {
    width: 40%;
    color: #666;
    padding-left: 100px;
}

.technical_table td:last-child {
    width: 60%;
    color: #222;
    padding-left: 40px;
}
/*section five style here*/
.beplas_elitekomadur_sectionfive {
    height: auto;
    width: 100%;
    margin-top: 100px;
}
.beplas_elitekomadur_sectionfive h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    padding-left: 40px;
    padding-bottom: 50px;
}
.beplas_elitekomadur_sectionfive_images {
    height: auto;
    width: 100%;
    padding: 0 0 0 40px;
}
.beplas_elitekomadur_sectionfive_rowbox {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}
.beplas_elitekomadur_sectionfive_samebox {
    height: 300px;
    width: 330px;
}
.beplas_elitekomadur_sectionfive_imagebox {
    height: 250px;
    width: 100%;
}
.beplas_elitekomadur_sectionfive_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.style-anchor {
    display: block;
    font-size: 24px;
    font-weight: 500;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-decoration: none;
    color: black;
    text-align: center;
    margin-top: 10px;
}

/* Page Load Animation */
/*  Section One Animation */
/* .beplas_elitekomadur_sectionone_imagebox img {
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
}

.beplas_elitekomadur_sectionone_imagebox img.show {
    opacity: 1;
    transform: scale(1);
}

.beplaselite-overlay-text {
    opacity: 0;
    transform: translate(-50%, 40px);
    transition: all 0.8s ease;
}

.beplaselite-overlay-text.show {
    opacity: 1;
    transform: translate(-50%, 0);
} */

@media (max-width:1024px){
/* SEction one */
    .beplas_elitekomadur_sectionone_imagebox{
        height:380px;
    }

    .beplaselite-overlay-text{
        font-size:42px;
        bottom:25px;
        text-align:center;
        width:90%;
    }
/* Section two */
    .beplas_elitekomadur_sectiontwo_content h2{
        font-size:40px;
    }

    .beplas_elitekomadur_sectiontwo_content p{
        font-size:18px;
        padding:20px;
        line-height:1.6;
    }

    .beplas_elite_komadur_sectiontwo_subimgbox{
        width:88%;
    }

    .beplas_elitekomadur_sectiontwo_imagebox{
        height:320px;
    }

    .prev-btn{
        left:4%;
    }

    .next-btn{
        right:4%;
    }
/* Section three */
    .beplas_elitekomadur_sectionthree h2{
        margin-left:40px;
        font-size:32px;
    }

    .beplas_elitekomadur_sectionthree_content{
        height:auto;
        gap:20px;
    }

    .beplas_elitekomadur_sectionthree_samecontent{
        width:90%;
        max-width:90%;
        margin-left:auto;
        margin-right:auto;
        height:auto;
        align-items:center;
    }

    .beplas_elitekomadur_sectionthree_samecontent_content{
        width:100%;
        font-size:18px;
        padding-left:25px;
        display:flex;
        align-items:center;
    }
    .beplas_elitekomadur_sectionthree_samecontent_image {
        height: 70px;
        width: 70px;
    }

    .beplas_elitekomadur_sectionthree_samecontent_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .beplas_elitekomadur_sectionthree_samecontent_content p{
        margin:0;
        font-size: 17px;
    }
/* Section four */
    .beplas_elitekomadur_sectionfour h2{
        font-size:42px;
    }

    .beplas_elitekomadur_sectionfour_content{
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    .beplas_elitekomadur_sectionfour_colour,
    .beplas_elitekomadur_sectionfour_tablecontent{
        width:95%;
        height:auto;
    }
    .beplas_elitekomadur_sectionfour_tablecontent h2 {
        padding: 10px 0px;
    }
    .beplas_elitekomadur_sectionfour_tablecontent {
        margin-top: 60px;
    }

    .beplas_elitekomadur_sectionfour_colourbox{
        width:100%;
        justify-content:center;
        gap:12px;
        flex-wrap:wrap;
        height:auto;
    }

    .technical_table td:first-child{
        padding-left:20px;
        width:38%;
    }

    .technical_table td:last-child{
        padding-left:20px;
    }

    .beplas_elitekomadur_sectionfive_rowbox{
        flex-wrap:wrap;
        gap:25px;
    }

    .beplas_elitekomadur_sectionfive_samebox{
        width:45%;
        height:auto;
    }

    .beplas_elitekomadur_sectionfive_imagebox{
        height:220px;
    }

    .style-anchor{
        font-size:20px;
    }
}
@media (max-width:600px){

    .beplas_elitekomadur_sectionone{
        margin-top:50px;
    }

    .beplas_elitekomadur_sectionone_imagebox{
        height:250px;
        width: 100%;
    }

    .beplaselite-overlay-text{
        font-size:26px;
        width:95%;
        text-align:center;
        bottom:18px;
        letter-spacing:1px;
    }
/* section two*/
    .beplas_elitekomadur_sectiontwo{
        margin-bottom:50px;
        margin-top: 70px;
    }

    .beplas_elitekomadur_sectiontwo_content h2{
        font-size:30px;
        padding:20px 10px 0;
    }

    .beplas_elitekomadur_sectiontwo_content p{
        font-size:16px;
        line-height:1.5;
        padding:15px;
        text-align: center;
    }

    .beplas_elitekomadur_sectiontwo_imagebox {
        min-width: 100%;
    }

    .beplas_elite_komadur_sectiontwo_subimgbox {
        width: 100%;
        padding: 10px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
/*section three*/
    .beplas_elitekomadur_sectionthree{
        margin-bottom:35px;
    }

    .beplas_elitekomadur_sectionthree h2{
        margin-left:0;
        text-align:center;
        font-size:28px;
        padding:0 10px;
    }

    .beplas_elitekomadur_sectionthree_content{
        height:auto;
        gap:18px;
        padding:15px;
    }

    .beplas_elitekomadur_sectionthree_samecontent{
        width:100%;
        max-width:100%;
        margin:0;
        gap:15px;
        padding:15px 10px;
        display:flex;
        align-items:center;
    }

    .beplas_elitekomadur_sectionthree_samecontent_image{
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    .beplas_elitekomadur_sectionthree_samecontent_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .beplas_elitekomadur_sectionthree_samecontent_content{
        width:100%;
        padding-left:0;
        display:flex;
        align-items:center;
    }
    .beplas_elitekomadur_sectionthree_samecontent_content p{
        margin:0;
        line-height:1.5;
        font-size: 15px;
    }
/*section four*/
    .beplas_elitekomadur_sectionfour{
        margin-top:50px;
    }

    .beplas_elitekomadur_sectionfour h2{
        font-size:30px;
    }

    .beplas_elitekomadur_sectionfour_content{
        flex-direction:column;
        gap:30px;
        padding:20px 10px 0;
    }

    .beplas_elitekomadur_sectionfour_colour,
    .beplas_elitekomadur_sectionfour_tablecontent{
        width:100%;
        height:auto;
    }

    .beplas_elitekomadur_sectionfour_colourbox{
        width:100%;
        flex-wrap:wrap;
        gap:10px;
        height:auto;
    }

    .beplas_elitekomadur_sectionfour_colourboxes{
        width:60px;
        height:60px;
    }

    .beplas_elitekomadur_sectionfour_tablecontent h2{
        font-size:26px;
        padding-right:0;
    }

    .technical_table td{
        font-size:15px;
        padding:10px 5px;
    }

    .technical_table td:first-child,
    .technical_table td:last-child{
        padding-left:8px;
        width:50%;
    }
/*section five*/
    .beplas_elitekomadur_sectionfive{
        margin-top:50px;
    }

    .beplas_elitekomadur_sectionfive h2{
        text-align:center;
        padding:0 10px 30px;
        font-size:28px;
    }
    .beplas_elitekomadur_sectionfive_images {
        padding: 0px;
    }

    .beplas_elitekomadur_sectionfive_rowbox{
        flex-direction:column;
        align-items:center;
        gap:25px;
        margin-bottom:25px;
    }

    .beplas_elitekomadur_sectionfive_samebox{
        width:92%;
        height:auto;
    }

    .beplas_elitekomadur_sectionfive_imagebox{
        height:220px;
    }

    .style-anchor{
        font-size:20px;
        margin-top:12px;
    }
}

/*Be Plas Elite Endurance Style here */
/*section one Style here */
.beplas_eliteendurance_sectionone {
    height: auto;
    width: 100%;
    margin-top: 74px;
}

.beplas_eliteendurance_sectionone_imagebox {
    height: 600px;
    width: 100%;
    position: relative;
}

.beplas_eliteendurance_sectionone_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplaselite-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/*Section two style here*/
.beplas_eliteendurance_sectiontwo {
    height: auto;
    width: 100%;
    margin-bottom: 8%;
}

.beplas_eliteendurance_sectiontwo_content h2 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 600;
    padding-top: 50px;
}

.beplas_eliteendurance_sectiontwo_content p {
    font-size: 20px;
    line-height: 1.7;
    color: black;
    padding: 30px 250px 0px 250px;
    text-align: center;
}
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
}

.prev-btn {
    left: 11%;
}

.next-btn {
    right: 11%;
}

.beplas_eliteendurance_sectiontwo_image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    overflow: hidden;
}

.beplas_elite_endurance_sectiontwo_subimgbox {
    display: flex;
    justify-content: center;
    gap: 17px;
    width: 80%;
    overflow: hidden;
}

.beplas_eliteendurance_sectiontwo_slider {
    display: flex;
    gap: 17px;
    transition: transform 0.5s ease-in-out;
}

.beplas_eliteendurance_sectiontwo_imagebox {
    min-width: calc((100% - 17px) / 2);
    height: 400px;
}

.beplas_eliteendurance_sectiontwo_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*Section three style here*/
.beplas_eliteendurance_sectionthree {
    height: auto;
    width: 100%;
    margin-bottom: 2%;
}

.beplas_eliteendurance_sectionthree h2 {
    margin-left: 80px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 600;
}

.beplas_eliteendurance_sectionthree_content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 650px;
    padding: 20px;
}

.beplas_eliteendurance_sectionthree_samecontent {
    height: 80px;
    max-width: 1200px;
    width: 1200px;
    margin-left: 7%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.beplas_eliteendurance_sectionthree_samecontent_image {
    height: 80px;
    width: 80px;
}

.beplas_eliteendurance_sectionthree_samecontent_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplas_eliteendurance_sectionthree_samecontent_content {
    font-size: 20px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding-left: 40px;
    width: 1100px;
}

/*Section four style here*/
.beplas_eliteendurance_sectionfour {
    height: auto;
    width: 100%;
    margin-top: 100px;
}

.beplas_eliteendurance_sectionfour h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}

.beplas_eliteendurance_sectionfour_content {
    display: flex;
    justify-content: flex-start;
    padding-top: 30px;
}

.beplas_eliteendurance_sectionfour_colour {
    width: 50%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.beplas_eliteendurance_sectionfour_tablecontent {
    width: 50%;
    height: 500px;
}

.beplas_eliteendurance_sectionfour_tablecontent h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    padding-right: 50px;
}

.beplas_eliteendurance_sectionfour_colourbox {
    height: 80px;
    width: 650px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.beplas_eliteendurance_sectionfour_colourboxes {
    height: 82px;
    width: 82px;
}

.beplas_eliteendurance_sectionfour_colourboxes img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.technical_table {
    width: 100%;
    border-collapse: collapse;
}

.technical_table tr {
    border-bottom: 1px solid #e6e6e6;
}

.technical_table td {
    padding: 14px 0;
    font-size: 19px;
    vertical-align: top;
}

.technical_table td:first-child {
    width: 40%;
    color: #666;
    padding-left: 100px;
}

.technical_table td:last-child {
    width: 60%;
    color: #222;
    padding-left: 40px;
}
/*section five style here*/
.beplas_eliteendurance_sectionfive {
    height: auto;
    width: 100%;
    margin-top: 100px;
}
.beplas_eliteendurance_sectionfive h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    padding-left: 40px;
    padding-bottom: 50px;
}
.beplas_eliteendurance_sectionfive_images {
    height: auto;
    width: 100%;
    padding: 0 0 0 40px;
}
.beplas_eliteendurance_sectionfive_rowbox {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}
.beplas_eliteendurance_sectionfive_samebox {
    height: 300px;
    width: 330px;
}
.beplas_eliteendurance_sectionfive_imagebox {
    height: 250px;
    width: 100%;
}
.beplas_eliteendurance_sectionfive_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.style-anchor {
    display: block;
    font-size: 24px;
    font-weight: 500;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-decoration: none;
    color: black;
    text-align: center;
    margin-top: 10px;
}
/* Page Load Animation */
/*  Section One Animation */
/* .beplas_eliteendurance_sectionone_imagebox img {
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
}

.beplas_eliteendurance_sectionone_imagebox img.show {
    opacity: 1;
    transform: scale(1);
}

.beplaselite-overlay-text {
    opacity: 0;
    transform: translate(-50%, 40px);
    transition: all 0.8s ease;
}

.beplaselite-overlay-text.show {
    opacity: 1;
    transform: translate(-50%, 0);
} */

@media (max-width:1024px){
/* SEction one */
    .beplas_eliteendurance_sectionone_imagebox{
        height:380px;
    }

    .beplaselite-overlay-text{
        font-size:42px;
        bottom:25px;
        text-align:center;
        width:90%;
    }
/* Section two */
    .beplas_eliteendurance_sectiontwo_content h2{
        font-size:40px;
    }

    .beplas_eliteendurance_sectiontwo_content p{
        font-size:18px;
        padding:20px;
        line-height:1.6;
    }

    .beplas_elite_endurance_sectiontwo_subimgbox{
        width:88%;
    }

    .beplas_eliteendurance_sectiontwo_imagebox{
        height:320px;
    }

    .prev-btn{
        left:4%;
    }

    .next-btn{
        right:4%;
    }
/* Section three */
    .beplas_eliteendurance_sectionthree h2{
        margin-left:40px;
        font-size:32px;
    }

    .beplas_eliteendurance_sectionthree_content{
        height:auto;
        gap:20px;
    }

    .beplas_eliteendurance_sectionthree_samecontent{
        width:90%;
        max-width:90%;
        margin-left:auto;
        margin-right:auto;
        height:auto;
        align-items:center;
    }

    .beplas_eliteendurance_sectionthree_samecontent_content{
        width:100%;
        font-size:18px;
        padding-left:25px;
        display:flex;
        align-items:center;
    }
    .beplas_eliteendurance_sectionthree_samecontent_image {
        height: 70px;
        width: 70px;
    }

    .beplas_eliteendurance_sectionthree_samecontent_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .beplas_eliteendurance_sectionthree_samecontent_content p{
        margin:0;
        font-size: 17px;
    }
/* Section four */
    .beplas_eliteendurance_sectionfour h2{
        font-size:42px;
    }

    .beplas_eliteendurance_sectionfour_content{
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    .beplas_eliteendurance_sectionfour_colour,
    .beplas_eliteendurance_sectionfour_tablecontent{
        width:95%;
        height:auto;
    }
    .beplas_eliteendurance_sectionfour_tablecontent h2 {
        padding: 10px 0px;
    }
    .beplas_eliteendurance_sectionfour_tablecontent {
        margin-top: 60px;
    }

    .beplas_eliteendurance_sectionfour_colourbox{
        width:100%;
        justify-content:center;
        gap:12px;
        flex-wrap:wrap;
        height:auto;
    }

    .technical_table td:first-child{
        padding-left:20px;
        width:38%;
    }

    .technical_table td:last-child{
        padding-left:20px;
    }

    .beplas_eliteendurance_sectionfive_rowbox{
        flex-wrap:wrap;
        gap:25px;
    }

    .beplas_eliteendurance_sectionfive_samebox{
        width:45%;
        height:auto;
    }

    .beplas_eliteendurance_sectionfive_imagebox{
        height:220px;
    }

    .style-anchor{
        font-size:20px;
    }
}
@media (max-width:600px){

    .beplas_eliteendurance_sectionone{
        margin-top:50px;
    }

    .beplas_eliteendurance_sectionone_imagebox{
        height:250px;
        width: 100%;
    }

    .beplaselite-overlay-text{
        font-size:26px;
        width:95%;
        text-align:center;
        bottom:18px;
        letter-spacing:1px;
    }
/* section two*/
    .beplas_eliteendurance_sectiontwo{
        margin-bottom:50px;
        margin-top: 70px;
    }

    .beplas_eliteendurance_sectiontwo_content h2{
        font-size:30px;
        padding:20px 10px 0;
    }

    .beplas_eliteendurance_sectiontwo_content p{
        font-size:16px;
        line-height:1.5;
        padding:15px;
        text-align: center;
    }

    .beplas_eliteendurance_sectiontwo_imagebox {
        min-width: 100%;
    }

    .beplas_elite_endurance_sectiontwo_subimgbox {
        width: 100%;
        padding: 10px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
/*section three*/
    .beplas_eliteendurance_sectionthree{
        margin-bottom:35px;
    }

    .beplas_eliteendurance_sectionthree h2{
        margin-left:0;
        text-align:center;
        font-size:28px;
        padding:0 10px;
    }

    .beplas_eliteendurance_sectionthree_content{
        height:auto;
        gap:18px;
        padding:15px;
    }

    .beplas_eliteendurance_sectionthree_samecontent{
        width:100%;
        max-width:100%;
        margin:0;
        gap:15px;
        padding:15px 10px;
        display:flex;
        align-items:center;
    }

    .beplas_eliteendurance_sectionthree_samecontent_image{
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    .beplas_eliteendurance_sectionthree_samecontent_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .beplas_eliteendurance_sectionthree_samecontent_content{
        width:100%;
        padding-left:0;
        display:flex;
        align-items:center;
    }
    .beplas_eliteendurance_sectionthree_samecontent_content p{
        margin:0;
        line-height:1.5;
        font-size: 15px;
    }
/*section four*/
    .beplas_eliteendurance_sectionfour{
        margin-top:50px;
    }

    .beplas_eliteendurance_sectionfour h2{
        font-size:30px;
    }

    .beplas_eliteendurance_sectionfour_content{
        flex-direction:column;
        gap:30px;
        padding:20px 10px 0;
    }

    .beplas_eliteendurance_sectionfour_colour,
    .beplas_eliteendurance_sectionfour_tablecontent{
        width:100%;
        height:auto;
    }

    .beplas_eliteendurance_sectionfour_colourbox{
        width:100%;
        flex-wrap:wrap;
        gap:10px;
        height:auto;
    }

    .beplas_eliteendurance_sectionfour_colourboxes{
        width:60px;
        height:60px;
    }

    .beplas_eliteendurance_sectionfour_tablecontent h2{
        font-size:26px;
        padding-right:0;
    }

    .technical_table td{
        font-size:15px;
        padding:10px 5px;
    }

    .technical_table td:first-child,
    .technical_table td:last-child{
        padding-left:8px;
        width:50%;
    }
/*section five*/
    .beplas_eliteendurance_sectionfive{
        margin-top:50px;
    }

    .beplas_eliteendurance_sectionfive h2{
        text-align:center;
        padding:0 10px 30px;
        font-size:28px;
    }
    .beplas_eliteendurance_sectionfive_images {
        padding: 0px;
    }

    .beplas_eliteendurance_sectionfive_rowbox{
        flex-direction:column;
        align-items:center;
        gap:25px;
        margin-bottom:25px;
    }

    .beplas_eliteendurance_sectionfive_samebox{
        width:92%;
        height:auto;
    }

    .beplas_eliteendurance_sectionfive_imagebox{
        height:220px;
    }

    .style-anchor{
        font-size:20px;
        margin-top:12px;
    }
}

/*Be Plas Elite Endurance Style here */
/*section one Style here */
.beplas_elitemacroclean_sectionone {
    height: auto;
    width: 100%;
    margin-top: 74px;
}

.beplas_elitemacroclean_sectionone_imagebox {
    height: 600px;
    width: 100%;
    position: relative;
}

.beplas_elitemacroclean_sectionone_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplaselite-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/*Section two style here*/
.beplas_elitemacroclean_sectiontwo {
    height: auto;
    width: 100%;
    margin-bottom: 8%;
}

.beplas_elitemacroclean_sectiontwo_content h2 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 600;
    padding-top: 50px;
}

.beplas_elitemacroclean_sectiontwo_content p {
    font-size: 20px;
    line-height: 1.7;
    color: black;
    padding: 30px 250px 0px 250px;
    text-align: center;
}
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
}

.prev-btn {
    left: 11%;
}

.next-btn {
    right: 11%;
}

.beplas_elitemacroclean_sectiontwo_image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    overflow: hidden;
}

.beplas_elite_macroclean_sectiontwo_subimgbox {
    display: flex;
    justify-content: center;
    gap: 17px;
    width: 80%;
    overflow: hidden;
}

.beplas_elitemacroclean_sectiontwo_slider {
    display: flex;
    gap: 17px;
    transition: transform 0.5s ease-in-out;
}

.beplas_elitemacroclean_sectiontwo_imagebox {
    min-width: calc((100% - 17px) / 2);
    height: 400px;
}

.beplas_elitemacroclean_sectiontwo_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*Section three style here*/
.beplas_elitemacroclean_sectionthree {
    height: auto;
    width: 100%;
    margin-bottom: 2%;
}

.beplas_elitemacroclean_sectionthree h2 {
    margin-left: 80px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 600;
}

.beplas_elitemacroclean_sectionthree_content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 650px;
    padding: 20px;
}

.beplas_elitemacroclean_sectionthree_samecontent {
    height: 80px;
    max-width: 1200px;
    width: 1200px;
    margin-left: 7%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.beplas_elitemacroclean_sectionthree_samecontent_image {
    height: 80px;
    width: 80px;
}

.beplas_elitemacroclean_sectionthree_samecontent_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.beplas_elitemacroclean_sectionthree_samecontent_content {
    font-size: 20px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding-left: 40px;
    width: 1100px;
}

/*Section four style here*/
.beplas_elitemacroclean_sectionfour {
    height: auto;
    width: 100%;
    margin-top: 100px;
}

.beplas_elitemacroclean_sectionfour h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}

.beplas_elitemacroclean_sectionfour_content {
    display: flex;
    justify-content: flex-start;
    padding-top: 30px;
}

.beplas_elitemacroclean_sectionfour_colour {
    width: 50%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.beplas_elitemacroclean_sectionfour_tablecontent {
    width: 50%;
    height: 500px;
}

.beplas_elitemacroclean_sectionfour_tablecontent h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    padding-right: 50px;
}

.beplas_elitemacroclean_sectionfour_colourbox {
    height: 80px;
    width: 650px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.beplas_elitemacroclean_sectionfour_colourboxes {
    height: 82px;
    width: 82px;
}

.beplas_elitemacroclean_sectionfour_colourboxes img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.technical_table {
    width: 100%;
    border-collapse: collapse;
}

.technical_table tr {
    border-bottom: 1px solid #e6e6e6;
}

.technical_table td {
    padding: 14px 0;
    font-size: 19px;
    vertical-align: top;
}

.technical_table td:first-child {
    width: 40%;
    color: #666;
    padding-left: 100px;
}

.technical_table td:last-child {
    width: 60%;
    color: #222;
    padding-left: 40px;
}
/*section five style here*/
.beplas_elitemacroclean_sectionfive {
    height: auto;
    width: 100%;
    margin-top: 100px;
}
.beplas_elitemacroclean_sectionfive h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    padding-left: 40px;
    padding-bottom: 50px;
}
.beplas_elitemacroclean_sectionfive_images {
    height: auto;
    width: 100%;
    padding: 0 0 0 40px;
}
.beplas_elitemacroclean_sectionfive_rowbox {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}
.beplas_elitemacroclean_sectionfive_samebox {
    height: 300px;
    width: 330px;
}
.beplas_elitemacroclean_sectionfive_imagebox {
    height: 250px;
    width: 100%;
}
.beplas_elitemacroclean_sectionfive_imagebox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.style-anchor {
    display: block;
    font-size: 24px;
    font-weight: 500;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-decoration: none;
    color: black;
    text-align: center;
    margin-top: 10px;
}
/* Page Load Animation */
/*  Section One Animation */
/* .beplas_elitemacroclean_sectionone_imagebox img {
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
}

.beplas_elitemacroclean_sectionone_imagebox img.show {
    opacity: 1;
    transform: scale(1);
}

.beplaselite-overlay-text {
    opacity: 0;
    transform: translate(-50%, 40px);
    transition: all 0.8s ease;
}

.beplaselite-overlay-text.show {
    opacity: 1;
    transform: translate(-50%, 0);
} */
/* Left / Right Animation */
/* .beplas-animate-top,
.beplas-animate-left,
.beplas-animate-right,
.beplas-banner-img,
.beplas-banner-text {
  opacity: 0;
  transition: all 1s ease;
} */

/* ===== Top To Bottom ===== */
/* .beplas-animate-top {
  transform: translateY(-80px);
}

.beplas-animate-top.show {
  opacity: 1;
  transform: translateY(0);
} */

/* ===== Left To Right ===== */
/* .beplas-animate-left {
  transform: translateX(-100px);
}

.beplas-animate-left.show {
  opacity: 1;
  transform: translateX(0);
} */

/* ===== Right To Left ===== */
/* .beplas-animate-right {
  transform: translateX(100px);
}

.beplas-animate-right.show {
  opacity: 1;
  transform: translateX(0);
} */

@media (max-width:1024px){
/* SEction one */
    .beplas_elitemacroclean_sectionone_imagebox{
        height:380px;
    }

    .beplaselite-overlay-text{
        font-size:42px;
        bottom:25px;
        text-align:center;
        width:90%;
    }
/* Section two */
    .beplas_elitemacroclean_sectiontwo_content h2{
        font-size:40px;
    }

    .beplas_elitemacroclean_sectiontwo_content p{
        font-size:18px;
        padding:20px;
        line-height:1.6;
    }

    .beplas_elite_macroclean_sectiontwo_subimgbox{
        width:88%;
    }

    .beplas_elitemacroclean_sectiontwo_imagebox{
        height:320px;
    }

    .prev-btn{
        left:4%;
    }

    .next-btn{
        right:4%;
    }
/* Section three */
    .beplas_elitemacroclean_sectionthree h2{
        margin-left:40px;
        font-size:32px;
    }

    .beplas_elitemacroclean_sectionthree_content{
        height:auto;
        gap:20px;
    }

    .beplas_elitemacroclean_sectionthree_samecontent{
        width:90%;
        max-width:90%;
        margin-left:auto;
        margin-right:auto;
        height:auto;
        align-items:center;
    }

    .beplas_elitemacroclean_sectionthree_samecontent_content{
        width:100%;
        font-size:18px;
        padding-left:25px;
        display:flex;
        align-items:center;
    }
    .beplas_elitemacroclean_sectionthree_samecontent_image {
        height: 70px;
        width: 70px;
    }

    .beplas_elitemacroclean_sectionthree_samecontent_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .beplas_elitemacroclean_sectionthree_samecontent_content p{
        margin:0;
        font-size: 17px;
    }
/* Section four */
    .beplas_elitemacroclean_sectionfour h2{
        font-size:42px;
    }

    .beplas_elitemacroclean_sectionfour_content{
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    .beplas_elitemacroclean_sectionfour_colour,
    .beplas_elitemacroclean_sectionfour_tablecontent{
        width:95%;
        height:auto;
    }
    .beplas_elitemacroclean_sectionfour_tablecontent h2 {
        padding: 10px 0px;
    }
    .beplas_elitemacroclean_sectionfour_tablecontent {
        margin-top: 60px;
    }

    .beplas_elitemacroclean_sectionfour_colourbox{
        width:100%;
        justify-content:center;
        gap:12px;
        flex-wrap:wrap;
        height:auto;
    }

    .technical_table td:first-child{
        padding-left:20px;
        width:38%;
    }

    .technical_table td:last-child{
        padding-left:20px;
    }

    .beplas_elitemacroclean_sectionfive_rowbox{
        flex-wrap:wrap;
        gap:25px;
    }

    .beplas_elitemacroclean_sectionfive_samebox{
        width:45%;
        height:auto;
    }

    .beplas_elitemacroclean_sectionfive_imagebox{
        height:220px;
    }

    .style-anchor{
        font-size:20px;
    }
}
@media (max-width:600px){

    .beplas_elitemacroclean_sectionone{
        margin-top:50px;
    }

    .beplas_elitemacroclean_sectionone_imagebox{
        height:250px;
        width: 100%;
    }

    .beplaselite-overlay-text{
        font-size:26px;
        width:95%;
        text-align:center;
        bottom:18px;
        letter-spacing:1px;
    }
/* section two*/
    .beplas_elitemacroclean_sectiontwo{
        margin-bottom:50px;
        margin-top: 70px;
    }

    .beplas_elitemacroclean_sectiontwo_content h2{
        font-size:30px;
        padding:20px 10px 0;
    }

    .beplas_elitemacroclean_sectiontwo_content p{
        font-size:16px;
        line-height:1.5;
        padding:15px;
        text-align: center;
    }

    .beplas_elitemacroclean_sectiontwo_imagebox {
        min-width: 100%;
    }

    .beplas_elite_macroclean_sectiontwo_subimgbox {
        width: 100%;
        padding: 10px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
/*section three*/
    .beplas_elitemacroclean_sectionthree{
        margin-bottom:35px;
    }

    .beplas_elitemacroclean_sectionthree h2{
        margin-left:0;
        text-align:center;
        font-size:28px;
        padding:0 10px;
    }

    .beplas_elitemacroclean_sectionthree_content{
        height:auto;
        gap:18px;
        padding:15px;
    }

    .beplas_elitemacroclean_sectionthree_samecontent{
        width:100%;
        max-width:100%;
        margin:0;
        gap:15px;
        padding:15px 10px;
        display:flex;
        align-items:center;
    }

    .beplas_elitemacroclean_sectionthree_samecontent_image{
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    .beplas_elitemacroclean_sectionthree_samecontent_image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .beplas_elitemacroclean_sectionthree_samecontent_content{
        width:100%;
        padding-left:0;
        display:flex;
        align-items:center;
    }
    .beplas_elitemacroclean_sectionthree_samecontent_content p{
        margin:0;
        line-height:1.5;
        font-size: 15px;
    }
/*section four*/
    .beplas_elitemacroclean_sectionfour{
        margin-top:50px;
    }

    .beplas_elitemacroclean_sectionfour h2{
        font-size:30px;
    }

    .beplas_elitemacroclean_sectionfour_content{
        flex-direction:column;
        gap:30px;
        padding:20px 10px 0;
    }

    .beplas_elitemacroclean_sectionfour_colour,
    .beplas_elitemacroclean_sectionfour_tablecontent{
        width:100%;
        height:auto;
    }

    .beplas_elitemacroclean_sectionfour_colourbox{
        width:100%;
        flex-wrap:wrap;
        gap:10px;
        height:auto;
    }

    .beplas_elitemacroclean_sectionfour_colourboxes{
        width:60px;
        height:60px;
    }

    .beplas_elitemacroclean_sectionfour_tablecontent h2{
        font-size:26px;
        padding-right:0;
    }

    .technical_table td{
        font-size:15px;
        padding:10px 5px;
    }

    .technical_table td:first-child,
    .technical_table td:last-child{
        padding-left:8px;
        width:50%;
    }
/*section five*/
    .beplas_elitemacroclean_sectionfive{
        margin-top:50px;
    }

    .beplas_elitemacroclean_sectionfive h2{
        text-align:center;
        padding:0 10px 30px;
        font-size:28px;
    }
    .beplas_elitemacroclean_sectionfive_images {
        padding: 0px;
    }

    .beplas_elitemacroclean_sectionfive_rowbox{
        flex-direction:column;
        align-items:center;
        gap:25px;
        margin-bottom:25px;
    }

    .beplas_elitemacroclean_sectionfive_samebox{
        width:92%;
        height:auto;
    }

    .beplas_elitemacroclean_sectionfive_imagebox{
        height:220px;
    }

    .style-anchor{
        font-size:20px;
        margin-top:12px;
    }
}
