@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

body {
    font-family: "Instrument Sans", sans-serif;
    font-style: normal;
}

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

a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    text-align: justify;
    margin-bottom: 0px;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4 {
    margin-bottom: 0px;
}

:root {

    --primary-black: #0b0d0c;
    --black: #000;
    --white: #fff;


    --light-green: #72AF9F;
    --green: #568F80;
    --dark: #2B2B2B;
    --text: #444444;
}

/* section css */
section {
    padding: 50px 0px;
}



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

    section {
        padding: 20px 0px;
    }


}

@media screen and (max-width: 575px) {
    .section-head .heading {
        font-size: 14px;
    }
}

/* section css */

/* footer css */
.footer {
    padding: 50px 0px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 20px 0px;
    }
}

/* footer css */


/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
    padding: 5px 0px;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
    height: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--green);
    font-size: 20px;
    font-weight: 500;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--white);
    background: var(--dark);
    border-radius: 5px;
}



.navbar-light .navbar-toggler {
    font-size: 1rem;
    border-color: black;
}

.navbar-light .navbar-toggler:focus {
    border: 1px solid var(--green);
    box-shadow: none;
}

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

.nav-btns a {
    display: inline-block;
    color: var(--white);
    background: var(--primary-black);
    padding: 6px 20px;
    font-size: 18px;
    font-weight: 500px;
    border-radius: 50px;
    transition: .4s ease-in-out;
}

.nav-btns a:hover {
    background: var(--green);
}


/* responsive navbar */

@media screen and (max-width: 1400px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .navbar .logo {
        height: 80px;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .nav-btns a {
        padding: 5px 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .navbar .logo {
        height: 70px;
    }

    .navbar .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

    .nav-btns {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px;
    }

    .nav-btns a {
        padding: 5px 10px;
        font-size: 14px;
    }


}

@media screen and (max-width: 767px) {

    .navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        justify-content: start;
        margin-top: 20px;
    }


}


.dropdown .dropdown-menu {
    display: block;
    position: absolute;
    border: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown .dropdown-menu li {
    font-size: 18px;
    padding: 10px 5px;
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li a {
    color: var(--black);
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:hover {
    background: var(--blue);
}

.dropdown .dropdown-menu li:hover a {
    color: var(--white);
}

.dropdown .dropdown-menu .dropdown-item {
    background: none;
}

@media screen and (max-width: 1400px) {
    .dropdown .dropdown-menu li {
        font-size: 16px;
        padding: 5px 2px;
    }
}

@media screen and (max-width: 991px) {
    .dropdown .dropdown-menu {
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown .dropdown-menu li {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown .dropdown-menu li {
        font-size: 16px;
        padding: 5px 2px;
        transition: 0.2s ease-in-out;
    }
}


/* --------------- end of navbar css here ------------- */



/* --------------- banner css start here ---------------- */

.carousel-indicators {
    margin-bottom: 5px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: none;
    background: var(--gold) !important;
}

.carousel-indicators button {
    border-radius: 50px;
}

@media screen and (max-width: 767px) {
    .carousel-indicators [data-bs-target] {
        width: 5px;
        height: 5px;
    }
}

/* --------------------- end of banner css here --------------------- */





/* ---------------- down-bar css start here --------------- */

.down-bar {
    padding: 5px 0;
    background: var(--black);
    color: #fff;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scrolling-track {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scrolling-wrapper {
    display: flex;
    animation: scroll-left 20s linear infinite;
    width: fit-content;
}

.scrolling-inner {
    display: flex;
    gap: 100px;
}

.taste {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 16px;
}

.taste i {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--green);
    border-radius: 50px;
    padding: 4px;
    width: 30px;
    height: 30px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* responsive css */

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

    .taste img {
        padding: 2px;
        width: 18px;
    }
}

/* responsive css */

/* --------------------- down-bar css ends here ------------------- */








/* ----------------------- about us section css start here ------------------------ */

.dfd-about-section {
    position: relative;;
    overflow: hidden;
}

/* Section Tag */

.dfd-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #e8f3f0;
    color: #568f80;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.dfd-section-tag i {
    font-size: 14px;
}


/* Heading */

.dfd-about-content h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.dfd-about-content h2 span {
    display: block;
    color: #568f80;
    font-family: Georgia, serif;
    font-style: italic;
}


/* Paragraph */

.dfd-about-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.dfd-about-content .dfd-about-intro {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
    font-weight: 500;
}

.dfd-about-content strong {
    color: #568f80;
}


/* Feature Boxes */

.dfd-about-feature {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #c3d4cf;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.dfd-about-feature:hover {
    transform: translateY(-5px);
    border-color: #72af9f;
    box-shadow: 0 12px 30px rgba(86, 143, 128, 0.12);
}


/* Feature Icon */

.dfd-feature-icon {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f3f0;
    color: #568f80;
    border-radius: 12px;
    font-size: 18px;
}

.dfd-about-feature h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
}

.dfd-about-feature p {
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    margin-bottom: 0px;
}


/* Button */

.dfd-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 14px 24px;
    background: #568f80;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dfd-about-btn i {
    transition: transform 0.3s ease;
}

.dfd-about-btn:hover {
    background: #2b2b2b;
    color: #ffffff;
}

.dfd-about-btn:hover i {
    transform: translateX(5px);
}


/* image */

.dfd-about-visual {
    position: relative;
    padding: 20px;
}

.dfd-visual-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(43, 43, 43, 0.15);
}

.dfd-visual-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dfd-visual-main:hover img {
    transform: scale(1.04);
}


/* Floating Card */

.dfd-floating-card {
    position: absolute;
    z-index: 4;
    left: -5px;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(43, 43, 43, 0.15);
}

.dfd-floating-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #72af9f;
    color: #ffffff;
    border-radius: 12px;
}

