:root {
    /* Fonts */
    --font-primary: "Open Sans", sans-serif;
    --font-mrc: "Marcellus", serif;

    --primary: #B34C3A;
}


.font-primary {
    font-family: var(--font-primary);
}

.font-mrc {
    font-family: var(--font-mrc);
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 70px;
}

.h2,
h2 {
    font-size: 48px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

.h4-small {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary);
}

.color-primary {
    color: var(--primary);
}

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: #B34C3A;
    color: white !important;
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 16px 36px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}


.prime-btn:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: white;
    background-color: #e66048;
}

/* Button Css End */
.sec-spacing {
    padding: 110px 0;
}



/* ---- Index Page Style start ---- */

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1111;

}


.navbar {
    padding: 10px 0;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    background-color: #000;

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 150px;
    height: 80px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

.navbar-brand img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.nav-item {
    width: max-content;
}

.nav-link {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: max-content;
    color: white;
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: max-content;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: white;

}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.nav-item:last-child .nav-link {
    margin-right: 60px;
}

/* Header styles end */


/* Hero styles Start */
.hero-wrapper {
    position: relative;
    background-image: url('../assets/hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 680px;
}


.hero-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .5;

}

.hero-text-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 111;
    position: relative;
    padding-top: 70px;
}

.hero-text-wrapper h1 {
    text-transform: capitalize;
    line-height: 80px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    max-width: 700px;
}

.hero-text-wrapper p {
    font-size: 18px;
    line-height: 30px;
    width: 800px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: 40px;
}

.about-content p {
    font-size: 18px;
    color: #686868;
    line-height: 30px;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 340px;

}

.about-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.sec-title {
    margin-bottom: 40px;
}


.sa-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;

}

.sa-grid-item {
    position: relative;
    width: 100%;
    height: 202px;
    background-color: rgb(248, 248, 248);
    border-radius: 4px;
    border-bottom: 4px solid #B34C3A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sa-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
}

.sa-icon img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.sa-grid-item:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.photo-gallery-wrap {
    width: 100%;
    height: 300px;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}



.photo-gallery-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(0 0 0 / 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}



.search-icon svg {
    font-size: 50px;
    color: white;
}

.photo-gallery-wrap:hover .photo-gallery-overlay {
    opacity: 1;
}


.feedback-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgb(248, 248, 248);
}

.feedback-card p {
    font-size: 20px;
    color: #727272;
    margin-bottom: 30px;
    line-height: 32px;
}

.feedback-name {
    position: relative;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    padding-left: 50px;
}

.feedback-name::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: #010101;
}

.feedback-image {
    position: absolute;
    right: 30px;
    bottom: 20px;

}

.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.info-wrapper {
    padding: 50px 20px 30px 20px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.info-wrapper svg {
    color: #B34C3A;
    font-size: 30px;
    margin-bottom: 30px;
}

.info-wrapper:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.info-wrapper h5 {
    font-size: 24px;
    margin-bottom: 20px;

}

.info-wrapper p,
.info-wrapper a {
    font-size: 18px;
    line-height: 1.8;
    word-break: break-word;
    letter-spacing: 0;
    color: #686868;
}

.contact-us-iframe {
    width: 100%;
    height: 500px;
    margin-top: 60px;
}

footer {
    background: #B34C3A;
    margin-top: -5px;
}

footer p {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    color: white;
}



@media (max-width: 1799px) {
    .navbar-brand {
        width: 120px;
        height: 70px;
    }

    .feedback-card p {
        font-size: 18px;
    }
}

@media (max-width: 1599px) {

    .h1,
    h1 {
        font-size: 60px;
    }

    .h2,
    h2 {
        font-size: 40px;
    }

    h4,
    .h4 {
        font-size: 22px;
    }

    .navbar-brand {
        width: 100px;
        height: 62px;
    }

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

    .prime-btn {
        font-size: 14px;
        padding: 14px 34px;
    }

    .hero-wrapper {
        height: 560px;
    }

    .hero-text-wrapper h1 {
        line-height: 68px;
        margin-bottom: 16px;
        letter-spacing: 1px;
        max-width: 520px;
    }

    .hero-text-wrapper p {
        font-size: 16px;
        line-height: 28px;
        width: 660px;
        letter-spacing: 0;
    }

    .sec-spacing {
        padding: 80px 0;
    }

    .about-content h2 {
        margin-bottom: 16px;
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 12px;
    }

    .about-image {
        height: 280px;
    }

    .sa-icon {
        width: 70px;
        height: 70px;
    }

    .photo-gallery-wrap {
        height: 260px;
        border-radius: 10px;
    }

    .feedback-card p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 26px;
    }

    .feedback-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .feedback-name {
        font-size: 16px;
    }

    .feedback-image {
        width: 34px;
    }

    .info-wrapper h5 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .info-wrapper p,
    .info-wrapper a {
        font-size: 16px;
    }

    .contact-us-iframe {
        height: 400px;
        margin-top: 50px;
    }

    footer p {
        padding: 14px 0;
    }
}

