/* import */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --white-color: #231f20;
    --dark-color: #252525;
    --primary-color: #d8e3ef; /*#4f79a7;*//*#4172a7; /*#3b141c; #eef5fd; */
    --secondary-color: #1e2c4b;
    /* --light-gray-color: #f2f2f2; */
    --medium-gray-color: #ccc;

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --border-radius-s: 8px;
    --border-radius-m: 20px;
    --border-radius-circle: 50%;

    --site-max-width: 1300px;
}

ul {
    list-style: none;
}

a {
     text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a.button {
    text-decoration: none;
    color: #231f20;
    padding: 5px 10px;
    background-color: #4172a7;
    border-radius: 5px;
}
a.button:hover {
    color: white;
}

img {
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}
.section-title {
    text-align: center;
    padding: 10px 0 10px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content:"";
    width: 70px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

.section-title-sm::after {
    content:"";
    width: 70px;
    height: 5px;
    display: block;
    /* margin: 10px auto 0; */
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

.section-title-sm {
    /* padding-bottom: 10px; */
    margin: 15px 0;
    text-transform: uppercase;
    font-size: var(--font-size-s);
}

.text-sm {
    /* line-height: 30px; */
}

header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-color) ;
    /* box-shadow: 2px 0px 3px; */
        /* border-bottom: 1px solid #dcb549; */
    /* border-bottom-right-radius: 3%; */
    transition: all 0.5s;
}

.bottom-border {
    /* border-bottom: 2px solid #29102a; */
    box-shadow: 0px 0px 3px;
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

.navbar .nav-logo .logo-text-2 {

    font-weight: 200;
    text-transform: uppercase;
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

#menu-close-button, #menu-open-button {
    display: none;
}

/*  */
.hero-section {
    min-height: 100vh;
    background: var(--primary-color);
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
    text-transform: capitalize;
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero-section .hero-details .contact-us:hover {
    color: var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}

/*  */
.about-section {
    padding: 40px 0;
    /* background: var(--light-pink-color); */
    /* background-image: url("images/backgrund.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.4; */
    position: relative;
}

/* .about-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('images/light gray background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; /* Adjust opacity here *
    z-index: 0;
} */

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-m);
}

.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: left;
    font-size: var(--font-size-m);
}

 .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

 .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

 .social-link-list .social-link:hover {
    color: var(--secondary-color);
}

/*  */
.menu-section {
    color: var(--white-color);
    /* background: var(--dark-color); */
    /* background-color: #32303580; */
    background-color: #eef5fd;
    padding: 30px 0 50px;
}

/* .menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: flex-start;
    justify-content: space-between;
}

.menu-section .menu-list .menu-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 2 - 110px);
    text-transform: capitalize;
}

.menu-section .menu-list .menu-item .menu-image {
    max-width: 53%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
    height: auto;
}

.menu-section .menu-list .menu-item .name {
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.menu-section .menu-list .menu-item .text {
    font-size: var(--font-size-m);
} */

/* .partner-info {
    padding: 5px;
    border-bottom: 1px solid #686a6c;
    margin-bottom: 3px;
    width: 90%;
    margin: auto;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.partner-details {
    display: flex;
    width: 100%;
    
    align-content: center;
    height: 200px;
}

.partner-img {
    display: inline;
    background-color: green;
    height: 100%;
    width: 20%;
}

.partner-img img {
    width: 200px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.partner-desc {
    width: 80%;
    height: 100%;
    padding: 3px;
    display: flex;
    align-content: center;
    justify-content: center;
} */

.partner-info {
    width: 70%;
    margin: auto;
    /* display: flex; */
    /* justify-content: center; */
    border-bottom: 1px solid #4f79a7;
    padding-bottom: 10px;
}

.partner-details {
    display: flex;
    /* width: 100%; */
    align-items: center;
    margin: auto
}

.partner-desc {
    width: 70%;
    padding: 3px;
}

.partner-img {
    width: 30%;
    display: flex;
    align-items: center;
    min-height: 150px;
    justify-content: center;
}

.partner-img img {
    max-width: 100%;
    width: 170px;
    max-height: 135px;
    object-fit: fill;
}

.nard img {
    width: 210px;
    height: 250px;
}

.partner-more {
    /* display: block; */
    width: 7%;
    margin: auto;
}

a.button:hover {
    background-color: #0056b3;
}

.partner-info:last-child {
    border-bottom: none;
}

.contact-section {
    padding-top: 30px;
    background: var(--light-gray-color);
}

.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-container {
    max-width: 1170px;
    margin:auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 50%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    /* background-color: var(--primary-color); */
    background-color: #4f79a7;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.contact-info {
   word-break: break-all;
}

.social-links {
    width: 100%;
}

.social-links .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    margin-right: 20px;
}

.product-table-container {
    background-color: #32303580;
    border-radius: 0.5rem;
    padding: 1rem;
    /* margin-top: 2px; */
}


@media screen and (max-width: 1024px) {
    .menu-section .menu-list {
        gap: 60px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 2 - 60px);
    }
}

@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left:0;
        top:0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background:rgba(0, 0, 0, 0.2);
    }

    #menu-close-button, #menu-open-button {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        color: var(--white-color);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        /* color: var(--dark-color); */
        color: #4d555a;
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description), .about-section .about-details {
        max-width: 100%;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .about-section .section-content {
        gap: 70px;
        flex-direction: column-reverse;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .menu-section .menu-list {
        gap: 30px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 2 - 30px);
    }

    .menu-section .menu-list .menu-item .menu-image {
        max-width: 200px;
    }
}

@media screen and (max-width: 640px) {
    .partner-info {
        width: 80%;
    }

    .partner-details {
        display: flex;
        gap: 10px;
        flex-direction: column;
        margin: auto
    }

    .partner-more {
        width: 7%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

