@font-face {
    font-family: kinkolf;
    src: url(fonts/FontsFree-Net-Kinfolk_Reg.ttf);
    font-display: swap;
}

@font-face {
    font-family: montserrat-light;
    src: url(fonts/Montserrat-Light.otf);
    font-display: swap;
}

@font-face {
    font-family: montserrat-bold;
    src: url(fonts/Montserrat-Bold.otf);
    font-display: swap;
}

@font-face {
    font-family: montserrat-regular;
    src: url(fonts/MontserratAlternates-Regular.otf);
    font-display: swap;
}

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

body {
    overflow-x: hidden;
    position: relative;
}

:root {
    --primary-color: #804e33;
    --secondary-color: #f0e1d9;
    --tertiary-color: black;
    --paragraph-text-family: 'montserrat-light', serif;
    --list-text-family: 'montserrat-bold', serif;
    --heading-text-family: 'kinkolf', serif;
}

::selection {
    background-color: var(--primary-color);
    color: pink;
}

html {
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

.header {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    height: 145px;
    transition: background-color 0.2s linear;
    border-bottom: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
    z-index: 200;
}

.navigation-bar {
    max-width: 1440px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
    margin-inline: auto;
    position: relative;
    z-index: 22;
    background-color: inherit;
}

.sub-links {
    display: none;
    position: absolute;
    bottom: -87px;
    left: -20px;
    text-align: center;
    font-family: var(--paragraph-text-family);
    font-size: 14px;
    min-width: 175px;
    border: 2px solid var(--primary-color);
    z-index: 999999;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.desk-list-hidden {
    display: none;
}

.sub-links hr {
    height: 1px;
    outline: none;
    border: none;
    background: var(--secondary-color);
}

.sub-links .header-products-link a,
.header-products-link a {
    text-decoration: none;
    display: inline-block;
    padding: 5px;
    height: 100%;
    width: 100%;
    font-weight: 600;
    color: var(--secondary-color);
    transition: background-color 0.1s linear, color 0.1s linear,
        border-radius 0.1s linear;
    text-transform: capitalize;
}

.sub-links .header-products-link a:hover,
.header-products-link a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.our-product-list:hover .sub-links {
    display: block;
}

.about-us-page {
    position: relative;
}

.about-us-page .sub-links {
    position: absolute;
    min-width: 175px;
    bottom: -57px;
    left: -43px;
}

.about-us-page:hover .sub-links {
    display: block;
}

.company-name-logo {
    display: none;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 30px;
    position: relative;
}

.anjum-logo-main {
    width: 160px;
    height: 105px;
}

.anjum-logo-name {
    width: 500px;
}

.name-logo-container {
    text-decoration: none;
    margin-top: 40px;
}

.slogan {
    font-family: 'montserrat-regular';
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
    font-size: 20px;
}

.navigation-links {
    display: flex;
    gap: 14px;
    list-style-type: none;
}

.navigation-list {
    height: 50px;
    position: relative;
    font-family: var(--list-text-family);
}

.navigation-list::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid var(--primary-color);
    position: absolute;
    bottom: 6px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity, transform 0.2s linear;
}

.navigation-list:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.navigation-list a,
.navigation-list p {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-family: var(--text-family);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-icons {
    display: none;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.phone-screen-visible {
    display: none;
}

/* loader */

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.loader-image {
    position: relative;
    width: 250px;
    z-index: 100;
}

/* content */

.product-heading {
    font-size: 48px;
    font-family: var(--heading-text-family);
    line-height: 68px;
    text-align: center;
    margin-top: 175px;
    border: 2px solid black;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 800px;
    border-radius: 10px;
    margin-inline: auto;
}

.all-products-container {
    margin-top: 30px;
    max-width: 1440px;
    margin-inline: auto;
    border: 2px solid black;
    min-height: 50vh;
    max-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-sticky .essential-heading {
    margin-top: 175px;
}

.category-products-container {
    display: flex;
    flex-direction: column;
    column-gap: 20px;
}

.category-product {
    display: flex;
    column-gap: 5%;
    height: 400px;
}

.products-image {
    width: 400px;
    height: 90%;
    margin-left: 20px;
    overflow: hidden;
    align-self: center;
}

.products-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s linear;
}

.products-image:hover img {
    transform: scale(1.1);
}

.product-details {
    width: 70%;
    display: flex;
    margin-right: 20px;
    flex-direction: column;
    margin-block: auto;
}

.product-name {
    font-family: var(--paragraph-text-family);
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-description {
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
    font-family: var(--paragraph-text-family);
    color: var(--tertiary-color);
}

.details-inquiry-container {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-around;
}

.product-redirect {
    background-color: inherit;
    width: 250px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    outline: none;
    align-self: center;
}

.product-redirect a {
    text-decoration: none;
    font-family: var(--paragraph-text-family);
    color: var(--primary-color);
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.product-inquiry {
    padding: 10px;
    align-self: flex-end;
    cursor: pointer;
    color: var(--primary-color);
}

.category-product:nth-child(even) {
    background-color: var(--primary-color);
}

.category-product:nth-child(even) .product-name,
.category-product:nth-child(even) .product-inquiry,
.category-product:nth-child(even) .product-description,
.category-product:nth-child(even) .product-redirect a {
    color: var(--secondary-color);
}

.category-product:nth-child(even) .product-inquiry,
.category-product:nth-child(even) .product-redirect a {
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
}

/* inquiry form  */

/* Modal Background */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

#product-inquiry-name {
    color: var(--primary-color);
    font-family: var(--heading-text-family);
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    font-size: 25px;
}

/* Modal Content */
.modal-content {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    margin: 12% auto;
    position: relative;
    animation: slideIn 0.3s ease-in-out;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-container {
    background: inherit;
    margin-inline: auto;
    margin-top: 20px;
    height: 145px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: none;
}

.contact-container h2 {
    text-align: center;
    font-family: var(--heading-text-family);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 8px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--paragraph-text-family);
    color: var(--primary-color);
    font-weight: bold;
    text-transform: capitalize;
    font-size: 14px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    padding: 8px 10px 8px 40px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 14px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.form-group textarea,
.phone-group input {
    padding-left: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(128, 78, 51, 0.5);
}

.form-group img {
    position: absolute;
    top: 70%;
    left: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.form-group .phone-group {
    display: flex;
    gap: 10px;
}

.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}

.iti__country-list {
    max-width: 357px;
    min-width: 250px;
    z-index: 1100;
}

.form-group .phone-group select {
    width: 35%;
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 20px;
}

.form-group .phone-group input {
    width: 65%;
}

input[type='text'],
input[type='email'],
input[type='tel'],
.form-group textarea {
    font-family: var(--paragraph-text-family);
    font-size: 12px;
    color: var(--primary-color);
}

textarea::placeholder,
::placeholder {
    color: var(--primary-color);
    font-size: 12px;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: var(--primary-color);
}

.iti__country-list {
    max-width: 257px;
    min-width: 250px;
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: rgba(128, 78, 51, 0.8);
}

#status {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: var(--paragraph-text-family);
    color: var(--primary-color);
    text-align: center;
}

/* foooter */

footer {
    background-color: var(--primary-color);
    flex-direction: column;
    width: 100%;
    margin-inline: auto;
    margin-top: 20px;
}

.footer-container {
    max-width: 1440px;
    margin-inline: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.upper-footer-div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 43px;
    width: 100%;
}

.footer-logo-heading {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    height: 80px;
    width: 120px;
}

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

.company-name-specific {
    margin-top: 20px;
    font-size: 32px;
    font-family: var(--heading-text-family);
    color: var(--secondary-color);
    text-align: center;
}

.mobile-view-visible {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
}

.footer-links li {
    list-style-type: none;
}

.footer-links li a {
    color: var(--secondary-color);
    font-family: var(--paragraph-text-family);
    font-size: 18px;
    text-decoration: none;
}

.footer-links-list {
    position: relative;
}

.footer-links-list::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.3s linear, transform 0.3s linear;
}

.footer-links-list:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.social-icons {
    margin-top: 15px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    transition: opacity 0.6s linear;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-icons a img {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    opacity: 0.6;
}

.trusted-seller {
    display: block;
    margin-top: 20px;
    text-align: center;
}

.list-seller-button {
    display: none;
}

.horizontal-line {
    width: 100%;
    margin-top: 25px;
    outline: none;
    border: none;
    height: 2px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.reserved-rights {
    margin-top: 10px;
    max-width: 1440px;
    margin-inline: auto;
}

.rights-title {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: var(--paragraph-text-family);
    margin-bottom: 10px;
}

/* media queries */

@media only screen and (min-width: 1080px) and (max-width: 1300px) {
    .header {
        height: 160px;
    }
    .anjum-logo-main {
        height: 70px;
        width: 130px;
    }

    .anjum-logo-name {
        width: 397px;
    }

    .name-logo-container {
        margin-top: 16px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .sub-links {
        min-width: 168px;
    }

    .about-us-page .sub-links {
        left: -43px;
        min-width: 168px;
    }

    /* products */

    .product-heading {
        font-size: 45px;
        line-height: 61px;
    }

    .product-description {
        font-size: 14px;
        line-height: 23px;
    }

    .product-name {
        font-size: 35px;
        line-height: 58px;
    }

    /* product modal */

    .modal-content {
        margin: 10% auto;
        width: 40%;
    }
}

@media only screen and (min-width: 900px) and (max-width: 1079px) {
    /* navbar */
    .header {
        height: 150px;
    }

    .anjum-logo-main {
        width: 110px;
        height: 50px;
    }

    .anjum-logo-name {
        width: 336px;
    }

    .name-logo-container {
        margin-top: -2px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .navigation-list a,
    .navigation-list p {
        font-size: 12px;
    }

    .sub-links {
        min-width: 145px;
        bottom: -76px;
    }

    .about-us-page .sub-links-small-devices {
        bottom: -50px;
        min-width: 145px;
        left: -40px;
    }

    /* content */

    .product-heading {
        font-size: 45px;
        line-height: 61px;
    }

    .product-description {
        font-size: 14px;
        line-height: 23px;
    }

    .product-name {
        font-size: 35px;
        line-height: 40px;
    }

    .products-image {
        width: 377px;
    }

    .modal-content {
        margin: 10% auto;
        width: 40%;
    }

    /* footer */
    .upper-footer-div {
        min-width: 800px;
    }
}

/* this is only for responsive for tablet & greater than that */
@media only screen and (min-width: 850px) and (max-width: 900px) {
    /* navbar */
    .header {
        height: 130px;
    }

    .anjum-logo-main {
        width: 90px;
        height: 30px;
    }

    .anjum-logo-name {
        width: 284.256px;
    }

    .name-logo-container {
        margin-top: 0px;
    }

    .slogan {
        margin-top: -7px;
        font-size: 12px;
    }

    .navigation-list a,
    .navigation-list p {
        font-size: 14px;
    }

    /* content */

    .product-heading {
        font-size: 45px;
        line-height: 61px;
    }

    .category-product {
        justify-content: center;
    }

    .products-image {
        width: 300px;
    }

    .product-name {
        font-size: 30px;
        line-height: 50px;
    }

    .product-description {
        font-size: 16px;
        line-height: 22px;
    }

    .details-inquiry-container {
        gap: 20px;
    }

    .product-details {
        width: 42%;
    }

    .product-name {
        font-size: 29px;
        line-height: 38px;
    }
    .category-product {
        column-gap: 5%;
        height: 350px;
        display: flex;
    }

    .modal-content {
        margin: 24% auto;
    }

    /* footer */
    .upper-footer-div {
        min-width: 820px;
    }
}

/* for tablets */
@media only screen and (max-width: 850px) {
    .header {
        height: 155px;
    }

    .navigation-bar {
        position: relative;
    }

    .navigation-container {
        display: none;
        position: absolute;
        right: 18px;
        background-color: var(--primary-color);
        bottom: -75px;
        z-index: 99999;
        width: 185px;
        padding: 5px 0;
        border-radius: 5px;
        width: 145px;
        bottom: -79px;
    }

    .anjum-logo-main {
        width: 130px;
        height: 70px;
    }

    .name-logo-container {
        margin-top: 16px;
    }

    .anjum-logo-name {
        width: 397px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .navigation-list {
        height: 25px;
        color: var(--secondary-color);
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 15px;
    }

    .phone-screen-visible {
        display: block;
    }

    .navigation-links {
        flex-direction: column;
        gap: 2px;
    }

    .menu-icons {
        display: block;
        cursor: pointer;
    }

    .bar1,
    .bar2,
    .bar3 {
        margin: 5px 0;
    }

    .change .bar1 {
        transform: translate(0, 9px) rotate(-45deg);
    }

    .header-products-link {
        display: block;
    }

    .about-us-page .sub-links {
        bottom: -34.5px;
        left: -175px;
    }

    .sub-links {
        z-index: 999999;
        position: absolute;
        bottom: -65px;
        left: -177px;
    }

    .navigation-list::before {
        display: none;
    }

    .our-product-list:hover .sub-links {
        display: block;
    }

    .sandalwood-links:hover .super-links-sandalwood-oil {
        display: none;
    }

    .mobile-view-left-list-hidden {
        display: none;
    }

    .desk-list-hidden {
        display: block;
    }

    .company-name-logo {
        display: block;
        margin-top: 13px;
    }

    .tablet-view-disable {
        display: none;
    }

    /* content */

    .product-heading {
        font-size: 40px;
        line-height: 50px;
        width: 612px;
        margin-top: 182px;
    }

    .all-products-container {
        border: none;
    }

    .category-product {
        justify-content: center;
    }

    .products-image {
        width: 300px;
    }

    .product-description {
        font-size: 16px;
        line-height: 22px;
    }

    .details-inquiry-container {
        gap: 20px;
    }

    .product-details {
        width: 42%;
    }

    .product-name {
        font-size: 29px;
        line-height: 35px;
    }
    .category-product {
        column-gap: 5%;
        height: 350px;
        display: flex;
    }

    .modal-content {
        margin: 32% auto;
        width: 60%;
    }

    /* footer */

    .horizontal-line {
        margin-top: 18px;
    }

    .company-name-specific {
        margin-top: 18px;
        font-size: 23px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
    }

    .footer-links li a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 730px) {
    /* header */
    .header {
        height: 120px;
    }
    .anjum-logo-main {
        width: 110px;
        height: 50px;
    }

    .anjum-logo-name {
        width: 336px;
    }

    .name-logo-container {
        margin-top: 16px;
    }

    .slogan {
        font-size: 18px;
        margin-top: -9px;
    }

    .bar1,
    .bar2,
    .bar3 {
        margin: 4px 0;
    }

    .change .bar1 {
        transform: translate(0, 7px) rotate(-45deg);
    }

    .navigation-container {
        width: 130px;
        max-width: 140px;
        bottom: -88px;
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 14px;
    }

    .about-us-page .sub-links {
        bottom: -33.5px;
    }

    .sub-links {
        bottom: -63px;
        left: -175px;
    }

    /* content */

    .product-heading {
        width: 555px;
        font-size: 35px;
        line-height: 49px;
        margin-top: 150px;
    }

    .category-product {
        justify-content: center;
        column-gap: 5%;
        height: 350px;
        display: flex;
    }

    .products-image {
        width: 280px;
    }

    .product-name {
        font-size: 25px;
        line-height: 44px;
    }

    .product-description {
        font-size: 13px;
        line-height: 20px;
    }

    .product-redirect {
        width: 190px;
    }

    .details-inquiry-container {
        margin-top: 13px;
    }

    .product-details {
        width: 35%;
    }

    .product-name {
        font-size: 29px;
        line-height: 34px;
    }

    .modal-content {
        margin: 32% auto;
        width: 60%;
    }

    /* footer */

    .upper-footer-div {
        min-width: 579px;
    }

    .company-name-specific {
        margin-top: 11px;
        font-size: 18px;
    }

    .list-heading h3 {
        display: none;
    }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
    /* header */
    .header {
        height: 90px;
    }

    .navigation-bar {
        height: 100%;
    }

    .navigation-container {
        z-index: 99999;
        padding: 2px 0;
        font-size: 12px;
        max-width: 140px;
        bottom: -106px;
        width: 130px;
    }

    .sub-links .header-products-link a,
    .header-products-link a {
        padding: 6px;
        font-size: 12px;
    }

    .about-us-page .sub-links {
        left: -175px;
        bottom: -35px;
    }

    .sub-links {
        bottom: -64px;
        left: -175px;
        z-index: 999999;
        padding: 2px;
    }

    .anjum-logo-main {
        width: 77px;
        height: 49px;
    }

    .anjum-logo-name {
        width: 220px;
    }

    .company-name-logo {
        margin-top: 7px;
        display: block;
    }

    .slogan {
        margin-top: -4px;
        font-size: 9px;
    }

    .bar1,
    .bar2,
    .bar3 {
        margin: 4px 0;
    }

    .change .bar1 {
        transform: translate(0, 7px) rotate(-45deg);
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 14px;
    }

    /* contenet */

    .product-heading {
        min-width: 332px;
        font-size: 24px;
        line-height: 49px;
        max-width: 376px;
        margin-top: 120px;
    }

    .category-product {
        justify-content: center;
        column-gap: 2%;
        height: 280px;
        display: flex;
        align-items: center;
    }

    .products-image {
        width: 183px;
        height: 236px;
    }

    .product-details {
        max-width: 23%;
        margin-right: 20px;
    }

    .details-inquiry-container {
        margin-top: 10px;
    }

    .product-name {
        font-size: 16px;
        line-height: 20px;
    }

    .product-description {
        font-size: 8px;
        line-height: 13px;
    }

    .product-redirect {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 32px;
    }

    .product-redirect {
        padding: 0px;
        font-size: 11px;
    }

    .product-redirect a {
        padding-top: 2px;
        font-size: 11px;
        line-height: 13px;
    }

    .modal-content {
        width: 75%;
        margin: 40% auto;
    }

    #product-inquiry-name {
        font-size: 17px;
    }

    .form-group label {
        font-size: 13px;
    }

    /* footer */

    footer {
        margin-bottom: 0;
        height: 250px;
    }

    .upper-footer-div {
        margin-top: 10px;
    }

    .company-name-specific {
        margin-top: 18px;
        font-size: 20px;
    }

    .mobile-view-visible {
        display: flex;
    }

    .trusted-seller-social-icons {
        display: none;
    }

    .mobile-view-visible {
        margin-top: 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
        transition: opacity 0.6s linear;
    }

    .mobile-view-visible a {
        display: inline-block;
        width: 30px;
        height: 30px;
    }

    .mobile-view-visible a img {
        width: 100%;
        height: 100%;
    }

    .mobile-view-visible a:hover {
        opacity: 0.6;
    }

    .list-seller-button {
        margin-top: 10px;
        display: block;
        width: 80px;
    }

    .list-seller-button .list-trusted-seller img {
        width: 100%;
    }
}

/* design for mobile */
@media only screen and (min-width: 200px) and (max-width: 400px) {
    .header {
        height: 91px;
    }

    .navigation-bar {
        height: 100%;
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 23px;
        height: 4px;
        margin: 3px 0;
    }

    .change .bar1 {
        transform: translate(0, 4px) rotate(-45deg);
    }

    .change .bar3 {
        transform: translate(0, -10px) rotate(45deg);
    }

    .about-us-page .sub-links {
        left: -150px;
        bottom: -34px;
    }

    .navigation-container,
    .mobile-view-left-list-hidden {
        bottom: -95px;
        z-index: 99999;
        width: 116px;
        padding: 2px 0;
        font-size: 10px;
    }

    .about-us-page .sub-links {
        left: -175px;
        bottom: -34px;
    }

    .sub-links {
        bottom: -64px;
        left: -150px;
        z-index: 999999;
        padding: 2px;
        display: none;
        font-size: 10px;
        min-width: 150px;
    }

    .sub-links .header-products-link a,
    .header-products-link a {
        padding: 7px;
        font-size: 10px;
        z-index: 999999;
    }

    .anjum-logo-main {
        width: 60px;
        height: 40px;
    }

    .anjum-logo-name {
        width: 195px;
    }

    .company-name-logo {
        margin-top: 1px;
        display: block;
    }

    .slogan {
        margin-top: -4px;
        font-size: 8px;
    }

    .navigation-container {
        max-width: 140px;
        bottom: -79px;
        width: 130px;
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 14px;
    }

    .navigation-container {
        width: 126px;
        max-width: 140px;
        bottom: -102px;
    }

    .navigation-list a {
        color: var(--secondary-color);
        font-size: 10px;
    }

    /* content */

    .category-product {
        justify-content: center;
        column-gap: 4%;
        height: 201px;
        display: flex;
        align-items: center;
    }

    .product-heading {
        min-width: 301px;
        max-width: 322px;
        font-size: 21px;
        line-height: 41px;
        margin-top: 120px;
    }

    .products-image {
        width: 135px;
        height: 170px;
    }

    .product-details {
        max-width: 23%;
        margin-right: 25px;
    }

    .details-inquiry-container {
        margin-top: 8px;
    }

    .product-name {
        font-size: 16px;
        line-height: 20px;
    }

    .product-description {
        font-size: 7.5px;
        line-height: 13px;
    }

    .product-redirect {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 22px;
    }

    .product-redirect {
        padding: 0px;
        font-size: 7.5px;
    }

    .product-redirect a {
        padding-top: 4px;
        font-size: 7px;
        line-height: 10px;
    }

    /* modal */

    .modal-content {
        width: 80%;
        margin: 40% auto;
    }

    #product-inquiry-name {
        font-size: 18px;
    }

    .form-group label {
        font-size: 13px;
    }

    /* footer */

    footer {
        margin-top: 30px;
        height: 250px;
    }

    .footer-logo {
        height: 62px;
        width: 100px;
    }
    .list-heading {
        margin-top: 20px;
    }

    .list-heading h3 {
        display: none;
    }

    .upper-footer-div {
        margin-top: 10px;
    }

    .company-name-specific {
        margin-top: 18px;
        font-size: 16px;
    }

    .mobile-view-visible {
        display: flex;
    }

    .trusted-seller-social-icons {
        display: none;
    }

    .mobile-view-visible {
        margin-top: 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
        transition: opacity 0.6s linear;
    }

    .mobile-view-visible a {
        display: inline-block;
        width: 25px;
        height: 25px;
    }

    .mobile-view-visible a img {
        width: 100%;
        height: 100%;
    }

    .mobile-view-visible a:hover {
        opacity: 0.6;
    }

    .list-seller-button {
        margin-top: 10px;
        display: block;
        width: 80px;
    }

    .list-seller-button .list-trusted-seller img {
        width: 100%;
    }

    .trusted-seller-social-icons {
        display: none;
    }

    .footer-links li a {
        font-size: 11px;
    }

    .reserved-rights {
        margin-top: 10px;
    }

    .rights-title {
        font-size: 10px;
        line-height: 18px;
    }

    .social-icons {
        margin-top: 6px;
    }
}