.dfd-floating-card strong {
    display: block;
    color: #2b2b2b;
    font-size: 14px;
}

.dfd-floating-card small {
    display: block;
    color: #777;
    font-size: 11px;
    margin-top: 3px;
}


/* Decorative Circle */

.dfd-decoration-circle {
    position: absolute;
    width: 170px;
    height: 170px;
    right: -25px;
    top: -25px;
    border-radius: 50%;
    background: #e8f3f0;
    z-index: 1;
}


/* responsive */

@media screen and (max-width: 1200px) {

    .dfd-about-content h2 {
        font-size: 24px;
    }

}

@media screen and (max-width: 991px) {

    .dfd-about-content h2 {
        font-size: 28px;
    }

    .dfd-about-visual {
        max-width: 600px;
        margin: 30px auto 0;
    }

    .dfd-visual-main img {
        height: 500px;
    }


    .dfd-decoration-circle {
        width: 100px;
        height: 100px;
        right: 5px;
        top: -15px;
    }

}


@media screen and (max-width: 767px) {

    .dfd-about-content h2 {
        font-size: 22px;
    }

    .dfd-about-content h2 span {
        display: inline;
    }


    .dfd-about-content .dfd-about-intro {
        font-size: 15px;
    }

    .dfd-about-feature {
        padding: 10px;
    }

    .dfd-feature-icon {
        min-width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .dfd-about-feature h5 {
        font-size: 14px;
    }

    .dfd-about-feature p {
        font-size: 12px;
    }

    .dfd-visual-main img {
        height: 400px;
    }

    .dfd-floating-card {
        left: 0;
        bottom: 30px;
        padding: 12px 15px;
    }

    .dfd-about-btn {
    margin-top: 15px;
    padding: 8px 16px;
}


}


@media screen and (max-width: 575px) {

    .dfd-about-feature {
        gap: 10px;
    }

    .dfd-visual-main {
        border-radius: 20px;
    }

    .dfd-visual-main img {
        height: 350px;
    }

    .dfd-floating-card {
        max-width: 220px;
    }

}

/* ------------------ end of about us section css here ---------------------- */




/* --------------------- mission vision section css start here --------------------- */

.dfd-mission-vision {
    background: #dae4e1e0;
}


/* section heading */

.dfd-mv-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #e8f3f0;
    color: #568f80;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.dfd-mv-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.dfd-mv-title span {
    color: #568f80;
    font-family: Georgia, serif;
    font-style: italic;
}

.dfd-mv-subtitle {
    max-width: 720px;
    margin: auto;
    color: #707070;
    line-height: 1.8;
}


/* main cards */

.dfd-mv-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dfd-vision-card {
    background: #e8f3f0;
    border: 1px solid #d4e8e3;
}

.dfd-mission-card {
    background: #faf9f6;
    border: 1px solid #ece8df;
}

.dfd-mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(43, 43, 43, 0.12);
}


/* card header */

