
html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111111;
    color: white;
    padding: 20px;
}

/* === HEADER === */
header {
    background-color: #111111;
    padding: 20px 0;
    margin-top: 35px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1277px;
    margin: 0 auto;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    margin-right: 15px;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}



.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c14444;
    transform: scale(1.05);
}



.order-button {
    background-color: #C73D3A;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;

    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1)
}

.order-button:hover {
    transform: scale(1.05);
}

.order-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            100deg,
            transparent 30%,
            rgba(250, 250, 250, 0.4) 50%,
            transparent 70%
    );
    animation: sheen 1s linear infinite;
}

@keyframes sheen {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.dropdown {
    display: inline-block;
}

.lang-button {
    margin-right: 5px;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.lang-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            100deg,
            transparent 30%,
            rgba(250, 250, 250, 0.4) 50%,
            transparent 70%
    );
    animation: sheen 1s linear infinite;
}

@keyframes sheen {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.flag-icon {
    margin-bottom: 3px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-right: 5px;
    border: none;
    object-fit: contain;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;

}

.dropdown-content a {
    font-size: 13px;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: #c9c9c9;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.glowing-button {
    background-color: #C73D3A;
    color: white;
    padding: 14px 30px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    animation: red-glow 1s ease-in-out infinite;
}

@keyframes red-glow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.8);
    }
}


/* Banner Styles */
.adpart {
    text-align: center;
    /* Centers the content */
    margin-top: 20px;
    /* Adds spacing from the navbar */
    animation: animate2 .2s linear infinite;
}

.adpart-img {
    width: 100%;
    /* Makes the image responsive */
    max-width: 1277px;
    /* Limits the maximum width */
    height: auto;
    /* Maintains aspect ratio */
    margin: 0 auto;
    /* Centers the image horizontally */
    margin-top: 70px;

}


/* Banner Text Styles */
.adpart-text p {
    font-family: "Myriad Pro", sans-serif;
    /* Font style */
    font-weight: bold;
    /* Bold text */
    font-style: italic;
    /* Italic text */
    font-size: 65px;
    /* Font size */
    text-align: center;
    /* Align text in the center */
    color: white;
    /* Default text color for white */
    margin-top: -35px;
    /* Adds spacing between the image and the text */
}

/* Highlighted "СНОСИМ" color */
.adpart-text p .highlight {
    color: #C73D3A;
    /* Color for СНОСИМ */
}

/* Red Rectangular Section */
.info-section {
    background-color: #C73D3A;
    width: 100%;
    /* Full width */
    max-width: 1277px;
    /* Same width as the header */
    margin: 40px auto;
    /* Center and add spacing */
    padding: 20px;
    border-radius: 15px;
    display: flex;
    /* Display flex for horizontal layout */
    justify-content: space-between;
    /* Distribute space between items */
    gap: 20px;
    /* Space between each item */
    margin-top: 75px;
}


/* Each Info Item */
.info-item {
    height: 70px;
    display: flex;
    align-items: center;
    /* Vertically center content */
    justify-content: center;
    /* Center the content horizontally */
    flex: 1;
    /* Ensures that each item grows to take available space */
    padding: 20px;
    gap: 20px;
    /* Space between the icon and the text */
    border-right: 1px solid white;
    /* Divider line between items */
}

.info-item:last-child {
    border-right: none;
    /* Remove border for the last item */
}

/* Icon Style */
.icon {
    flex: 0 0 auto;
}

.icon img {
    width: 53px;
    /* Adjust icon size */
    height: 53px;
}

/* Text Style */
.text h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}


.text p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;

    margin-top: 5px;
    color: white;
    font-size: 14px;
}

/* Divider between the parts (Optional as it's handled by border-right) */
.divider {
    height: 1px;
    background-color: white;
    width: 100%;
    /* Full width */
    margin: 10px 0;
    /* Space between items */
}

/* Text Section */
.text-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align both title & text to the top */
    max-width: 1277px;
    margin: 50px auto;
    width: 100%;
    margin-top: 150px;
}

/* Title (Left Side) */
.title {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align title to the top */
}

/* First H2 (Bold) */
.title .highlight {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-bottom: 0;
    line-height: 1.2;
    /* Consistent line-height */
}

