/* 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-color: #101010;

    @media (max-width: 768px) {
        width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
        background-image: url("./images/security/Rectangle\ 855.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
}

/* 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: #000000;
    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: 70px auto;
    overflow-x: hidden;

    @media (max-width: 767px) {
        width: 100%;
        margin: 50px auto;
        background-image: url("./images/security/Rectangle 852.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 50px auto;
        background-image: url("./images/security/Rectangle 852.png");
        background-repeat: no-repeat;
        background-position: center center;
        height: 90vh;
        background-size: cover;
    }
}

.hero_contianer {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;

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

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

.hero_contianer>img {
    width: 30%;
    position: absolute;
    right: 120px;
    top: 80px;

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

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

.hero_container_text {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 15px;

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

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

.hero_container_text>p {
    background: linear-gradient(to right, #EBEBEB, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 19px;
    font-weight: 400;


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

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

.hero_container_text>h5 {
    font-size: 120px;
    font-weight: 700;
    line-height: 90px;

    @media (max-width: 767px) {
        font-size: 70px;
        line-height: 60px;
    }

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

.hero_container_text>h5>span:nth-child(1) {
    background: linear-gradient(to right, #FEB923, #FC510F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_container_text>h5>span:nth-child(2) {
    background: linear-gradient(to bottom, #eeeeee, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;

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

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

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

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

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

.hero_container_img>img {
    width: 52%;

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

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

/* hero section ends */

/* scurity section starts */

.security {
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: hidden;
    background-image: url('./images/security/Rectangle\ 852.png');
    background-repeat: no-repeat;
    background-position: center;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 767px) {
        background-image: none;
        margin: 50px auto;
        padding: 60px 0;
        height: 100%;
    }

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

.security_container {
    width: 100%;
    margin: 0 auto;
    background: rgba(35, 35, 35, 0.475);
    backdrop-filter: blur(10px);

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

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

.security_box {
    width: 100%;
    margin: 0 auto;
    padding: 15px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 10px 0;
    background: rgb(35, 35, 35, 0.8);
    backdrop-filter: blur(10px);

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

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

.endcryption {
    /* width: 556px; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.endcryption>img {
    width: 20%;

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

.endcryption>h5 {
    color: #FFFFFF;
    font-size: 24px;

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

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

.endcryption>p {
    color: #6E6E6E;
    font-size: 14px;

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

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

.ssl_security {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.ssl_security>img {
    width: 30%;

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

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

.ssl_security>h5 {
    color: #FFFFFF;
    font-size: 24px;

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

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

.ssl_security>p {
    color: #6E6E6E;
    font-size: 14px;

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

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

.firewall {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.firewall>img {
    width: 30%;

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

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

.firewall>h5 {
    color: #FFFFFF;
    font-size: 24px;

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

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

.firewall>p {
    color: #6E6E6E;
    font-size: 14px;

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

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

.hosting {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.hosting>img {
    width: 25%;

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

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

.hosting>h5 {
    color: #FFFFFF;
    font-size: 24px;

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

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

.hosting>p {
    color: #6E6E6E;
    font-size: 14px;

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

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

/* scurity section ends */

/* security status section starts */

.security_status {
    width: 100%;
    margin: 120px auto;
    overflow-x: hidden;

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

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

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

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

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

.security_status_infor {
    width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;

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

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

.security_status_infor>h5 {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}

.status_container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.status_item {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.status_title {
    color: #CFCFCF;
    font-weight: 400;
    font-size: 22px;
}

.status_desc {
    color: #444444;
    font-size: 14px;
}

.security_status_button {
    display: flex;
    align-items: center;
    justify-content: space-between;

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

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

.security_status_button>button {
    background: linear-gradient(to right, #6e6e6e, #57575773);
    border: none;
    outline: none;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 40px;
    border-radius: 25px;
    border: 1px solid #434343;
}

/* security status section ends */


/* contact form section starts */

.contact_form {
    width: 100%;
    margin: 110px auto;

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

.contact_form_container {
    width: 900px;
    margin: 0 auto;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    gap: 30px;

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

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

.contact_form_head h5 {
    padding: 12px 30px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 400;

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

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

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

.form_email {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_email label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.form_email input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.first_last_name {
    display: flex;
    align-items: center;
    justify-content: space-between;

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

.first_name {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

.first_name label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.first_name input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.last_name {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

.last_name label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.last_name input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.job_company_name {
    display: flex;
    align-items: center;
    justify-content: space-between;

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

.job_titel {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

.job_titel label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.job_titel input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.company_name {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

.company_name label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.company_name input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.phone_number {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.phone_number>.phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.phone select {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
    color: #FFFFFF;

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

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

.phone_number input {
    width: 75%;
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;

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

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

.quantity_aboutus {
    display: flex;
    align-items: center;
    justify-content: space-between;

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

.quantity_aboutus .quantity {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

.quantity label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.quantity input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
    color: #FFFFFF;
}

.quantity_aboutus .aboutus {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

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

.aboutus label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

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

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

.aboutus select {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
    color: #FFFFFF;
}

.submit_button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.submit_button>button {
    padding: 10px 40px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(to bottom, #ff9966, #ff5e62);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* contact form 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 */