.dfd-mv-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.dfd-mv-icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #568f80;
    color: #ffffff;
    border-radius: 18px;
    font-size: 25px;
    box-shadow: 0 8px 20px rgba(86, 143, 128, 0.25);
}

.dfd-mv-label {
    display: block;
    color: #568f80;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.dfd-mv-card h3 {
    color: #2b2b2b;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}


/* card content */

.dfd-mv-card>p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.dfd-mv-card>p:last-of-type {
    margin-bottom: 0;
}


/* card bottom */

.dfd-mv-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(86, 143, 128, 0.18);
}

.dfd-mv-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.65);
    color: #568f80;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.dfd-mission-card .dfd-mv-bottom span {
    background: #e8f3f0;
}

.dfd-mv-bottom i {
    font-size: 12px;
}


/* bottom highlight */

.dfd-mv-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    background: #2b2b2b;
    border-radius: 20px;
}

.dfd-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
}

.dfd-highlight-icon {
    min-width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #568f80;
    color: #ffffff;
    border-radius: 12px;
}

.dfd-highlight strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 3px;
}

.dfd-highlight small {
    display: block;
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.4;
}


/* responsive */

@media screen and (max-width: 991px) {

    .dfd-mv-title {
        font-size: 28px;
    }

    .dfd-mv-card {
        padding: 30px;
    }

    .dfd-mv-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and (max-width: 767px) {

    .dfd-mv-title {
        font-size: 22px;
    }

    .dfd-mv-subtitle {
        font-size: 14px;
    }

    .dfd-mv-card {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .dfd-mv-card-top {
        gap: 13px;
    }

    .dfd-mv-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 20px;
    }

    .dfd-mv-card h3 {
        font-size: 18px;
    }

    .dfd-mv-card>p {
        line-height: 1.75;
    }

    .dfd-mv-highlights {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}


@media screen and (max-width: 575px) {

    .dfd-mv-card-top {
        align-items: center;
    }


    .dfd-mv-label {
        font-size: 10px;
    }

    .dfd-mv-bottom {
        gap: 7px;
    }

    .dfd-mv-bottom span {
        font-size: 10px;
    }
}

/* ----------------------- end of mission vision section css here ----------------------- */




/* ----------------------- why choose us section css start here ---------------------- */

.dfd-why-section{
    position: relative;
    overflow: hidden;
}

/* section header*/

.dfd-why-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #e8f3f0;
    color: #568f80;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.dfd-why-title {
    margin: 0 0 17px;
    color: #2b2b2b;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.dfd-why-title span {
    display: block;
    color: #568f80;
    font-family: Georgia, serif;
    font-style: italic;
}

.dfd-why-description {
    max-width: 720px;
    margin: auto;
    color: #707070;
    font-size: 15px;
    line-height: 1.8;
}


/* why choose us card */

.dfd-why-card {
    position: relative;
    height: 100%;
    padding: 25px 20px;
    background: #ffffff;
    border: 1px solid #c4cecb;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s ease;
}


/* CARD HOVER */

.dfd-why-card:hover {
    transform: translateY(-7px);
    border-color: #72af9f;
    box-shadow: 0 18px 40px rgba(86, 143, 128, 0.322);
}


/* icon */

.dfd-why-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4e2de;
    color: #568f80;
    border-radius: 18px;
    font-size: 25px;
    transition: all 0.35s ease;
}

.dfd-why-card:hover .dfd-why-icon {
    background: #568f80;
    color: #ffffff;
    transform: translateY(-3px);
}


/* heading */

.dfd-why-card h4 {
    margin: 0 0 12px;
    color: #2b2b2b;
    font-size: 18px;
    font-weight: 700;
}


/* paragraph */

.dfd-why-card p {
    text-align: center;
    color: #707070;
    line-height: 1.8;
}


/* suble decoration */

.dfd-why-card::after {
    content: "";
    position: absolute;

    width: 70px;
    height: 70px;

    right: -35px;
    bottom: -35px;

    background: #e8f3f0;
    border-radius: 50%;

    opacity: 0;
    transition: all 0.4s ease;
}

.dfd-why-card:hover::after {
    opacity: 0.7;
}


/* responsive */

@media screen and (max-width: 1200px) {
     .dfd-why-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 991px) {

    .dfd-why-title {
        font-size: 28px;
    }

    .dfd-why-card {
        padding: 20px 15px;
    }

}


