.cont {
    width: 94%;
    margin: 0 auto;
}

.dropdown-item {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 8px 24px;
    color: #555;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #e5e5e5;
    color: #d1ac4a;
}

/* headings */
@font-face {
    font-family: jakrata;
    src: url(../fonts/jakrata.ttf) format("truetype");
}

/* body font */
@font-face {
    font-family: vietnam;
    src: url(../fonts/VietnamPro.ttf) format("truetype");
}

body {
    font-family: vietnam, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: jakrata, sans-serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* home page services animation crousel css */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move to half to create a seamless effect */
}

.animate-marquee {
    display: inline-block;
    animation: marquee 90s linear infinite;
}