@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


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

body {
    font-family: "Gilroy", sans-serif;
    background-color: #0F110E;
    overflow-x: hidden;

    @media (max-width: 768px) {
        width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

/* nav section start */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background:
        linear-gradient(rgba(0, 0, 0, 0.797)),
        url(./images/jorgen-hendriksen-_-nX3P8xI9E-unsplash.png);
    background-size: cover;
    background-position: center;

    @media (max-width: 768px) {
        width: 100%;
        margin: 0 auto;
        background:
            linear-gradient(rgba(0, 0, 0, 0.879), rgba(0, 0, 0, 0.913)),
            url(./images/jorgen-hendriksen-_-nX3P8xI9E-unsplash.png);
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
        background:
            linear-gradient(rgba(0, 0, 0, 0.879), rgba(0, 0, 0, 0.913)),
            url(./images/jorgen-hendriksen-_-nX3P8xI9E-unsplash.png);
    }
}

.nav_container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;

    @media (max-width: 768px) {
        width: 90%;
        margin: 0 auto;
        overflow-x: hidden;
        padding: 10px 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

.logo {
    width: 12%;

    @media (max-width: 768px) {
        width: 30%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 20%;
    }
}

.logo img {
    width: 100%;
    height: 100%;
}

.link {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.link li a {
    text-decoration: none;
    color: #BABABA;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.login_cart {
    display: flex;
    align-items: center;
    gap: 30px;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.login_wrapper {
    position: relative;
    display: inline-block;
}

.login {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.login h3 {
    color: #BABABA;
    font-weight: 400;
}

.login i {
    color: #FE4806;
    font-size: 20px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(201, 199, 199, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 15px;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    z-index: 999;
}

.dropdown a {
    display: block;
    padding: 5px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.603);
    font-size: 13px;
    color: black;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.dropdown a:hover {
    background: #000000;
    color: white;
}


.login_wrapper:hover .dropdown {
    display: flex;
}

.login_wrapper:hover .login i {
    transform: rotate(180deg);
    transition: 0.3s;
}

.toggle_btn {
    display: none;

    @media (max-width: 768px) {
        width: 5%;
        display: block;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 5%;
        display: block;
    }
}

.toggle_btn img {
    @media (max-width: 768px) {
        width: 100%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 70%;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    /* initially hidden */
    width: 280px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('./images/mobielandtabvie.jpg') no-repeat center center / cover;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 32px 0 rgba(108, 108, 108, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 999;
    color: white;

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 580px;
        right: -580px;
        padding: 50px;
    }
}

.sidebar.active {
    right: 0;
    /* Show sidebar */
}

.sidebar .close-btn {
    font-size: 40px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 15px;

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 80px;
    }
}

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

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 30px;
    }
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.productlink {
    position: relative;
}

.prodcutlink:hover .product_card,
.product_card:hover {
    display: block;
}

.product_card {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
}

.card_overlay {
    display: flex;
    position: relative;
    padding: 30px 40px;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #707070;
    border-radius: 15px;
    justify-content: center;
    gap: 40px;
}

.card_ov {
    width: 200px;
    height: 240px;
    border-radius: 30px;
    background: rgba(60, 60, 60, 0.3);
    /* semi-transparent background */
    border: 4px solid rgba(255, 255, 255, 0.2);
    /* light border */
    box-shadow:
        inset -5px -5px 10px rgba(255, 255, 255, 0.15),
        inset 5px 5px 10px rgba(0, 0, 0, 0.4),
        0 0 0 2px #999,
        0 0 0 4px #0000001f,
        0 5px 15px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(30px);
    /* for Safari */
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cardinner-white {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 120px;
    background: white;
    border-radius: 30px;
    /* Replace with your own image */
    background-size: cover;
    background-position: center;
}

.card_text {
    position: absolute;
    bottom: 25px;
    width: 100%;
    font-size: 15px;
    letter-spacing: 1px;
    color: #D9D9D9;
}

/* nav section end */

/* hero section starts */

.hero_mobile_moc {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;

    @media (max-width: 768px) {
        max-width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        max-width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

.hero_mobile_moc .img2 {
    position: absolute;
    width: 80%;
    left: -550px;
    top: 0;
}

.hero {
    posithero_textion: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
    overflow: hidden;

    @media (max-width: 768px) {
        height: 1100px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        height: 1400px;

    }
}

.hero_container {
    width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;


    @media (max-width: 768px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        padding: 60px 0;
        overflow-x: hidden;
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding: 160px 0;
        overflow-x: hidden;

    }

    @media (min-width: 992px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
        padding: 60px 0;
        overflow-x: hidden;
    }
}

.background_img .img1 {
    position: absolute;
    width: 50%;
    top: 20px;
    left: 340px;

    @media (max-width: 768px) {
        display: none;
    }
}

.hero_text {
    padding: 60px 0;
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 25px;

    @media (max-width: 768px) {
        width: 100%;
        gap: 20px;
    }
}

.text {
    display: flex;
    flex-direction: column;
}

.text>h4 {
    font-size: 75px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #FFFFFF;
    line-height: 80px;
    text-transform: uppercase;

    @media (max-width: 768px) {
        font-size: 45px;
        line-height: 50px;
        text-align: start;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 70px;
        line-height: 60px;
        text-align: start;
    }
}

.text>p {
    color: #FFFFFF;
    font-size: 15px;

    @media (max-width: 991.98px) {
        text-align: start;
    }
}

.text>h4 .lastLine1 {
    font-size: 95px !important;
    color: #FFFFFF;

    @media (max-width: 991.98px) {
        font-size: 83px !important;
    }

    @media (max-width: 768px) {
        font-size: 60px !important;
    }

}

.text>h4 .lastLine {
    font-size: 95px !important;

    @media (max-width: 991.98px) {
        font-size: 83px !important;
    }

    @media (max-width: 768px) {
        font-size: 60px !important;
    }

}

.text>h4 span {
    color: #FE5917;
}

.hero_text .btns {
    display: flex;
    align-items: center;
    gap: 20px;

    @media (max-width: 768px) {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
}

.hero_text .btns a:first-child {
    width: 220px;
    height: 50px;
    border-radius: 35px 35px 99px 35px;
    opacity: 1;

    background: rgba(255, 255, 255, 0.22);

    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2118);

    backdrop-filter: blur(10px);
    box-shadow: inset 0px 0px 15px 0px rgba(255, 255, 255, 0.3608);

    font-size: 15px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: 0.1197em;

    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    @media (max-width: 768px) {
        width: 100%;
        border-radius: 15px 15px 15px 15px;
    }
}

.hero_text .btns a:last-child {
    width: 220px;
    height: 50px;
    border-radius: 99px 35px 35px 35px;
    opacity: 1;

    background: rgba(255, 255, 255, 0.22);

    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2118);

    backdrop-filter: blur(10px);
    box-shadow: inset 0px 0px 15px 0px rgba(255, 255, 255, 0.3608);

    font-size: 15px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: 0.1197em;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
    text-decoration: none;

    @media (max-width: 768px) {
        width: 100%;
        border-radius: 15px 15px 15px 15px;
    }
}

.hero_img {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 992px) {
        width: 55%;
        margin-left: 0;
    }

    @media (max-width: 768px) {
        width: 100%;
        margin-left: 0;
    }
}

.hero_img video {
    width: 120%;
    cursor: pointer;
    height: 100%;
}

/* hero section ends */

/* mobile mockup section starts */

.mobile_mockup_container {
    width: 1100px;
    margin: 80px auto;
    padding: 0 0 100px 0;
    overflow-x: hidden;
    position: relative;

    @media (min-width: 992px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 80px;
    }

    @media (max-width: 991.98px) {
        width: 100%;
        margin: 90px auto;
        padding: 30px 0;
        text-align: center !important;
    }
}

.mobile_background_img .img3 {
    position: absolute;
    transform: rotate(90deg);
    right: 30px;
    height: 180px;

    @media (max-width: 768px) {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(0deg);
        height: 100px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        bottom: 0;
        left: 0;
        height: 100px;
    }
}

.mobile_background_img .img4 {
    position: absolute;
    bottom: 0;
    height: 180px;

    @media (max-width: 768px) {
        position: absolute;
        right: 100px;
        top: 0;
        transform: rotate(90deg);
        height: 100px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        position: absolute;
        right: 100px;
        top: 0;
        transform: rotate(90deg);
        height: 100px;
    }
}

.mobile_background_img .img5 {
    display: none;

    @media (max-width: 768px) {
        display: block;
        position: absolute;
        top: 0;
        right: 20px;
        width: 120px;
        opacity: .7;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.mobile_mockup {
    margin: auto;
    width: 1450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;

    @media (max-width: 991.98px) {
        width: 835px;
        overflow-x: hidden;
        margin: auto;
    }

    @media (min-width: 992px) and (max-width: 1024px) {
        width: 835px;
        overflow-x: hidden;
    }

}

.mobile_mockup img {
    width: 100%;
    margin-right: 320px;
    z-index: 1;

    @media (max-width: 768px) {
        margin-right: 430px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        margin-right: 50px;
    }
}

/* mobile mockup section ends */

/* brand section starts */

.brand_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -50px;
    overflow-x: hidden;
    margin-bottom: 70px;
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #111, #aaa, #111);
    padding: 10px 0;
    color: #000;
    position: relative;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 767px) {
        width: 100%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.trust-text {
    color: #111;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 24px;

    @media (max-width: 768px) {
        font-size: 13px;
    }
}

.brand_logo {
    width: 1250px;
    margin: 0 auto;

    @media (max-width: 768px) {
        width: 90%;
    }
}

.brand_logo .logoimg1 {
    width: 99%;

    @media (max-width: 768px) {
        display: none;
    }
}

.brand_logo .logoimg2 {
    display: none;

    @media (max-width: 768px) {
        display: block;
        width: 100%;
    }
}

/* brand section ends */

/* Black Material section starts */

.material_contianer {
    width: 1100px;
    margin: 0 auto;
    overflow-x: hidden;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 150px;
    position: relative;

    @media (max-width: 768px) {
        width: 90%;
        margin: 0 auto;
        padding: 75px 0;
        margin-bottom: 60px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
    }
}

.matrerial_bgimg .img1 {
    position: absolute;
    top: 0;
    right: 0;
    height: 110px;

    @media (max-width: 768px) {
        top: 320px;
        right: 0;
        height: 60px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        top: 450px;
        height: 60px;
    }
}

.matrerial_bgimg .img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 180px;

    @media (max-width: 768px) {
        top: -30px;
        left: 0;
        height: 100px;
    }
}

.material_text {
    position: relative;
    text-align: center;
    line-height: 60px;

    @media (max-width: 768px) {
        line-height: 25px;
    }
}

.heading-text {
    height: 50px;
    width: 150px;
    border-radius: 99999px;

    background: radial-gradient(circle, rgb(255, 255, 255), rgba(190, 190, 190, 0.461));
    filter: blur(20px);
    opacity: .4;

    @media (max-width: 768px) {
        height: 30px;
        width: 50px;
    }

}

.heading-text-box {
    width: 600px;
    display: flex;
    align-items: center;
    gap: 190px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);

    @media (max-width: 768px) {
        gap: 140px;
        left: 110%;
        top: 0;
    }
}

.material_text h5 {
    color: #ffffffa6;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;


    @media (max-width: 768px) {
        font-size: 28px;
    }
}

.material_text h4 {
    color: #8E8E8E;
    font-size: 45px;
    font-weight: 200;
    letter-spacing: 4px;

    @media (max-width: 768px) {
        font-size: 20px;
        margin-bottom: 20px;
    }
}



.material_text p {
    margin-top: -20px;
    color: #B2B2B2;
    font-size: 15px;

    @media (max-width: 768px) {
        font-size: 11px;
    }
}

.material_video {
    width: 900px;
    cursor: pointer;

    @media (max-width: 768px) {
        width: 90%;
    }
}

.material_video video {
    width: 100%;
}

/* Black Material section ends */

/* White Material section starts */

.white_material_contianer {
    width: 1100px;
    margin: 0 auto;
    overflow-x: hidden;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 150px;
    position: relative;

    @media (max-width: 768px) {
        width: 90%;
        margin: 0 auto;
        padding: 75px 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
    }
}

.white_matrerial_bgimg .img1 {
    position: absolute;
    top: 0;
    right: 0;
    height: 110px;

    @media (max-width: 768px) {
        top: 320px;
        right: 0;
        height: 60px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        top: 450px;
        height: 60px;
    }
}

.white_matrerial_bgimg .img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 180px;

    @media (max-width: 768px) {
        top: -30px;
        left: 0;
        height: 100px;
    }
}

.white_material_text {
    text-align: center;
    line-height: 45px;

    @media (max-width: 768px) {
        line-height: 25px;
    }
}

.white_material_text h5 {
    color: #CCCCCC;
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 2px;

    @media (max-width: 768px) {
        font-size: 28px;
    }
}

.white_material_text h4 {
    color: #8E8E8E;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;

    @media (max-width: 768px) {
        font-size: 11px;
    }
}

.white_material_video {
    width: 900px;
    cursor: pointer;

    @media (max-width: 768px) {
        width: 90%;
    }
}

.white_material_video video {
    width: 100%;
}

/* White Material section ends */

/* Product category section starts */

.product_cat_container {
    width: 1100px;
    margin: 80px auto;
    overflow-x: hidden;
    padding: 40px 0;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
    }
}

.product_cat_video {
    width: 1000px;
    position: relative;
    cursor: pointer;

    @media (max-width: 767px) {
        width: 100%;
        height: 900px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        height: 990px;
    }
}

.product_cat_video video {
    width: 100%;
}

.glass-container {
    width: 1100px;
    height: 800px;
    border-radius: 25px;
    overflow: hidden;
    position: absolute;
    top: 0;
    border: 1px solid #FFFFFF;

    @media (max-width: 767px) {
        width: 100%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.glass-container img {
    width: 100%;
    height: 800px;
    opacity: 0.9;
    object-fit: cover;
    background-position: center;
}

.category-pill {
    position: absolute;
    top: -25px;
    left: 370px;
    padding: 12px 30px;
    border-radius: 40px;
    background: linear-gradient(to bottom, #ffffff, #dcdcdc);
    box-shadow: inset 0 0 10px 0 rgb(0, 0, 0);
    border: 1px solid #999;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 22px;
    color: #000;
    text-align: center;
    z-index: 1;

    @media (max-width: 767px) {
        width: 80%;
        left: 38px;
        padding: 12px;
        font-size: 14px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 40%;
        left: 260px;
        padding: 12px;
        font-size: 14px;
    }
}

.category_pill_mobile {
    display: none;
}

.image-box {
    width: 300px;
    height: 332px;
}

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

.all_card {
    position: absolute;
    top: 70px;
    width: 1100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;

    @media (max-width: 767px) {
        width: 100%;
        gap: 20px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.card {
    width: 260px;
    height: 320px;
    border-radius: 30px;
    background: rgba(60, 60, 60, 0.3);
    /* semi-transparent background */
    border: 4px solid rgba(255, 255, 255, 0.2);
    /* light border */
    box-shadow:
        inset -5px -5px 10px rgba(255, 255, 255, 0.15),
        inset 5px 5px 10px rgba(0, 0, 0, 0.4),
        0 0 0 2px #999,
        0 0 0 4px #0000001f,
        0 5px 15px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(30px);
    /* for Safari */
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;

    @media (max-width: 767px) {
        width: 160px;
        height: 200px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        box-shadow: none;
        width: 230px;
        height: 300px;
    }
}

.inner-white {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 200px;
    background: white;
    border-radius: 30px;
    /* Replace with your own image */
    background-size: cover;
    background-position: center;

    @media (max-width: 767px) {
        height: 100px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        height: 150px;
    }
}

.card-text {
    position: absolute;
    bottom: 25px;
    width: 100%;
    font-size: 20px;
    letter-spacing: 1px;
    color: #D9D9D9;

    @media (max-width: 767px) {
        font-size: 15px;
        bottom: 10px;
    }
}

/* Product category section ends */

/* setup process section starts */

.setup_pro_container {
    width: 1100px;
    margin: 70px auto;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    padding: 70px 0;

    @media (max-width: 767px) {
        width: 100%;
        flex-direction: column;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        flex-direction: column;
    }
}

.setup_pro_bgimg .img1 {
    position: absolute;
    top: 0;
    right: 0;
    height: 110px;

    @media (max-width: 767px) {
        top: 800px;
        right: 0;
        height: 60px;
    }
}

.setup_pro_bgimg .img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 160px;

    @media (max-width: 767px) {
        top: 0;
        height: 100px;
    }
}

.setup_pro_video {
    width: 550px;
    height: 700px;

    @media (max-width: 767px) {
        height: 600px;
    }
}

.setup_pro_video video {
    width: 100%;
    transition: all 0.3s ease;
}

.setup_pro {
    text-align: start;

    @media (max-width: 767px) {
        text-align: center;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        text-align: center;
    }
}

h1 {
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 1px;

    @media (max-width: 767px) {
        font-size: 2.4rem;
    }
}

.subtitle {
    font-size: .9rem;
    margin-bottom: 2.1rem;
    color: #ccc;

    @media (max-width: 767px) {
        font-size: .8rem;
    }
}

.step-label {
    background-color: #FC4D0D;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: .7rem;
    font-weight: bold;
    color: #FFFFFF;
    font-weight: 400;
    box-shadow: 0 0 10px #f4f6ff inset;
}

.instructions {
    margin-bottom: 1rem;
    font-size: .9rem;
    color: #ccc;

    @media (max-width: 767px) {
        font-size: .8rem;
    }
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.icon-box.active {
    background-color: #f75c1e;
    color: #f75c1e;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #f4f6ff inset;
    transition: background 0.3s;
    position: relative;
    color: #FFFFFF;
    font-size: .5rem;
}

.icon-label {
    position: absolute;
    top: 80px;
}

.icon {
    font-size: 24px;
    color: white;
}

/* setup process section ends */

/* Saving Contact section starts */

.saving_connection {
    position: relative;
    width: 100%;
    margin: 180px auto;
}

.saving_con_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    overflow-x: hidden;
}

.saving_pro_bgimg {
    position: absolute;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 767px) {
        position: absolute;
        width: 100%;
        margin: 0 auto;
    }
}

.saving_pro_bgimg .img1 {
    position: absolute;
    top: 0;
    right: 0;
    height: 130px;

    @media (max-width: 767px) {
        top: 900px;
        right: 30px;
        height: 60px;
    }
}

.saving_pro_bgimg .img2 {
    position: absolute;
    top: 1050px;
    left: 0;
    height: 170px;

    @media (max-width: 767px) {
        top: 320px;
        left: 20px;
        height: 100px;
    }
}

.saving_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;

    @media (max-width: 767px) {
        background: transparent;
        flex-direction: column;
        justify-content: space-between;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        flex-direction: column;
    }
}

.saving_card_bg {
    background: linear-gradient(to right, #0F110E 43%, #1C1C1C 50%, #2F2F2F 70%, #404040 100%);
    width: 75%;
    height: 300px;
    position: absolute;
    right: 0;
    z-index: -1;

    @media (max-width: 992px) {
        display: none;
    }
}




.saving {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 991.98px) {
        width: 100%;
        flex-direction: column;
    }
}

.saving_con_video {
    width: 50%;

    @media (max-width: 991.98px) {
        order: 2;
        max-width: 680px;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 100px;
    }

    @media (min-width: 992px) and (max-width: 1024px) {
        order: 2;
    }
}

.saving_con_video video {
    width: 100%;
}

.saving_con {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 50px;
    line-height: 50px;
    padding: 40px 0;

    @media (max-width: 991.98px) {
        background: linear-gradient(to left, #0F110E, #404040);
        order: 1;
        width: 100%;
        justify-content: center;
        gap: 20px;
        line-height: 30px;
        padding: 20px 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        order: 1;
        justify-content: center;
        gap: 50px;
        line-height: 50px;
    }
}

.saving_con h4 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
    padding-left: 30px;

    @media (max-width: 767px) {
        font-size: 1.5rem;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 2.7rem;
    }
}

.saving_con_img {
    width: 18%;
}

.saving_con_img img {
    width: 100%;
}

.saving_con_container_img {
    width: 1100px;
    margin: 0 auto;
    opacity: .5;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.saving_con_container_img>img {
    width: 100%;
}

.connect_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -80px;
    width: 100%;
    margin: 0 auto;
    /* background: linear-gradient(to left, #0F110E 43%, #1C1C1C 50%, #2F2F2F 70%, #404040 100%); */

    @media (max-width: 767px) {
        background: transparent;
        flex-direction: column;
        justify-content: space-between;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        flex-direction: column;
    }
}

.contract_card_bg {
    background: linear-gradient(to left, #0F110E 43%, #1C1C1C 50%, #2F2F2F 70%, #404040 100%);
    width: 75%;
    height: 300px;
    position: absolute;
    left: 0;
    z-index: -1;

    @media (max-width: 992px) {
        display: none;
    }
}

.connect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 991.98px) {
        width: 100%;
        flex-direction: column;
    }
}

.connect_con_video {
    width: 50%;

    @media (max-width: 767px) {
        max-width: 680px;
        width: 100%;
        margin-top: 40px;
    }
}

.connect_con_video video {
    width: 100%;
}

.connect_con {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 50px;
    line-height: 50px;
    padding: 40px 0;

    @media (max-width: 992px) {
        margin-bottom: 60px;
        background: linear-gradient(to left, #0F110E, #404040);
        width: 100%;
        justify-content: center;
        gap: 20px;
        line-height: 30px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        justify-content: center;
        gap: 50px;
        line-height: 50px;
    }
}

.connect_con h4 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;

    @media (max-width: 767px) {
        order: 1;
        font-size: 1.5rem;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        order: 1;
        font-size: 2.7rem;
    }
}

.connect_con_img {
    width: 18%;

    @media (max-width: 767px) {
        order: 2;
        width: 20%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        order: 1;
        width: 20%;
    }
}

.connect_con_img img {
    width: 100%;
}

/* Saving Contact section ends */

/* sharing section starts */

.share_section {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.share_container {
    width: 1100px;
    margin: 150px auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;

    @media (max-width: 767px) {
        width: 100%;
        margin: 150px auto;
        overflow-x: hidden;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 250px auto;
        overflow-x: hidden;
    }
}

.share_bgimg .img1 {
    position: absolute;
    right: 70px;
    top: 0;
    height: 120px;

    @media (max-width: 767px) {
        display: none;
    }
}

.share_bgimg .img2 {
    position: absolute;
    bottom: -110px;
    left: 70px;
    height: 150px;

    @media (max-width: 767px) {
        display: none;
    }
}

.share_heading_text {
    width: 352px;
    height: 57px;
    border-radius: 24px;
    background: rgba(252, 77, 13, 0.68);
    box-sizing: border-box;
    font-weight: 500;
    box-shadow: inset 0px 7px 32px 0px rgba(255, 255, 255, 0.5412);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 23px;

    @media (max-width: 767px) {
        width: 300px;
        font-size: 18px;
    }
}

.share_all_card {
    display: flex;
    align-items: center;
    gap: 40px;
    background-image: url(./images/share-shape.png);
    background-position: center;
    object-fit: cover;
    background-size: calc(800px);
    background-repeat: no-repeat;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.share_allMobile_card {
    display: none;

    @media (max-width: 767px) {
        display: grid;
        grid-template-columns: auto auto auto auto;
        overflow-x: hidden;
        scroll-behavior: smooth;
        width: 100%;
        gap: 40px;
        background-image: url(./images/share-shape.png);
        background-position: center;
        object-fit: cover;
        background-size: calc(550px);
        background-repeat: no-repeat;
        padding: 70px 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: grid;
        grid-template-columns: auto auto auto auto;
        overflow-x: hidden;
        scroll-behavior: smooth;
        width: 100%;
        gap: 40px;
        background-image: url(./images/share-shape.png);
        background-position: center;
        object-fit: cover;
        background-size: calc(550px);
        background-repeat: no-repeat;
        padding: 40px 0;
    }
}

.share_allMobile_card>div {
    scroll-snap-align: start;
}

.card1 {
    width: 309.42px;
    height: 348.52px;
    position: relative;
    background-image: url(./images/sharecard1.png);
    background-repeat: no-repeat;

    @media (max-width: 767px) {
        background-size: calc(270px);
        width: 270.42px;
        height: 318px;
    }
}

.card1 .text_shape input {
    width: 60%;
    background-color: transparent;
    color: #D9D9D9;
    position: absolute;
    top: 102px;
    left: 75px;
    font-size: .7rem;
    border: none;
    outline: none;

    @media (max-width: 767px) {
        top: 87px;
        left: 60px;
    }
}

.card1 .text_shape input::placeholder {
    color: #D9D9D9;
}

.card1 .text_shape p {
    color: #D9D9D9;
    padding: 15px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;

    @media (max-width: 767px) {
        bottom: 20px;
        font-size: 1.2rem;
    }
}

.card2 {
    width: 309.42px;
    height: 348.52px;
    position: relative;
    background-image: url(./images/sharecard3.png);
    background-repeat: no-repeat;

    @media (max-width: 767px) {
        background-size: calc(270px);
        width: 270.42px;
        height: 318px;
    }
}

.card2 .text_shape {
    color: #D9D9D9;
    padding: 15px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.card2 .text_shape p {
    text-align: center;
    font-size: 1.5rem;
}

.card2 .text_shape span {
    border-radius: 21px;
    opacity: 1;
    background: rgba(97, 97, 97, 0.3);
    box-sizing: border-box;
    border: 1px solid #707070;
    backdrop-filter: blur(60px);
    box-shadow: inset 0px 0px 12px 0px #000000;
    padding: 5px 40px;
    cursor: pointer;
}

.card3 {
    border-radius: 29px;
    width: 309.42px;
    height: 348.52px;
    position: relative;
    background-image: url(./images/sharecard2.png);
    background-repeat: no-repeat;

    @media (max-width: 767px) {
        background-size: calc(270px);
        width: 270.42px;
        height: 318px;
    }
}

.card3 .text_shape {
    color: #D9D9D9;
    border-radius: 0 0 29px 29px;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 0;

    @media (max-width: 767px) {
        bottom: 20px;
        font-size: 1rem;
    }
}

.card3 .text_shape p {
    text-align: center;
    font-size: 1.5rem;
}

.card4 {
    border-radius: 29px;
    width: 309.42px;
    height: 348.52px;
    position: relative;
    background-image: url(./images/sharecard4.png);
    background-repeat: no-repeat;

    @media (max-width: 767px) {
        background-size: calc(270px);
        width: 270.42px;
        height: 318px;
    }
}

.card4 .text_shape {
    color: #D9D9D9;
    border-radius: 0 0 29px 29px;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 0;

    @media (max-width: 767px) {
        bottom: 20px;
    }
}

.card4 .text_shape p {
    text-align: center;
    font-size: 1.5rem;

    @media (max-width: 767px) {
        font-size: 1.2rem;
    }
}


.dot-container {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #111;
        padding: 10px;
        gap: 10px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #111;
        padding: 10px;
        gap: 10px;
    }
}

.dot {
    height: 6px;
    width: 30px;
    background-color: #444;
    border-radius: 3px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    opacity: 1;
    width: 40px;
}

/* sharing section ends */

/* intro compatible section starts */

.intro_comp_section {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.intro_comp_container {
    width: 1100px;
    margin: 70px auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
        padding: 0 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 250px auto;
        overflow-x: hidden;
    }

}

.intro_comp_bgimg .img1 {
    position: absolute;
    top: 0;
    right: 70px;
    height: 120px;

    @media (max-width: 767px) {
        display: none;
    }
}

.intro_comp_bgimg .img2 {
    position: absolute;
    bottom: 0;
    left: 70px;
    height: 150px;

    @media (max-width: 767px) {
        display: none;
    }
}

.intro_comp_text {
    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
}

.intro_comp_text h5 {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 1px;

    @media (max-width: 767px) {
        font-size: 1.7rem;
    }
}

.intro_comp_text p {
    color: gray;
    text-align: center;
    font-size: 15px;
    opacity: .9;
}

.intro_comp_video {
    width: 1000px;

    @media (max-width: 767px) {
        width: 85%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 30px;
    }
}

.intro_comp_video video {
    width: 100%;

    @media (max-width: 767px) {
        width: 140%;
    }
}

/* intro compatible section ends */

/* slider img section starts */

.slider_img_container {
    width: 100%;
    margin: 90px auto;
    overflow-x: hidden;
}

/* Default show pagination */
.swiper-pagination {
    display: none;
}

@media (max-width: 767px) {
    .swiper-pagination {
        margin-bottom: -40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #3a3a3a;
        opacity: 1;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        background: #ffffff;
    }
}

.slider .card1 {
    background-image: url(./images/Sliderimg2.png);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #99999994;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.slider .card2 {
    background-image: url(./images/Sliderimg3.png);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.slider .card3 {
    background-image: url(./images/Sliderimg4.png);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
    opacity: .5;
}

.slider .card4 {
    background-image: url(./images/Sliderimg5.png);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
    opacity: .4;
}

.slider .card5 {
    background-image: url(./images/Sliderimg1.png);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.slider .img1 {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.slider .img2 {
    width: 80%;
    position: absolute;
    top: 30px;
    left: 10px;
    opacity: .5;
}

.text_card {
    width: 300px;
    height: 130px;
    overflow: hidden;
    /* background: rgba(88, 88, 88, 0.6);
    backdrop-filter: blur(10px); */
    color: #fff;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: absolute;
    bottom: 0;
    padding-bottom: 10px;
}

.text_card:hover {
    height: 220px;
    border-radius: 15px;
    transform: translateY(-20px);
    /* padding: 5px; */
    background: rgba(88, 88, 88, 0.39);
    backdrop-filter: blur(10px);
}

.text_card_content {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.text_card:hover .text_card_content {
    gap: 20px;
}

.text_card_header {
    width: 100%;
}

.text_card_header h2 {
    margin: 0;
    font-size: 22px;
    background: rgba(122, 121, 121, 0.525);
    backdrop-filter: blur(15px);
    letter-spacing: 1px;
    font-weight: 400;
    padding-left: 10px;
}

.text_card:hover .text_card_header h2 {
    text-align: center;
}

.text_card_subtitle {
    display: flex;
    justify-content: space-between;
    background: rgba(122, 121, 121, 0.97);
    backdrop-filter: blur(10px);
    height: 18px;
    padding: 0 10px 10px 10px;
}

.text_card:hover .text_card_subtitle {
    flex-direction: column;
    text-align: center;
}

.text_card_subtitle .subtitle {
    color: #FFFFFF;
    font-size: .8rem;
}

.text_card:hover .text_card_subtitle .subtitle {
    font-size: .8rem;
}

.text_card_subtitle .stars {
    font-size: .8rem;
}

.text_card:hover .text_card_subtitle .stars {
    margin-top: -30px;
    font-size: .8rem;
}

.text_card_body {
    padding: 0 10px 0 10px;
}

.text_card_body p {
    font-size: .5rem;
    color: #C2C2C2;
}

.text_card:hover .text_card_body p {
    font-size: .6rem;
}

.text_card_body p .b {
    font-weight: 400;
    font-size: .7rem;
}

.text_card:hover .text_card_body p .b {
    font-size: .6rem;
}

.text_card_body div {
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #C2C2C2;
}

.text_card:hover .text_card_body div {
    opacity: 1;
    font-size: .6rem;
}

.slider .upIcon {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(241, 235, 225, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 7px;
    font-size: 1.2rem;
    color: #FC4D0D;
    border: 1px solid #FFFFFF;
    cursor: pointer;
}

.slider .leftIcon {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(241, 235, 225, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 7px;
    font-size: 1.2rem;
    color: #FC4D0D;
    border: 1px solid #FFFFFF;
    padding: 5px 10px;
    cursor: pointer;
}


.slider .leftIcon span {
    color: black;
    font-size: 1rem;
    margin-right: 10px;
}

.slider .leftIcon i {
    font-size: 1.2rem;
}

/* slider img section ends */

/* press & media section starts */

.press_media {
    width: 100%;
    margin: 0 auto;
}

.press_med_container {
    background-image: url(./images/media/media-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow-x: hidden;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.press-media-btn {
    padding: 10px 30px;
    background: linear-gradient(145deg, #5e5e5e, #7a7a7a);
    border: none;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 10px;
    outline: none;
    transition: background 0.3s ease;

    @media (max-width: 767px) {
        font-size: 14px;
    }
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;

    @media (max-width: 767px) {
        display: none;
    }

}


.left-arrow {
    background: rgba(255, 255, 255, 0.132);
    backdrop-filter: blur(20px);
}

.right-arrow {
    background: rgba(255, 255, 255, 0.279);
    backdrop-filter: blur(20px);
}

.press_med_img {
    width: 106%;

    @media (max-width: 767px) {
        display: none;
    }
}

.press_med_img img {
    width: 100%;
    transition: all 0.3s ease;
}

@keyframes slideIn {
    0% {
        transform: translateX(150%) scale(0.8) rotate(5deg);
        opacity: 0;
    }

    40% {
        transform: translateX(-20px) scale(1.05) rotate(-2deg);
        opacity: 1;
    }

    60% {
        transform: translateX(10px) scale(1);
        rotate: 1deg;
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

.slide-animate {
    animation: slideIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.press_carousel_track {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: relative;
        overflow-x: hidden;
    }

}

.cardcar {
    flex-shrink: 0;
    width: 220px;
    height: 280px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.cardcar.active {
    opacity: 1;
    transform: scale(1);
}

.cardcar>img {
    width: 100%;
}

.left_right_arrow {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        gap: 250px;
        color: white;
        position: absolute;
        top: 45px;
        font-size: 40px;
    }
}

/* press & media section ends */

/* frequently section starts */

.frequently_container {
    width: 1100px;
    margin: 100px auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 55px;
    align-items: center;
    justify-content: center;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.frequently_text {
    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
    }
}

.frequently_text h2 {
    font-size: 27px;
    color: #ffffff;
    background-color: #FC4D0D;
    margin: 0;
    padding: 12px 35px;
    border-radius: 20px;
    box-shadow: inset 0 12px 47px #8F2600;
    font-weight: 400;
    display: inline-block;

    @media (max-width: 767px) {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
}

.search_faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 1100px;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
    }
}

.search_faq .search {
    width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border-radius: 30px !important;
    padding: 10px 30px;
    background: rgba(70, 72, 69, 100);

    @media (max-width: 767px) {
        width: 95%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 95%;
        margin: 0 auto;
    }
}

.search_faq .search input {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    background-color: transparent;
}

.search_faq .search i {
    color: white;
    font-size: 1.7rem;
}

.accordion-container {
    width: 800px;
    margin: 0 auto;

    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
    }
}

.accordion-item {
    margin-top: 10px;
    border: 2px solid #ffffff00;
    background-color: transparent;
    border-radius: 30px !important;
    box-shadow: inset 0 3px 6px #000000;

    @media (max-width: 767px) {
        margin-top: 20px;
    }
}

.accordion-header {
    display: flex;
    justify-content: start;
    gap: 25px;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background: #2E302D;
    border: none;
    width: 100%;
    font-size: 22px;
    outline: none;
    border-radius: 30px;
    box-sizing: border-box;
    border: 2px solid rgb(255 255 255 / 18%);
    backdrop-filter: blur(60px);
    box-shadow: inset 0px 3px 6px 0px rgba(0, 0, 0, 0.8902);
    color: #fff;

    @media (max-width: 767px) {
        font-size: 14.7px;
    }
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    background: #363636;
    margin-top: -58px;
    padding-top: 58px;
    border-radius: 30px;
    color: #fff;
    text-align: left;
    font-size: 20px;
    line-height: 28px;

    @media (max-width: 767px) {
        font-size: 15px;
    }
}

.accordion-content p {
    padding: 10px 20px;
    margin: 0;
    color: #F6F6F6;
    font-size: 1rem;
}

.active svg {
    transform: rotate(180deg);
}

.active2 {
    background: rgba(112, 113, 111, 100%);
}

/* frequently section ends */

/* footer section starts */

.footer_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;

    @media (max-width: 767px) {
        margin-top: 40px;
        margin-bottom: 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        margin-top: 40px;
        margin-bottom: 0;
    }
}

.footer_logo {
    width: 1100px;
    margin: 0 auto;
    margin-top: 70px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;

    @media (max-width: 767px) {
        width: 95%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 95%;
        margin: 0 auto;
    }
}

.footer_logo_img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.footer_logo_img img:nth-child(1) {
    width: 30%;

    @media (max-width: 767px) {
        margin-top: 70px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        margin-top: 80px;
    }
}

.footer_logo_img img:nth-child(2) {
    width: 30%;

    @media (max-width: 767px) {
        margin-top: 70px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        margin-top: 80px;
    }
}

.footer_logo_contact button {
    padding: 15px 40px;
    font-size: 20px;
    color: #fff;
    background: radial-gradient(circle at center, #333 0%, #111 100%);
    border: 1px solid #666;
    border-radius: 50px;
    box-shadow:
        inset 0 0 8px rgba(255, 255, 255, 0.1),
        0 0 4px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.footer_logo_contact button:hover {
    box-shadow:
        inset 0 0 12px rgba(255, 255, 255, 0.2),
        0 0 6px rgba(255, 255, 255, 0.2);
}

.footer_links {
    width: 1100px;
    margin: 0 auto;
    overflow-x: hidden;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 40px 10px 0 10px;

    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
        gap: 50px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto auto;
        gap: 40px;
    }
}

.footer_links .pages_link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.pages_text h4 {
    font-size: 1.1rem;
}

.pages_link ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pages_link ul li {
    list-style: none;
}

.pages_link ul li a {
    text-decoration: none;
    color: #CECECE;
    font-size: .8rem;
}

.footer_links .navigate_link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.navigate_media {
    display: flex;
    justify-content: space-between;
    gap: 150px;

    @media (max-width: 767px) {
        width: 100%;
        justify-content: space-between;
    }
}

.navigate_text h4 {
    font-size: 1.1rem;
}

.footer_navs ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_navs ul li {
    list-style: none;
}

.footer_navs ul li a {
    text-decoration: none;
    color: #CECECE;
    font-size: .8rem;
}

.footer_links .media_links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.media_text h4 {
    font-size: 1.1rem;
}

.footer_links .shop_links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.shop_text h4 {
    font-size: 1.1rem;
}

.footer_links .address_link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.address_text h4 {
    font-size: 1.1rem;
}

.footer_address {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer_address div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer_address p {
    color: #CECECE;
    font-size: .8rem;
}

.footer_address ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_address ul li {
    list-style: none;
    color: #CECECE;
    font-size: .8rem;
}

.social_links {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        width: 90%;
        margin: 30px auto;
        color: white;
        align-items: center;
        justify-content: space-between;
        font-size: 30px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: flex;
        width: 90%;
        margin: 30px auto;
        color: white;
        align-items: center;
        justify-content: space-between;
        font-size: 50px;
    }
}

.payment {
    width: 1200px;
    margin: 0 auto;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
    }
}

.payment .img1 {
    width: 100%;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.payment .img2 {
    display: none;
    width: 100%;

    @media (max-width: 767px) {
        display: block;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: block;
    }
}

.copyright {
    width: 1100px;
    margin: 0 auto;
    text-align: center;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.copyright p {
    color: #CBCBCB;
    font-size: .9rem;


}

/* footer section ends */



/* responsive */

/* Small devices (portrait phones) */
@media (max-width: 575.98px) {
    /* Your mobile styles here */
}

/* Medium devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Styles for small devices */
}

/* Large devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Styles for tablets */
}

/* Extra large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Styles for small desktops */
}

/* Extra extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Styles for larger desktops */
}