:root {
    --border-radius: 0.4rem;
}
html {
    scroll-behavior: smooth;
}
.flat-btn,
.desktop-menu-btn,
.dmenu-close .desktop-menu-btn,
.mobile-menu-btn,
.about-img img,
.work-box,
.testimonial-box,
.sent-btn input,
.gmap iframe {
    border-radius: var(--border-radius);
}
.desktop-menu-btn, .mobile-menu-btn {
    margin: 0.5rem -0.5rem;
}
.dmenu-close .desktop-menu-btn {
    left: -80px;
}
.work-box img{
    width:100%;
}
ul#menu-primary li a {
    font-size: unset;
}
.flat-btn {
    background-color: #c1b696;
    font-size: 14px;
    line-height: 14px;
    padding: 15px 25px;
}
.service-img {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.service-disc {
    background-color:unset;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
.about-img{
    display:flex;
    justify-content:center;
    max-width:600px;
}
ul#menu-primary li a, .section-heading, .logo-tagline, .flat-btn, .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    text-transform: unset;
}

/* LTR */
.btn-group[dir="ltr"] > .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

    .btn-group[dir="ltr"] > .btn:first-child {
        border-top-left-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }

    .btn-group[dir="ltr"] > .btn:last-child {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

/* RTL */
.btn-group[dir="rtl"] > .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

    .btn-group[dir="rtl"] > .btn:first-child {
        border-top-right-radius: 0.25rem !important;
        border-bottom-right-radius: 0.25rem !important;
    }

    .btn-group[dir="rtl"] > .btn:last-child {
        border-top-left-radius: 0.25rem !important;
        border-bottom-left-radius: 0.25rem !important;
    }
.btn-group[dir="ltr"] > .btn-group > .btn:not(:first-child):not(:last-child) {
    border-radius: 0 !important;
}

.btn-group[dir="rtl"] > .btn-group > .btn:not(:first-child):not(:last-child) {
    border-radius: 0 !important;
}
.work-box::after {
    background:unset;
}
.nice-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nice-list li {
        position: relative;
        padding-inline-start: 3rem;
        line-height: 40px;
        margin: 10px 0;
        font-size: 18px;
        text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    }

        .nice-list li::before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\f058";
            color: #fff;
            position: absolute;
            inset-inline-start: 0;
            font-size: 1.2rem;
            margin-inline-start: 1rem;
        }
.title-font {
    font-size: 2rem !important;
    line-height: 1.4 !important;
}
.activity-box {
    background-repeat: no-repeat;
    background-size: 20% auto;
    padding: 2rem;
}
:dir(ltr) .activity-box {
    background-position: bottom 1rem right 1rem;
}
:dir(rtl) .activity-box {
    background-position: bottom 1rem left 1rem;
}
.text-content {
    text-align: justify;
    line-height: 2.2;
    font-size: 1rem;
    margin: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.h1 {
    font-size: 2.125rem !important;
}
.h2 {
    font-size: 1.875rem !important;
}
.h3 {
    font-size: 1.5rem !important;
}
.h4 {
    font-size: 1.25rem !important;
}
.h5 {
    font-size: 1.125rem !important;
}
.h6 {
    font-size: 1rem !important;
}
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
    color: #fff;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}
/* md */
@media only screen and (min-width: 768px) {
    .desktop-menu-btn, .mobile-menu-btn {
        margin: 0.8rem;
    }
}