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

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

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

    @media (max-width: 768px) {
        width: 100%;
        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: 15px 0;

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

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

.logo {
    width: 10%;

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

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

.logo img {
    width: 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;
    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: 8%;
        display: block;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 8%;
        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 {
    max-width: 2200px;
    margin: 0 auto;
    overflow-x: hidden;
    background-image: url(./images/feeltheexperience/Group\ 727.png);
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    background-size: 120%;
}

.hero_container {
    width: 1100px;
    margin: 0 auto;
    overflow-x: hidden;

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

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

.hero_text {
    width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;

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

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

.box_text {
    padding: 10px 40px;
    border: 1px solid #707070;
    border-radius: 20px;
    box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 0.3608);
    background-color: #0F110E;
    text-align: center;
    line-height: 30px;

    @media (max-width: 767px) {
        border-radius: 38px;
        padding: 20px 40px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        border-radius: 38px;
        padding: 20px 40px;
    }
}

.box_text p {
    color: #B2B2B2;
    font-size: 15px;

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

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

.box_text h5 {
    color: #CCCCCC;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;

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

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

.box_text span {
    color: #8E8E8E;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 2px;

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

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

.normal_text p {
    color: #FC4D0D;
    text-align: center;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 13px;

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

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

.hero_content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 50px;

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

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

.left_side {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;

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

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

}

.left_side_img {
    width: 155%;
}

.left_side_img img {
    width: 100%;
}

.left_side_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.left_side_button .button1 {
    width: 77px;
    height: 35px;
    background-color: #232323;
    border: 2px solid #707070;
    border-radius: 18px;
}

.left_side_button .button2 {
    width: 77px;
    height: 35px;
    background: linear-gradient(to right, #0869A2, #00ADDE);
    border-radius: 18px;
}

.left_side_button .button3 {
    width: 77px;
    height: 35px;
    background: white;
    border-radius: 18px;
}

.right_side {
    width: 65%;

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

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

.right_font_color {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2F2F2F;
    margin-right: 100px;
    border-radius: 38px;
    border: 2px solid #ABABAB;
    padding: 8px 15px;

    @media (max-width: 767px) {
        margin-right: 0;
    }
}

.right_font_color h4 {
    color: #818181;
    font-weight: 400;
    font-size: 15px;

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

.color {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.color1 {
    width: 176px;
    height: 30px;
    border-radius: 38px;
    background-color: #CF9C58;

    @media (max-width: 767px) {
        width: 91px;
        display: flex;
        align-items: center;
        justify-content: start;
        padding-left: 10px;
    }
}

.color1 i {
    display: none;

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

.color2 {
    width: 176px;
    height: 30px;
    border-radius: 38px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 10px;

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

.color2 i {
    font-size: 18px;

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

.right_front_back_side {
    display: flex;
    align-items: start;
    justify-content: space-between;

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

.front_side {
    margin-top: 20px;

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

.front_side>h4 {
    color: #F6F6F6;
    font-size: 15px;
    font-weight: 600;
    text-align: center;

    @media (max-width: 767px) {
        margin-left: 100px;
        background: #393939;
        display: inline-block;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 16px;
        padding: 10px 30px;
        border-radius: 41px;
        font-weight: 600;
        border: 1px solid #707070;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-top: 30px;
    }
}

.font_side_box {
    width: 300px;
    height: 210px;
    border-radius: 28px;
    margin-bottom: 15px;
    position: relative;

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

.font_side_box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.font_side_box .felllogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 50px;
}

.font_side_box .felllogo>img {
    width: 80px;
    object-fit: cover;
}

.upload_img {
    background-color: #2F2F2F;
    width: 291px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 38px;
    border: 2px solid #828282;
    padding: 0 15px;
    margin-bottom: 10px;

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

.upload_img h5 {
    font-size: 12px;
    color: #A5A5A5;
    font-weight: 400;
}

.custom-file-upload {
    display: inline-block;
    background-color: #AEAEAE;
    font-size: 11px;
    color: #383737;
    padding: 5px 20px;
    border-radius: 38px;
    font-weight: normal;
    cursor: pointer;
}

#logo-upload {
    display: none;
}

.custom_temp {
    width: 291px;
    background-color: #404040;
    padding: 10px 15px 0 15px;
    border-radius: 15px;
    border: 2px solid #AFAFAF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

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

.custom_temp h4 {
    color: #A5A5A5;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

.custom_temp .template {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.custom_temp .template div {
    background-color: #989898;
    width: 75px;
    height: 54px;
    border-radius: 10px;

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

.custom_temp .template>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.custom_temp p {
    background-color: #FC4D0D;
    color: white;
    width: 115px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 38px;
    font-size: 10px;
}

.back_side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;

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

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

.back_left_side>h4 {
    color: #F6F6F6;
    font-size: 15px;
    font-weight: 600;
    width: 291px;
    text-align: center;

    @media (max-width: 767px) {
        width: 50%;
        margin-left: 100px;
        background: #393939;
        display: inline-block;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 16px;
        padding: 10px 30px;
        border-radius: 41px;
        font-weight: 600;
        border: 1px solid #707070;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-top: 40px;
    }
}

.back_left_side .back_side_box {
    width: 300px;
    height: 210px;
    border-radius: 28px;
    margin-bottom: 15px;
    position: relative;

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

.back_left_side .back_side_box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.back_left_side .back_side_box .details {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.back_left_side .back_side_box .details>h4 {
    font-weight: 500;
    font-size: 22px;
    color: #de0046;
}

.back_left_side .back_side_box .details>p {
    font-size: 14px;
    font-weight: 400;
    color: gray;
}

.back_left_side .back_side_box .details>span {
    font-size: 14px;
    color: gray;
    font-weight: 400;
}

.back_left_side .input_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.back_left_side .input_box input {
    background-color: #2F2F2F;
    width: 291px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 38px;
    border: 2px solid #828282;
    padding: 0 15px;
    outline: none;
    color: white;

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

.back_left_side .input_box input::placeholder {
    font-size: 12px;
    color: #A5A5A5;
    font-weight: 400;
}

.back_right_side {
    padding-left: 10px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;

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

.back_right_side div i {
    background-color: #363636;
    border-radius: 50%;
    padding: 5px;
    color: white;
    font-size: 15px;

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

.right_app_interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 90px;
    margin-top: 25px;

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

.right_side_img {
    display: none;
    width: 155%;

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

.right_side_img img {
    width: 100%;
}

.right_side_button {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 30px;
    }
}

.right_side_button .button1 {
    width: 77px;
    height: 35px;
    background-color: #232323;
    border: 2px solid #707070;
    border-radius: 18px;
}

.right_side_button .button2 {
    width: 77px;
    height: 35px;
    background: linear-gradient(to right, #0869A2, #00ADDE);
    border-radius: 18px;
}

.right_side_button .button3 {
    width: 77px;
    height: 35px;
    background: white;
    border-radius: 18px;
}

.right_app_interface>h5 {
    color: #F6F6F6;
    font-size: 15px;
    margin-bottom: 10px;

    @media (max-width: 767px) {
        background: #393939;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 16px;
        padding: 10px 30px;
        border-radius: 41px;
        font-weight: 600;
        border: 1px solid #707070;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-top: 40px;
    }
}

.right_app_interface .all_input_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;

    @media (max-width: 767px) {
        gap: 5px;
    }
}

.upload_profile {
    background-color: #2F2F2F;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 38px;
    border: 2px solid #828282;
    padding: 0 15px;
}

.upload_profile h5 {
    font-size: 12px;
    color: #A5A5A5;
    font-weight: 400;
}

.upload_profile span {
    background-color: #AEAEAE;
    font-size: 11px;
    color: #383737;
    padding: 5px 20px;
    border-radius: 38px;
}

.other_input_box {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;

    @media (max-width: 767px) {
        /* width: 100%; */
        grid-template-columns: auto;
        gap: 5px;
    }
}

.other_input_box>input {
    background-color: #2F2F2F;
    width: 310px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 38px;
    border: 2px solid #828282;
    padding: 0 15px;
    color: #F6F6F6;

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

.other_input_box>input::placeholder {
    color: #A5A5A5;
    font-size: 12px;
}

.right_buy_now {
    margin-right: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;

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

.buy_left {
    width: 70%;
    background: linear-gradient(to right, #3B3B3B, #141414);
    border-radius: 13px;
    padding: 10px 0 10px 20px;

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

.buy_left>h5 {
    color: #F6F6F6;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 1px;
}

.buy_left .confrom_design {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 10px;
}

.buy_left .confrom_design>p {
    color: #F6F6F6;
    font-size: 14px;
    font-weight: 400;
}

.yes_no {
    display: flex;
    align-items: center;
    gap: 15px;
}

.yes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yes>div {
    width: 14px;
    height: 15px;
    border-radius: 50%;
    background-color: #FC4D0D;
}

.yes>h5 {
    color: #F6F6F6;
    font-size: 16px;
    font-weight: 400;
}

.no {
    display: flex;
    align-items: center;
    gap: 10px;
}

.no>div {
    width: 14px;
    height: 15px;
    border-radius: 50%;
    background-color: #F6F6F6;
}

.no>h5 {
    color: #F6F6F6;
    font-size: 16px;
    font-weight: 400;
}

.right_buy_img {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
    }
}

.right_buy_img img {
    display: none;

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

.right_buy_img .img1 {
    display: none;

    @media (max-width: 767px) {
        display: block;
        width: 10%;
        position: absolute;
        top: 175px;
        left: 90px;
    }
}

.buy_right {
    width: 30%;

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

.buy_right>div {
    background: #FC4D0D;
    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;
    padding: 10px 10px;
    border-radius: 41px;
    font-weight: 600;
}

/* hero 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: 50px auto;
        padding: 75px 0;
        margin-bottom: 60px;
    }

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

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

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

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

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

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

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

.material_text p {
    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 */

/* footer section starts */

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

    @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 .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 */