/* Second H2 (Lighter) */
.title h2 {
    font-size: 36px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-top: 0;
    line-height: 1.2;
    /* Ensure consistent line height with the first h2 */
}

/* Description (Right Side) */
.description {
    flex: 2;
    text-align: right;
    max-width: 70%;
    display: flex;
    align-items: flex-start;
    /* Align text to the top */

}

/* Description Text */
.description p {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-weight: 300;
    width: 100%;
    line-height: 1.6;
    /* Increase line height for better readability */
    margin: 0;
}


.mobile-buttons {
    display: none;
}

/* Carousel Section */
.carousel-section {
    width: 100%;
    max-width: 1277px;
    margin: 50px auto;
    text-align: center;
    position: relative;
    margin-bottom: 150px;

}

/* Carousel Container */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.carousel-container:before,
.carousel-container:after {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    content: "";
    z-index: 2;
}

.carousel-container:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #111111);
}

.carousel-container:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #111111);
}

/* Pausing the scrolling on hover */
.carousel-container:hover .carousel-wrapper {
    animation-play-state: paused;
    /* Pause animation on hover */
    transition: transform 0.1s ease-in-out;
    /* Smooth transition when pausing */
}


/* Carousel Wrapper */
.carousel-wrapper {
    display: inline-block;
    width: max-content;
    /* Ensures all img fit horizontally */
    animation: 35s slide infinite linear;
    transition: transform 0.5s ease-in-out;
}


/* Carousel Item */
.carousel-item {
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Masked Section */
.masked-section {
    padding: 0;
    width: 100%;
    max-width: 1277px;
    /* Set the maximum width to 1200px */
    height: 415px;
    /* Height of the section */
    margin: 50px auto;
    /* Centers the section horizontally with some margin */

    border-radius: 15px;
    /* Rounded corners with radius of 15px */
    position: relative;
    overflow: hidden;
    /* Prevents the button and content from overflowing */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    /* Optional: adds shadow around the section */
}

/* Background Image */
.masked-image {
    width: 100%;
    height: 100%;
    background-image: url('img/bgxc64.png');
    /* Replace with your background image */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Masked Section Text Styling */
.masked-text {

    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    /* White color for text to stand out on the dark background */
}

.bold-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    /* Bold style */
    font-size: 36px;
    /* Font size for PERFORATOR SERVICE */
    margin: 0;
}

.light-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    /* Lighter font weight for НА ФОРУМАХ */
    font-size: 32px;
    /* Font size for НА ФОРУМАХ */
    margin-top: 10px;
    /* Space between the two text elements */
}

.forum-button {
    display: inline-block;
    margin-top: 20px;
    /* Space between text and button */
    padding: 12px 24px;
    background-color: #BDFE46;
    /* Red button color */
    color: #111111;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border-radius: 15px;
    /* Rounded button */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.forum-button:hover {
    transform: scale(1.05);
}

.masked-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            100deg,
            transparent 30%,
            rgba(250, 250, 250, 0.4) 50%,
            transparent 70%
    );
    animation: sheen 3s linear infinite;
}


/* Order Process Section */
.order-process {
    position: relative;
    max-width: 1277px;
    margin: 100px auto;

    padding: 40px;
    color: white;
    border-radius: 15px;

}


.order-process::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/px75.png');
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* This sets the background opacity */
    z-index: -1; /* Places the background behind content */
}

/* Order Process Container */
.order-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* Left Side Title */
.order-left {
    flex: 1;
}

.order-title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-align: left;
    margin-bottom: 5px;
}

.order-subtitle {
    font-size: 36px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-align: left;
    margin-top: 0;
    line-height: 1.2;
}

/* Right Side Description */
.order-right {
    flex: 2;
    text-align: right;
}

.order-description {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-weight: 300;
    line-height: 1.6;
    text-align: right;
}

/* Circle Section */
.order-circles {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.circle-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    /* Space between text and circles */
}


