/* font awesome icon cdn */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

@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-image: url("./images/about/Rectangle 15.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;

    @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: 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) {
        gap: 50px;
    }

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

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

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

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

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

.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: 25%;
        display: block;
    }

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

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

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

.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: 0 auto;
    overflow-x: hidden;

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

.hero_contianer {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;

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

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

.hero_container_img {
    width: 100%;
}

.hero_container_img .img1 {
    width: 100%;

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

.hero_container_img .img2 {
    display: none;

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

/* hero section ends */

/* nfc business card starts */

.nfc_business_card {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;

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

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

.nfc_business_card {
    width: 1100px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    @media (max-width: 768px) {
        width: 95%;
        margin: 50px auto;
        gap: 80px;
    }

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

.nfc_business_card_img {
    width: 20%;

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

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

.nfc_business_card_img>img {
    width: 100%;
}

.nfc_business_card_text {
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media (max-width: 768px) {
        gap: 35px;
    }
}

.nfc_business_card_text>h5 {
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    line-height: 50px;

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

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 32px;
        line-height: 35px;
    }
}

.nfc_business_card_text>p {
    color: #C9C9C9;
    text-align: center;
    font-size: 14px;

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

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

/* nfc business card ends */

/* our section starts */

.our {
    width: 100%;
    margin: 180px auto;
    overflow-x: hidden;

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

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

.our_container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

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

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

.our_container>h5 {
    font-size: 25px;
    color: #FFFFFF;
    text-align: center;

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

.our_container>p {
    color: #C9C9C9;
    text-align: center;
    font-size: 14px;

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

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

/* our section ends */

/* intro team section starts */

.intro_team {
    width: 100%;
    margin: 200px auto;
    overflow-x: hidden;

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

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

.intro_team_container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;

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

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

.intro_team_text {
    text-align: center;
}

.intro_team_text>h5 {
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    line-height: 45px;

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

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

.intro_team_member {
    display: flex;
    flex-direction: column;
    gap: 200px;
}

.member {
    display: flex;
    gap: 26px;

    @media (max-width: 768px) {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.member:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;

    @media (max-width: 768px) {
        text-align: center;
        flex-direction: column;
    }

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

.member:nth-child(even) .member_text>p {
    text-align: end;
    margin-left: auto;

    @media (max-width: 768px) {
        text-align: center;
        margin-left: 0;
    }

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

.member_img {
    width: 60%;
}

.member_img>img {
    width: 100%;
}

.member_text {
    display: flex;
    flex-direction: column;

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

.member_text>h5 {
    font-size: 30px;
    color: #FFFFFF;
    letter-spacing: 1px;

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

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

.member_text>h6 {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;

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

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

.member_text>p {
    width: 90%;
    margin-top: 15px;
    color: #7E7E7E;
    text-align: start;
    font-size: 16px;

    @media (max-width: 768px) {
        font-size: 14px;
        text-align: center;
    }
}

/* intro team section ends */


/* our commitment section starts */

.our_commitment {
    width: 100%;
    margin: 280px auto;
    overflow-x: hidden;

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

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

.our_commitment_container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

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

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

.our_commitment_container>h5 {
    font-size: 27px;
    color: #FFFFFF;
    text-align: center;

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

.our_commitment_container>p {
    color: #7E7E7E;
    text-align: center;
    font-size: 14px;

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

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

/* our commitment section ends */


/* our vision section starts */

.our_vision {
    width: 100%;
    margin: 130px auto;
    overflow-x: hidden;

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

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

.our_vision_container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;

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

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

.our_vision_container>.arrowdot {
    display: none;

    @media (max-width: 768px) {
        display: block;
        width: 40%;
        margin: 0 auto;
    }

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

.our_vision_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

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

.our_vision_header>h5 {
    font-size: 27px;
    color: #FFFFFF;
    text-align: center;

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

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

.our_vision_header>p {
    color: #7E7E7E;
    text-align: center;
    font-size: 14px;

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

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

.our_vision_all_card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
}

.our_vision_card {
    width: 260px;
    height: 280px;
    overflow-x: hidden;
    background-color: #D6D6D6;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.our_vision_card:nth-child(3) {
    @media (max-width: 768px) {
        display: none;
    }

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

.our_vision_card:nth-child(4) {
    @media (max-width: 768px) {
        display: none;
    }
}

.our_vision_card:nth-child(5) {
    @media (max-width: 768px) {
        display: none;
    }
}

.our_vision_card>h5 {
    color: #363636;
    font-size: 20px;
    margin-top: 5px;

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

.card_contianer {
    position: absolute;
    bottom: 0;
    height: 230px;
    background-color: #202020;
    color: #C9C9C9;
    font-size: 13px;
    line-height: 30px;
    padding: 15px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #D6D6D6;

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

/* our vision section ends */

/* join & contact us starts */

.join_contact {
    width: 100%;
    margin: 150px auto;
    overflow-x: hidden;

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

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

.join_contact_container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 90px;

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

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

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

.join_us>h5 {
    font-size: 28px;
    color: #FFFFFF;
    text-align: start;

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

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

.join_us>p {
    color: #7E7E7E;
    text-align: start;
    font-size: 14px;

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

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

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

.contact_us>h5 {
    font-size: 28px;
    color: #FFFFFF;
    text-align: start;

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

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

.contact_us>p {
    color: #7E7E7E;
    text-align: start;
    font-size: 14px;

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

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

.contact_us>button {
    width: 10%;
    background-color: #B6B6B6;
    padding: 10px 20px;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;

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

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

/* join & contact us ends */


/* our values section starts */

.our_values {
    width: 100%;
    margin: 150px auto;
    overflow-x: hidden;

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

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

.our_values_container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;

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

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

.our_values_headtext {
    text-align: center;
}

.our_values_headtext>h5 {
    font-size: 28px;
    color: #FFFFFF;

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

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

.our_values_content {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.our_values_content .self_start {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.self_start>h5 {
    font-size: 28px;
    color: #FFFFFF;
    text-align: start;
    font-weight: 500;

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

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

.self_start>p {
    color: #7E7E7E;
    text-align: start;
    font-size: 14px;

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

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

.our_values_content .establish {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.establish>h5 {
    font-size: 28px;
    color: #FFFFFF;
    text-align: start;
    font-weight: 500;

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

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

.establish>p {
    color: #7E7E7E;
    text-align: start;
    font-size: 14px;

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

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

.establish>b {
    color: #C9C9C9;
    font-size: 13px;
}

.our_values_content .respect {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.respect>h5 {
    font-size: 28px;
    color: #FFFFFF;
    text-align: start;
    font-weight: 500;

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

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

.respect>p {
    color: #7E7E7E;
    text-align: start;
    font-size: 15px;

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

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

.respect .respect_text {
    color: #C9C9C9;
    font-weight: 400;
    font-size: 15px;
    margin-top: 50px;
}

/* our values section ends */

/* event award section  starts */

.event_award {
    width: 100%;
    margin: 150px auto;
    overflow-x: hidden;

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

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

.event_award_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;

    @media (max-width: 768px) {
        margin-top: 0;
        gap: 70px;
    }

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

.event_award_heading {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

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

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

.event_award_heading .img {
    width: 7%;

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

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

.event_award_heading .img img {
    width: 100%;
}

.event_award_heading>h5 {
    font-size: 30px;
    color: #FFFFFF;
    text-align: center;

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

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

.event_award_text {
    width: 1100px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;

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

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

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

.text_img>img {
    width: 3%;

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

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

.text_img>h5 {
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 500;

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

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

.event_award_text>p {
    color: #C9C9C9;
    font-weight: 400;
    font-size: 14px;

    @media (max-width: 768px) {
        font-size: 12px;
        margin-left: 40px;
    }

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

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

    @media (max-width: 768px) {
        margin-left: 40px;
    }
}

.event_award_img>img:nth-child(1) {
    width: 280px;

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

.event_award_img>img:nth-child(2) {
    width: 280px;

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

.event_award_img>img:nth-child(3) {
    width: 190px;

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

.event_award_img>img:nth-child(4) {
    width: 190px;

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

.event_award_img>img:nth-child(5) {
    width: 280px;

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

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

.event_award_container>.arrowdot {
    display: none;

    @media (max-width: 768px) {
        display: block;
        width: 40%;
        margin: 0 auto;
    }

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

.box_images {
    width: 900px;
    margin: 0 auto;
    background: radial-gradient(circle at center, #aca8a86c 0%, #afa5a5 100%);
    box-shadow: inset 0 0 15px rgb(241, 233, 233);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 30px;

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

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.images {
    display: flex;
    justify-content: space-around;
}

/* event award section  ends */

/* intro card section starts */

.intro_card_limit {
    width: 100%;
    margin: 150px auto;
    overflow-x: hidden;

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

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

.intro_card_limit_container {
    width: 1100px;
    margin: 0 auto;
    margin-top: 90px;

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

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

.intro_card_limited {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.intro_card_limited>h5 {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 600;

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

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

.contact-box {
    width: 650px;
    color: white;

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

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

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    color: #FC4D0D;
    font-size: 18px;
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

.label {
    font-weight: bold;
    margin-right: 10px;
    color: white;
    text-transform: uppercase;
}

.value {
    color: #C9C9C9;
    flex: 1;
    font-size: 13px;

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

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

.office_location {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.office_location_head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 600;

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

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

.office_location_img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
}

.office_location_img>img {
    width: 100%;
}

.office_location_img>button {
    background-color: #414141;
    font-size: 15px;
    color: #FFFFFF;
    border: none;
    outline: none;
    padding: 15px 50px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;

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

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

/* intro card section ends */


/* footer section starts */

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

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

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

.footer_logo {
    width: 1100px;
    margin: 0 auto;
    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_logo img {
    width: 20%;
    border-bottom: .5px solid #504b4b51;
    padding: 40px 0;

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

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

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