@media (max-width: 1429px) {}

@media (max-width: 1365px) {}

@media (max-width: 1199px) {

    .h1,
    h1 {
        font-size: 58px;
    }

    .h2,
    h2 {
        font-size: 38px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    .nav-link {
        margin-right: 30px;
    }
.nav-item:last-child .nav-link {
    margin-right: 40px;
}
    .sa-icon {
        width: 60px;
        height: 60px;
    }

    .sa-grid-item {
        height: 180px;
    }

    .info-wrapper svg {
        font-size: 26px;
    }
}

@media (max-width: 1023px) {
    .feedback-name {
        font-size: 15px;
        padding-left: 30px;
    }

    .feedback-name::before {
        width: 22px;
    }
}

@media (max-width: 991px) {

    /* NAVBAR TOGGLER START */
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }

    .navbar-toggler {
        width: 35px;
        height: 35px;
        padding: 0;
        border: none;
        text-align: center;
        position: absolute;
        right: 40px;
        top: 50%;
        z-index: 222;
        transition: all 0.5s;
        transform: translateY(-50%);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler span {
        position: relative;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        display: block;
        background-image: none !important;
        margin-left: auto;
    }

    .navbar-toggler span::after,
    .navbar-toggler span::before {
        position: absolute;
        content: "";
        width: 25px;
        height: 2px;
        background-color: var(--primary);
        right: 0;
        transition: all 0.5s;
    }

    .show-menu .navbar-toggler span {
        height: 0;
    }

    .navbar-toggler span::before {
        top: -7px;
    }

    .navbar-toggler span::after {
        top: 7px;
    }

    .show-menu .navbar-toggler span::after,
    .show-menu .navbar-toggler span::before {
        left: 0;
        right: 0;
        margin: auto;
        transform: rotate(45deg);
        top: -1px;
    }

    .show-menu .navbar-toggler span::after {
        transform: rotate(-45deg);
    }

    body.show-menu {
        overflow: hidden;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: flex-start;
        align-items: center;
        left: 0;
        right: 0;
        min-height: 100vh;
        height: 100vh;
        width: 100%;
        background-color: white;
        z-index: 99;
        transition: 0.3s all;
        top: 0;
        transform: translateX(-100%);
        padding: 100px 60px 60px;
        margin: 0 auto;
    }

    .show-menu .header-top {
        display: none;
    }

    .show-menu .navbar-collapse {
        transform: translateX(0);
    }

    .navbar-nav {
        margin: 0 auto 40px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* NAVBAR TOGGLER END */
    .navbar-brand {
        width: 80px;
        height: 52px;
    }

    .nav-link {
        color: #010101;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .nav-item:last-child .nav-link {
        margin-right: 0px;
        margin-bottom: 0;
    }

    .nav-link:hover {
        color: var(--primary);
    }

    .h1,
    h1 {
        font-size: 50px;
    }

    .hero-text-wrapper h1 {
        line-height: 60px;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .hero-text-wrapper p {
        line-height: 26px;
        width: 100%;
        letter-spacing: 0;
    }

    .hero-text-wrapper {
        padding: 0 80px;
    }

    .hero-wrapper {
        height: 500px;
    }

    .sec-spacing {
        padding: 60px 0;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .photo-gallery-wrap {
        height: 230px;
        border-radius: 8px;
    }

    .info-wrapper h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .info-wrapper {
        padding: 30px 10px 20px 10px;
    }

    .info-wrapper p,
    .info-wrapper a {
        font-size: 14px;
    }

    .contact-us-iframe {
        height: 320px;
        margin-top: 40px;
    }

    footer p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {

    .h2,
    h2 {
        font-size: 34px;
    }

    .hero-text-wrapper {
        padding: 0 20px;
    }

    .about-content {
        margin-bottom: 10px;
    }

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

    .about-content p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .about-image {
        height: 220px;
    }

    .sa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .info-wrapper-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    footer p {
        padding: 14px 20px;
    }
}

@media (max-width: 575px) {
    .sa-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {}

@media (max-width: 350px) {}