/* Circle Styles */
.circle {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: rgba(1, 1, 1, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 3px solid #BDFE46;
    animation: green-glow 1s ease-in-out infinite;

}

@keyframes green-glow {
    0%, 100% {
        box-shadow: 0 0 1px rgba(189, 254, 70, 0.4);
    }
    50% {
        box-shadow: 0 0 5px 3px rgba(189, 254, 70, 0.8);
    }
}


.circle_under_text {

    position: relative;
    width: 200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.circle-number {
    font-size: 65px;
    color: white;
    font-weight: bold;
}

.circle_under_text p {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
}


/* Text below the circle */
.circle-text {
    color: white;
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
    /* Moves the text below the circle */
}


.promo-box {
    background: #ffffff;
    border-radius: 15px;
    max-width: 1277px;
    /* Max width as per your previous change */
    width: 100%;
    /* Ensure it scales responsively */

    /* Set the height to 440px */
    margin: 3rem auto;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    /* Remove padding from the container */
    display: flex;
    flex-direction: column;
    /* Stack the content vertically */
    justify-content: space-between;
    /* Push .promo-bottom to the bottom */
    box-sizing: border-box;
    margin-bottom: 100px;
}


.promo-top {
    padding: 2rem 1.5rem;
    /* Adjust padding for the top section */
    text-align: center;
    color: #111;
}

.promo-badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
    border: 1px solid #c14444;
    color: #c14444;
    text-decoration: none;
    /* No underline on link */
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    /* Indicates it's clickable */
    transition: all 0.3s ease;
    /* Smooth transition for hover effect */
}


.promo-badge:hover {
    background-color: #c14444;
    /* Red background on hover */
    color: white;
    /* White text color on hover */
    transform: scale(1.05);
    /* Slightly enlarge the button on hover */
}

.promo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;

    margin-bottom: 1rem;
}

.promo-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #c14444;
}

.promo-bottom {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background: #C9453D;
    color: white;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    padding: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid #a83228;
}

.promo-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            100deg,
            transparent 30%,
            rgba(250, 250, 250, 0.4) 50%,
            transparent 70%
    );
    animation: sheen 3s linear infinite;
}


.promo-bottom span {

    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 800;
    font-size: 30px;
}


.faq-container p {
    color: #BDFE46;
    margin-bottom: 50px;
}


.faq-container {
    max-width: 1277px;
    margin: auto;
}


.faq-item {
    background: #1A1A1A;
    margin-bottom: 1rem;
    border-left: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: #BDFE46;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 300;
    font-size: 21px;
    letter-spacing: 1px;
}

.faq-number {
    color: #BDFE46;
    margin-right: 1rem;
    min-width: 2rem;
}

.faq-text {
    flex: 1;
}

.faq-icon {
    color: #BDFE46;
    font-size: 35px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    font-family: 'Montserrat', sans-serif;
    height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
    transition: height 0.5s ease, padding 0.5s ease;
}

footer {
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 65px;
    margin-bottom: 65px;
}

footer .footer-content p {
    font-family: 'Montserrat', sans-serif;
    /* Montserrat font */
    font-weight: 500;
    /* Bold font */
    font-size: 14px;
    /* Adjust the font size as needed */
    margin: 0;
    /* Remove default margin */
    letter-spacing: 2px;
}


.sale-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* translucent black background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}


.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
}

