@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;
}

.login_wrapper>.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 {
    width: 100%;
    margin: 40px auto;
    overflow-x: hidden;
    background-image: url(./images/delivary/Group\ 730.png);
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    background-size: 100%;

    @media (max-width: 767px) {
        background-size: 150%;
    }
}

.hero_container {
    width: 1100px;
    margin: 0 auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 50px;

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

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

.tabs_indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;

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

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

.tabs_indicator .tabs {
    display: flex;
    align-items: center;
    justify-content: center;

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

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

.tabs_indicator .tabs .active {
    background-color: #FC4D0D;
    border: none;
    outline: none;
    font-size: 20px;
    letter-spacing: 1px;
    color: #FFFFFF;
    border-radius: 38px;
    padding: 10px 25px;

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

.tabs_indicator .tabs>div {
    width: 130px;
    height: 5px;
    background-color: #707070;

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

.tabs_indicator .tabs .nonactive {
    background-color: #424242;
    border: none;
    outline: none;
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 9px 45px;
    border-radius: 38px;
    border: 1px solid #707070;
    box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 0.3608);

    @media (max-width: 767px) {
        font-size: 12px;
        padding: 9px 30px;
    }
}

.tab_indicator_wrapper {
    position: absolute;
    bottom: -80px;
    left: 400px;

    @media (max-width: 767px) {
        left: 70px;
        bottom: -84px;
    }

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

.shape {
    position: relative;
    width: 80px;
    height: 20px;
}

.shape::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #aaa, #888);
    clip-path: polygon(20% 100%, 50% 0%, 80% 100%);
}

.main_content {
    background: rgba(47, 47, 47, 0.5);
    backdrop-filter: blur(7px);
    box-shadow: inset 0px 7px 22px 7px rgba(255, 255, 255, 0.3608);
    border-radius: 33px;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    gap: 40px;

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

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

.information {
    display: flex;
    justify-content: space-between;
    gap: 20px;

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

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

.left_infor {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 18px;

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

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        gap: 20px;
        margin-top: 25px;
    }
}

.billing_shipping {
    display: flex;
    flex-direction: column;
    gap: 15px;

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

.billing_shipping h5 {
    width: 400px;
    padding: 5px 0 5px 50px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #d3d3d3, rgba(47, 47, 47, 0.5));
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    font-size: 23px;

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

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

.billing_shipping .billing_shipping_input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 40px;

    @media (max-width: 767px) {
        padding: 0 30px;
    }

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

.billing_shipping .billing_shipping_input input {
    background-color: #000000;
    border-radius: 46px;
    border: 1px solid #ECECEC;
    font-size: 11px;
    padding: 10px 20px;
    font-weight: 600;
    color: white;

    @media (min-width: 768px) and (max-width: 1024px) {
        padding: 10px 25px;
    }
}

.dropdown {
    background-color: #000000;
    border-radius: 46px;
    border: 1px solid #ECECEC;
    font-size: 11px;
    padding: 10px 20px;
    font-weight: 600;
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown span {
    font-weight: bold;
    letter-spacing: 1px;
}

.dropdown .district {
    color: #FC4D0D;
    margin-left: 5px;
}

.dropdown .arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FC4D0D;
    margin-left: 10px;
}

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

.aditional_infor h5 {
    width: 400px;
    padding: 5px 0 5px 50px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #d3d3d3, rgba(47, 47, 47, 0.5));
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    font-size: 22px;

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

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

.aditional_infor textarea {
    background-color: #000000;
    color: #FFFFFF;
    margin-left: 40px;
    border-radius: 8px;
    border: 1px solid #ECECEC;
    height: 157px;
    padding: 10px;

    @media (max-width: 767px) {
        margin: 0 30px;
        height: 73px;
    }

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

.payment {
    display: flex;
    flex-direction: column;
    gap: 15px;

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

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

.payment h5 {
    width: 400px;
    padding: 5px 0 5px 50px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #d3d3d3, rgba(47, 47, 47, 0.5));
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    font-size: 22px;

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

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

.payment_method {
    width: 43%;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;

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

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

.payment_method .pay_online {
    background: linear-gradient(to right, #030303 10%, #d3d3d3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 8px;
}

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

.circle-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.circle-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    transition: 0.3s;
}

.circle-checkbox input:checked+.checkmark {
    background-color: blue;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.circle-checkbox input:checked+.checkmark::after {
    display: block;
}

.circle-checkbox .checkmark::after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    /* Inner dot */
}

.pay_online .text h3 {
    color: white;

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

.pay_online .logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 20%;
}

.pay_online .logo p {
    font-size: 10px;
}

.payment_method .bkash {
    background: linear-gradient(to right, #030303 10%, #d3d3d3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 8px;
}

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

.bkash .text h3 {
    color: white;

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

.bkash .text p {
    color: white;
    font-size: 11px;
}

.bkash .logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 13%;
}

.payment_method .nagad {
    background: linear-gradient(to right, #030303 10%, #d3d3d3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 8px;
}

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

.nagad .text h3 {
    color: white;

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

.nagad .text p {
    color: white;
    font-size: 11px;
}

.nagad .logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 15%;
}

.payment_method .cashondelivay {
    background: linear-gradient(to right, #030303 10%, #d3d3d3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 8px;
}

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

.cashondelivay .text h3 {
    color: white;

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

.right_infor {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;

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

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

.order-table {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 30px 0 10px;

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

.order-header {
    background-color: #FC4D0D;
    text-align: center;
    padding: 15px;
    font-size: 25px;
    font-weight: bold;
    color: white;
    font-weight: 400;

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

.table {
    background: rgba(47, 47, 47, 0.5);
    backdrop-filter: blur(7px);
    box-shadow: inset 0px 7px 32px 7px rgba(255, 255, 255, 0.3608);
    color: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

thead {
    background-color: #2a2a2a;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;

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

thead th {
    padding: 10px;
    text-align: center;

}

tbody td {
    padding: 15px;
    vertical-align: top;
}

.product-img {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;

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

.product-img img {
    max-width: 100%;
    max-height: 100%;
}

.product-details {
    font-size: 14px;

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

.summary-section {
    padding: 15px;

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

.summary-line {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 14px;

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

.note {
    font-size: 11px;
    color: #aaa;

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

.coupon-row {
    display: flex;
    align-items: center;
    margin: 50px 0 20px 0;
}

.apply-btn {
    background: #ff4500;
    border: none;
    padding: 8px 12px;
    color: white;
    font-weight: bold;
    border-radius: 25px 0 0 25px;
    cursor: pointer;

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

.coupon-code {
    background: white;
    color: black;
    padding: 8px 12px;
    border-radius: 0 25px 25px 0;
    font-weight: bold;
    border: none;
    outline: none;

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

.total {
    background: #111;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: 400;

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

.right_img {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .3;

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

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

.process_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process_btn button {
    border: none;
    outline: none;
    background-color: #FF4400;
    padding: 12px 50px;
    font-size: 25px;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    border-radius: 96px;
    box-shadow: 0 6px 14px 0 #F05C27;
    cursor: pointer;
    transition: all .3s;

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

.process_btn button:hover {
    background-color: #FCC6A4;
    font-size: 30px;
}

/* hero 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 */