@media screen and (max-width: 767px) {


    .dfd-why-title {
        font-size: 22px;
    }

    .dfd-why-description {
        font-size: 14px;
    }

    .dfd-why-card {
        padding: 28px 22px;
        border-radius: 17px;
    }

    .dfd-why-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        border-radius: 16px;
    }

    .dfd-why-card h4 {
        font-size: 16px;
    }

}

@media screen and (max-width: 575px) {

    .dfd-why-tag {
        font-size: 11px;
        padding: 7px 15px;
    }

    .dfd-why-card {
        padding: 25px 20px;
    }

}

/* ----------------------- end of why choose us section css here --------------------- */



/* ---------------- footer css start here ----------------- */

.dfd-footer {
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: #fff;
    padding: 75px 0 0;
}


/* footer about */

.dfd-footer-about {
    position: relative;
    z-index: 2;
}

.dfd-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    text-decoration: none;
}

.dfd-footer-logo img {
    height: 150px;
}


/* Description */

.dfd-footer-about>p {
    max-width: 390px;
    margin: 0 0 25px;
    color: #ffffffad;
    line-height: 1.8;
}


/* social icons */

.dfd-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dfd-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(114, 175, 159, 0.45);
    border-radius: 50%;
    color: #72AF9F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dfd-social a:hover {
    background: #72AF9F;
    border-color: #72AF9F;
    color: #fff;
    transform: translateY(-4px);
}


/* footer headings */

.dfd-footer-links {
    position: relative;
    z-index: 2;
}

.dfd-footer-links h5 {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 25px;
    padding-bottom: 11px;
}

.dfd-footer-links h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 4px;
    background: #72AF9F;
    border-radius: 5px;
}


/* footer links */


.dfd-footer-links ul li {
    margin-bottom: 12px;
}

.dfd-footer-links ul li a {
    position: relative;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dfd-footer-links ul li a::before {
    content: "›";
    margin-right: 8px;
    color: #72AF9F;
    transform: translateX(-5px);
    display: inline-block;
    transition: all 0.3s ease;
}

.dfd-footer-links ul li a:hover {
    color: var(--green);
}

.dfd-footer-links ul li a:hover::before {
    transform: translateX(0);
}


/* contact */

.dfd-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.dfd-contact-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(114, 175, 159, 0.12);
    border: 1px solid rgba(114, 175, 159, 0.25);
    color: var(--green);
    font-size: 13px;
}

.dfd-contact-item strong {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;

    margin-bottom: 3px;
}

.dfd-contact-item p {
    color: #ffffffb3;
    line-height: 1.6;
}

.dfd-contact-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;

    transition: 0.3s ease;
}

.dfd-contact-item a:hover {
    color: #72AF9F;
}


/* footer bottom */

.dfd-footer-bottom {
    position: relative;
    margin-top: 55px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dfd-footer-bottom p {
    color: rgba(255, 255, 255, 0.50);
}

.dfd-footer-bottom p span {
    color: #72AF9F;
}


/* Bottom links */

.dfd-bottom-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dfd-bottom-menu a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: 0.3s ease;
}

.dfd-bottom-menu a:hover {
    color: #72AF9F;
}

.dfd-bottom-menu span {
    width: 4px;
    height: 4px;
    background: #72AF9F;
    border-radius: 50%;
}


/* responsive css */

@media screen and (max-width: 991px) {

    .dfd-footer {
        padding-top: 60px;
    }

    .dfd-footer-bottom {
        margin-top: 40px;
    }

}

@media screen and (max-width: 767px) {

    .dfd-footer {
        padding-top: 50px;
    }

    .dfd-footer-logo img {
        width: 170px;
    }

    .dfd-footer-about>p {
        max-width: 100%;
    }

    .dfd-footer-links {
        margin-top: 10px;
    }

    .dfd-footer-bottom {
        flex-direction: column;
        text-align: center;

        margin-top: 30px;
        padding: 18px 0;
    }

    .dfd-bottom-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

}

@media screen and (max-width: 480px) {

    .dfd-footer {
        padding-top: 45px;
    }

    .dfd-footer-logo img {
        width: 155px;
    }

    .dfd-footer-links h5 {
        font-size: 16px;
    }

    .dfd-footer-links ul li a,
    .dfd-contact-item p,
    .dfd-contact-item a {
        font-size: 13px;
    }

    .dfd-social a {
        width: 37px;
        height: 37px;
    }
}


/* ----------------- end of footer css here -------------- */