.sale-notification {
    margin: 20px;
    padding: 40px;

    width: auto;
    position: relative;
    background-color: #c14444; /* your custom red */
    color: white;

    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sale-message{
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 35px;
}
.sale-message_low{
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

.sale-action-link {
    margin-top: 30px;
    margin-bottom: 30px;
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: white;
    color: #c14444; /* your red on white button */
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.sale-action-link:hover {
    background-color: #f8d7d7; /* light red hover */
}



/* ===== АДАПТАЦИЯ ПОД МОБИЛКИ (до 480px) ===== */
@media (max-width: 1024px) {

    /* === HEADER === */
    body {
        padding: 20px;
    }

    header {
        margin-top: 0;
    }

    .nav-links {
        display: none !important;
        /* Скрываем навигацию */
    }

    nav {

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;

        flex-wrap: nowrap;
        /* Не переносить строки */
    }

    .logo {
        display: flex;
        align-items: center;
        flex: 0 1 auto;
    }

    .logo-img {
        height: 25px;
        margin-right: 10px;
    }

    .logo span {
        font-size: 10px;
        line-height: 1.2;
        font-weight: bold;
    }

    .order-button {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 12px;
        flex-shrink: 0;
        /* Не сжимать кнопку */
    }

    .lang-button {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 12px;
        flex-shrink: 0;
        /* Не сжимать кнопку */
    }

    .adpart {
        margin-top: 0;
    }

    .adpart img {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .adpart-text p {
        font-size: 30px;
    }


    /* === БЛОК .info-section === */
    .info-section {
        display: none !important;
    }


    /* === БЛОК .text-section === */
    .text-section {
        flex-direction: column;
        align-items: center;
        text-align: center;

        gap: 25px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .title {
        align-items: center;
        text-align: center;
    }

    .title .highlight,
    .title h2 {
        font-size: 17px;
        line-height: 1.3;
    }

    .description {
        max-width: 100%;
        justify-content: center;
    }

    .description p {
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }

    .mobile-buttons {
        height: auto;
        background-color: #333333;
        margin-top: 30px;
        display: flex;
        overflow: hidden;
    }

    .mobile-buttons-inner {
        display: flex;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 300;
        padding: 3px 0;
    }

    .mobile-buttons-text {
        display: flex;
    }

    .mobile-buttons-text-item {
        padding-right: 11px;
    }

    /* Apply the animation to the text items */
    .mobile-buttons-inner > div {
        animation: var(--direction) var(--marquee-speed) linear infinite;
    }

    /* Pause the animation when a user hovers over it */
    .mobile-buttons:hover .mobile-buttons-inner > div {
        animation-play-state: paused;
    }

    /* Setting the Animation using Keyframes */
    @keyframes scroll-left {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }



    .carousel-container {
        padding: 0;
        margin: 0;
    }

    .carousel-section {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .carousel-item {
        height: 60px;
        object-fit: cover;
        margin-right: 10px;
    }


    .masked-section {

        margin: 40px auto;
        height: auto;
        border-radius: 15px;
        overflow: hidden;
    }

    .masked-image {
        width: 100%;
        height: 100%;
        min-height: 300px;
        background-image: url('img/bgxc64.png');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .masked-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 20px;
    }

    .bold-text {
        font-size: 27px;
        font-weight: 700;
        margin: 0;
    }

    .light-text {
        font-size: 22px;
        font-weight: 300;
        margin: 10px 0;
    }

    .forum-button {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 12px;

    }

    /* === БЛОК .order-process === */
    .order-process {

        margin: 60px auto;
        padding: 25px 15px;
    }

    .order-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        margin-bottom: 30px;
    }

    .order-title,
    .order-subtitle {
        font-size: 22px;
        text-align: center;
    }

    .order-description {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .order-circles {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;


    }

    .circle-container {

        display: flex;
        align-items: center;
        margin-top: 0;

    }

    .circle {
        margin-top: 10px;
        width: 40px;
        height: 40px;
        border: 3px solid #BDFE46;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: black;
    }

    .circle-number {
        font-size: 20px;
        color: white;
        font-weight: bold;
    }

    .order-left h2 {
        font-size: 17px;
    }


    .circle_under_text {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .circle_under_text p {

        margin-right: 5px;
        margin-left: 5px;
        margin-top: 20px;
        font-size: 10px;
        font-weight: 300;
        color: white;
        text-align: center;
        line-height: 1.3;
    }

    .promo-box {

        height: 30%;
        margin: 60px auto;
        padding: 0;
    }

    .promo-top a {
        font-size: 7px;
    }

    .promo-title {
        font-size: 17px;
        /* Adjust font size for larger screen */
    }

    .promo-subtext {
        font-size: 13px;
        /* Adjust font size for larger screen */
    }

    .promo-bottom {
        font-size: 0.9rem;
        /* Adjust font size for larger screen */
    }

    .faq-container {

        margin: 60px auto;
        padding: 0;
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 6px;
    }

    .faq-question .faq-number {
        font-size: 13px;
    }

    .faq-question .faq-text {
        font-size: 13px;
    }

    .faq-question .faq-icon {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 12px;
        padding: 0 6px;
    }

    .faq-item {
        border-left: 2px solid transparent;
    }

    .footer {
        margin: 0;
        padding: 30px;
    }

    .footer .footer-content p {
        font-size: 10px;
        font-weight: 300;
    }

    .sale-message{
        font-family: "Montserrat", sans-serif;
        font-weight: bold;
        font-size: 25px;
    }
    .sale-message_low{
        font-family: "Montserrat", sans-serif;
        font-size: 13px;

    }
}

